Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-0.22] Config schema doc improvements #2346

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 15 additions & 7 deletions pkg/apis/eksctl.io/v1alpha5/assets/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,8 @@
"properties": {
"ami": {
"type": "string",
"description": "Specify [custom AMIs](usage/custom-ami-support/)",
"x-intellij-html-description": "Specify <a href=\"usage/custom-ami-support/\">custom AMIs</a>",
"description": "Specify [custom AMIs](usage/custom-ami-support/), \"auto-ssm\", \"auto\", or \"static\"",
"x-intellij-html-description": "Specify <a href=\"usage/custom-ami-support/\">custom AMIs</a>, &quot;auto-ssm&quot;, &quot;auto&quot;, or &quot;static&quot;",
"default": ""
},
"amiFamily": {
Expand Down Expand Up @@ -1047,13 +1047,21 @@
"type": "string",
"default": ""
},
"type": "array"
"type": "array",
"description": "attaches additional security groups to the nodegroup",
"x-intellij-html-description": "attaches additional security groups to the nodegroup"
},
"withLocal": {
"type": "boolean"
"type": "boolean",
"description": "attach a security group local to this nodegroup",
"x-intellij-html-description": "attach a security group local to this nodegroup",
"default": "true"
},
"withShared": {
"type": "boolean"
"type": "boolean",
"description": "attach the security group shared among all nodegroups in the cluster",
"x-intellij-html-description": "attach the security group shared among all nodegroups in the cluster",
"default": "true"
}
},
"preferredOrder": [
Expand All @@ -1062,8 +1070,8 @@
"withLocal"
],
"additionalProperties": false,
"description": "holds all SG attributes of a NodeGroup",
"x-intellij-html-description": "holds all SG attributes of a NodeGroup"
"description": "controls security groups for this nodegroup",
"x-intellij-html-description": "controls security groups for this nodegroup"
},
"NodeGroupSSH": {
"properties": {
Expand Down