-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
Updating some SkyDNS templates to v1beta3 #8273
Conversation
protocol: UDP | ||
template: | ||
metadata: | ||
creationTimestamp: null |
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.
nit: Remove creationTimestamp
here and in other places
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.
Done
Can we re-use the configs under |
I don't know if we can our not. I know these are used by util.sh in the same directory and passed through a rendering function. |
IIUC, the skydns configs under |
Please take another look as it was failing to build because some analytics links were missing from some README files. Is this ok? |
- \"/etcd\" | ||
- \"-bind-addr=127.0.0.1\" | ||
- \"-peer-bind-addr=127.0.0.1\" | ||
capabilities: {} |
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 remove fields containing default values. The conversion script doesn't do that currently. If the field wasn't specified previously, it probably doesn't need to be specified in v1beta3, either, especially if it's just empty/false/0.
- \"-bind-addr=127.0.0.1\" | ||
- \"-peer-bind-addr=127.0.0.1\" | ||
image: quay.io/coreos/etcd:latest | ||
imagePullPolicy: Always |
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 does this have pull policy Always? It didn't before.
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.
Defaults were added in the conversion and this is the default. Removing it.
Ping cc @lhuard1A |
- \"/etcd\" | ||
- \"-bind-addr=127.0.0.1\" | ||
- \"-peer-bind-addr=127.0.0.1\" | ||
image: quay.io/coreos/etcd:latest |
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.
In general, it's clearer to put name, then image, then other fields.
LGTM |
Updating some SkyDNS templates to v1beta3
#8087