Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[PR #1415/3f37c975 backport][stable-5] New Module - eks_nodegroup This is a backport of PR #1415 as merged into main (3f37c97). SUMMARY Add a new module to manage nodegroups in EKS clusters. ISSUE TYPE New Module Pull Request COMPONENT NAME eks_nodegroup ADDITIONAL INFORMATION TODO: PR ansible-collections/amazon.aws/pull/975 to add waiters for EKS nodegroup. PR aws-terminator/pull/223 to add permissions to execute integration tests. - name: create nodegroup community.aws.eks_nodegroup: name: test_nodegroup state: present cluster_name: test_cluster node_role: arn:aws:eks:us-east-1:1231231123:role/asdf subnets: - subnet-qwerty123 - subnet-asdfg456 scaling_config: - min_size: 1 - max_size: 2 - desired_size: 1 disk_size: 20 instance_types: 't3.micro' ami_type: 'AL2_x86_64' labels: - 'teste': 'test' taints: - key: 'test' value: 'test' effect: 'NO_SCHEDULE' capacity_type: 'on_demand'
- Loading branch information