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

Adapt templates correctly #167

Merged
merged 1 commit into from
Aug 8, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions jobs/aws_cpi/spec
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ properties:
so the more retries the longer it can take to fail. This only applies
to the AWS client passing calls to the AWS API.
default: 8
aws.dualstack:
description: |
AWS provide new APIs to support IPv6. If you want to use IPv6 only, you must enable dualstack.
default: false
aws.connection_options.ca_cert:
description: All required custom CA certificates
example:
Expand Down
3 changes: 2 additions & 1 deletion jobs/aws_cpi/templates/cpi.json.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ params = {
"max_retries" => p('aws.max_retries'),
"encrypted" => p('aws.encrypted'),
"kms_key_arn" => p('aws.kms_key_arn', nil),
"metadata_options" => p('aws.metadata_options', nil)
"metadata_options" => p('aws.metadata_options', nil),
"dualstack" => p('aws.dualstack')
},
"agent" => {
"ntp" => p('ntp')
Expand Down