We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
cloudMapDNS.ttl is no longer correctly taken into account when creating cloudmap services.
cloudMapDNS.ttl
Since this commit the helm template expects an int64 cloudMapDNS.ttl value instead of a float64.
float64
This is probably related to known helm issues, where int values are being parsed and represented in float64 through scientific notation
int64
values.yaml
Newly created cloudmap services are being created with the default ttl of 300, rather than a specified cloudMapDNS.ttl.
Steps to reproduce
OR
/dev/null
cloudMap.ttl
./test/helm/helm-lint.sh | grep "cloudmap"
cloudmapDNS.ttl
--cloudmap-dns-ttl=5
Expected outcome A concise description of what you expected to happen.
The appmesh controller deployment should use the cloudMapDNS.ttl specified in the values file
Environment
Additional Context:
N/A
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
cloudMapDNS.ttl
is no longer correctly taken into account when creating cloudmap services.Since this commit the helm template expects an int64
cloudMapDNS.ttl
value instead of afloat64
.This is probably related to known helm issues, where int values are being parsed and represented in float64 through scientific notation
int64
values invalues.yaml
converts them tofloat64
helm/helm#11130Newly created cloudmap services are being created with the default ttl of 300, rather than a specified
cloudMapDNS.ttl
.Steps to reproduce
cloudMapDNS.ttl
with a sample value (e.g. 5)OR
/dev/null
in helm-lint.shcloudMap.ttl
value of 5 in the test.yaml values file./test/helm/helm-lint.sh | grep "cloudmap"
to see the helm outputcloudmapDNS.ttl
is not included in the values file unless it is of type int64./test/helm/helm-lint.sh | grep "cloudmap"
--cloudmap-dns-ttl=5
in the outputExpected outcome
A concise description of what you expected to happen.
The appmesh controller deployment should use the
cloudMapDNS.ttl
specified in the values fileEnvironment
Additional Context:
N/A
The text was updated successfully, but these errors were encountered: