-
Notifications
You must be signed in to change notification settings - Fork 101
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
Pass endpoint params for ns1 external-dns provider #470
Conversation
@@ -8,3 +8,5 @@ k8gb: | |||
|
|||
ns1: | |||
enabled: true | |||
# endpoint: https://ns1.example.com | |||
# ignoreSSL: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ignoreSSL
can stay false
uncommented
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This way it will be set into deployment, which makes args list longer and hard to read. I'd leave defaults into provider's default settings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, in case of false
the if
in the template will not add the parameter at all
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ytsarev amended
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@k0da but apparently not pushed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, missed that you referenced example values, while I've been amending default chart values. Fixed now
chart/k8gb/values.yaml
Outdated
@@ -62,3 +62,5 @@ route53: | |||
|
|||
ns1: | |||
enabled: false | |||
# endpoint: http://ns1.example.com |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please mentioned in the comment that the value is optional and it defaults to managed NS1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ytsarev done
14bccab
to
de2e682
Compare
@@ -8,3 +8,5 @@ k8gb: | |||
|
|||
ns1: | |||
enabled: true | |||
# endpoint: https://ns1.example.com | |||
# ignoreSSL: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@k0da but apparently not pushed?
depends on the default. If it is higher than our 30sec we might need to override it. Overall, the collision with DNSEndpoint CR does not look convenient. I am not sure about behavior here at all btw - will minTTL override specific CR TTL value? Does it have precedence? We need to figure out. Anyway, it does not block this specific PR |
@@ -8,3 +8,5 @@ k8gb: | |||
|
|||
ns1: | |||
enabled: true | |||
# endpoint: https://ns1.example.com |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need it in this sample?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as below
@@ -8,3 +8,5 @@ k8gb: | |||
|
|||
ns1: | |||
enabled: true | |||
# endpoint: https://ns1.example.com |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dropped
Signed-off-by: Dinar Valeev <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Signed-off-by: Dinar Valeev [email protected]