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
docs: Include ref to addon naming and config documentation (#3043)
* docs: include ref to addon naming and config
* docs: including addon configuration details in the faq
* docs: including addon configuration details in the faq doc
* docs: including addon configuration details in the faq
* chore: Updates
---------
Co-authored-by: Caleb Gill <[email protected]>
Co-authored-by: Bryant Biggs <[email protected]>
Copy file name to clipboardExpand all lines: docs/faq.md
+214-2Lines changed: 214 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,9 @@
4
4
-[I received an error: `expect exactly one securityGroup tagged with kubernetes.io/cluster/<NAME> ...`](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#i-received-an-error-expect-exactly-one-securitygroup-tagged-with-kubernetesioclustername-)
5
5
-[Why are nodes not being registered?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#why-are-nodes-not-being-registered)
6
6
-[Why are there no changes when a node group's `desired_size` is modified?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#why-are-there-no-changes-when-a-node-groups-desired_size-is-modified)
7
-
-[How can I deploy Windows based nodes?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#how-can-i-deploy-windows-based-nodes)
8
7
-[How do I access compute resource attributes?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#how-do-i-access-compute-resource-attributes)
8
+
-[What add-ons are available?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#what-add-ons-are-available)
9
+
-[What configuration values are available for an add-on?](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/faq.md#what-configuration-values-are-available-for-an-add-on)
9
10
10
11
### Setting `disk_size` or `remote_access` does not make any changes
11
12
@@ -65,7 +66,7 @@ Examples of accessing the attributes of the compute resource(s) created by the r
65
66
66
67
```hcl
67
68
eks_managed_role_arns = [for group in module.eks_managed_node_group : group.iam_role_arn]
68
-
````
69
+
```
69
70
70
71
- Self Managed Node Group attributes
71
72
@@ -78,3 +79,214 @@ self_managed_role_arns = [for group in module.self_managed_node_group : group.ia
78
79
```hcl
79
80
fargate_profile_pod_execution_role_arns = [for group in module.fargate_profile : group.fargate_profile_pod_execution_role_arn]
80
81
```
82
+
83
+
### What add-ons are available?
84
+
85
+
The available EKS add-ons can be [found here](https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html). You can also retrieve the available addons from the API using:
0 commit comments