You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
13
13
-`workers_ami_id` is now made optional. If not specified, the module will source the latest AWS supported EKS AMI instead.
14
14
- added ability to specify extra userdata code to execute after the second to configure and start kube services.
15
15
- When `configure_kubectl_session` is set to true the current shell will be configured to talk to the kubernetes cluster using config files output from the module.
16
+
- EBS optimization used whenever possible for the given instance type.
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
99
99
| cluster_version | Kubernetes version to use for the cluster. | string | `1.10` | no |
100
100
| config_output_path | Determines where config files are placed if using configure_kubectl_session and you want config files to land outside the current working directory. | string | `./` | no |
101
101
| configure_kubectl_session | Configure the current session's kubectl to use the instantiated cluster. | string |`false`| no |
102
+
| ebs_optimized_workers | If left at default of true, will use ebs optimization if available on the given instance type. | string |`true`| no |
102
103
| subnets | A list of subnets to associate with the cluster's underlying instances. | list | - | yes |
103
104
| tags | A map of tags to add to all resources. | string | `<map>` | no |
104
105
| vpc_id | VPC id where the cluster and other resources will be deployed. | string | - | yes |
Copy file name to clipboardExpand all lines: examples/eks_test_fixture/README.md
-13Lines changed: 0 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,6 @@ This set of templates serves a few purposes. It:
6
6
2. serves as the test infrastructure for CI on the project.
7
7
3. provides a simple way to play with the Kubernetes cluster you create.
8
8
9
-
## testing with kubectl
10
-
11
-
Once converged, `kubeconfig` and `config-map-aws-auth.yml` should be in this directory.
12
-
Ensure you have a recent version of `kubectl` on your PATH ([instructions here](https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl))
0 commit comments