eksctl

build-test release Ansible Role Maintainability Rating Reliability Rating Security Rating GitHub tag (latest SemVer) GitHub repo size

Ansible Role: eksctl

Role to install (by default) eksctl on Debian/Ubuntu and EL systems. eksctl is the offical CLI for Amazon EKS.

Requirements

None.

Role Variables

Available variables are listed below (located in defaults/main.yml):

Variables list:

eksctl_app: eksctl
eksctl_version: 0.189.0
eksctl_os: "{{ ansible_system }}"
eksctl_architecture_map:
  amd64: amd64
  arm: arm64
  x86_64: amd64
  armv6l: armv6
  armv7l: armv7
  aarch64: arm64
  32-bit: "386"
  64-bit: amd64
eksctl_dl_url: https://github.com/weaveworks/{{ eksctl_app }}/releases/download/v{{ eksctl_version }}/{{ eksctl_app }}_{{ eksctl_os }}_{{ eksctl_architecture_map[ansible_architecture] }}.tar.gz
eksctl_bin_path: /usr/local/bin
eksctl_file_owner: root
eksctl_file_group: root
eksctl_file_permission_mode: '0755'

Variables table:

Variable Description
eksctl_app Defines the app to install i.e. eksctl
eksctl_version Defined to dynamically fetch the desired version to install. Defaults to: 0.189.0
eksctl_os Defines os type.
eksctl_architecture_map Defines os architecture.
eksctl_dl_url Defines URL to download the eksctl binary from.
eksctl_bin_path Defined to dynamically set the appropriate path to store eksctl binary into. Defaults to (as generally available on any user's PATH): /usr/local/bin
eksctl_file_owner Owner for the binary file of eksctl.
eksctl_file_group Group for the binary file of eksctl.
eksctl_file_permission_mode Defines the permission mode level for the file. Defaults to: 0755

Dependencies

None

Example Playbook

For default behaviour of role (i.e. installation of eksctl) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.eksctl

For customizing behavior of role (i.e. specifying the desired eksctl version) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.eksctl
  vars:
    eksctl_version: 0.72.0

For customizing behavior of role (i.e. placing binary of eksctl package in different location) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.eksctl
  vars:
    eksctl_bin_path: /bin/

License

MIT

Author Information

This role was created by Ali Muhammad.

About

Installs/Uninstalls 'eksctl', official cli for Amazon EKS.

Install
ansible-galaxy install darkwizard242/ansible-role-eksctl
GitHub repository
License
mit
Downloads
2318
Owner
Senior DevOps/CloudOps Engineer. Dedicated to Automating everything I come across. Love to work on and learn new technologies/tools everyday!