Skip to content

Commit 7fddf1e

Browse files
committed
Further cleanup of chapter 5 AWS EKS example.
1 parent ce8c935 commit 7fddf1e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ Here is an outline of all the examples contained in this repository, by chapter:
2828

2929
- [`cluster-local-vms`](cluster-local-vms/): A Kubernetes cluster running on three local VirtualBox VMs, built with Vagrant and Ansible.
3030

31+
### Chapter 5
32+
33+
- [`cluster-aws-eks`](cluster-aws-eks/): An AWS EKS Cluster with an EKS Node Group, which uses Ansible to apply CloudFormation templates that set up stacks for a VPC and networking, an EKS Cluster, and an associated EKS Node Group.
34+
3135
## License
3236

3337
MIT

cluster-aws-eks/cloudformation/eks-nodegroup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
AWSTemplateFormatVersion: "2010-09-09"
3-
Description: 'EKS Nodegroup definition.'
3+
Description: 'EKS Node Group definition.'
44

55
Parameters:
66

cluster-aws-eks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
set_fact:
4848
stack_outputs: "{{ stack_outputs | combine(eks_cluster_info['stack_outputs']) }}"
4949

50-
- name: Ensure EKS Nodegroup exists via CloudFormation.
50+
- name: Ensure EKS Node Group exists via CloudFormation.
5151
cloudformation:
5252
stack_name: eks-example-nodegroup
5353
state: present

cluster-aws-eks/vars/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
aws_environment: true
44
aws_region: us-east-1
55
aws_profile: default
6-
aws_key_name: eks-example
76

87
# This variable will be populated during playbook runs.
98
stack_outputs: {}

0 commit comments

Comments
 (0)