-
Notifications
You must be signed in to change notification settings - Fork 45
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
build(deps): bump coredns from 1.3.1 to 1.6.2 #2575
Conversation
Hello ebaneck,My role is to assist you with the merge of this Status report is not available. |
Integration data createdI have created the integration data for the additional destination branches.
The following branches will NOT be impacted:
You can set option
|
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list:
|
Did you check for any differences in the |
Nope, I was not aware. I am going to check now |
Our current deployed version for coredns is `1.3.1` which seems to be very old. Since we plan a minor release, we should bump the version of Coredns to a recent release. Note: since this branch runs K8S 1.16, we bind the coredns version to `1.6.2` following same standards from kubeadm. Closes: #2572
36f55cb
to
bbdc710
Compare
History mismatchMerge commit #36f55cb5fd43d5236786a6b849b9d0d1e303dae7 on the integration branch It is likely due to a rebase of the branch Please use the |
health | ||
kubernetes {{ coredns.cluster_domain }} {{ coredns.reverse_cidrs }} { | ||
pods insecure | ||
upstream | ||
fallthrough in-addr.arpa ip6.arpa | ||
} | ||
prometheus :9153 | ||
proxy . /etc/resolv.conf | ||
forward . /etc/resolv.conf | ||
cache 30 | ||
loop | ||
reload | ||
loadbalance | ||
ready | ||
} |
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.
It appears these changes are made using some tool? However, they're not (necessarily) in line with what kubeadm
now deploys: https://github.com/kubernetes/kubernetes/blob/87473a5d27e52f8eb86575898cd6e6d8b8e881be/cmd/kubeadm/app/phases/addons/dns/manifests.go#L303 (note: this is master
, should figure out what kubeadm
does for the K8s release we want to ship).
Would make sense to re-run/update https://github.com/NicolasT/kubeadm-dry-run
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.
Ideally here, it's a 2.5 branch and we ship K8S 1.16.8.
Cross-checking with the kubeadm
specs from a corresponding release here: https://github.com/kubernetes/kubernetes/blob/release-1.16/cmd/kubeadm/app/phases/addons/dns/manifests.go#L306, It seems we are all good.
Note: One thing which the kubeadm
Corefile adds is a TTL set to 30 seconds. I will add this and be done.
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.
I would use the same content as what kubeadm
deploys. Indeed, ready
is in there, but at a different location in the file. Would be easier to 'review' if we just deploy the exact same thing.
Furthermore, the RBAC resources may need to be validated as well?
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.
Yeah, I followed same placement as that of kubeadm
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.
- all good with RBAC definitions
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.
Would make sense to re-run/update https://github.com/NicolasT/kubeadm-dry-run
Definitely, even make it part of our procedure for updating K8s dependencies. Could we somehow use this as a tool for rendering our formulas, just as we do for Helm?
Also, in the future I think it'd make sense to use the kubeadm Operator (once it is implemented) directly in the product (would make it much easier to maintain).
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.
Not convinced about the latter. Adding another tool which, next to Salt, does things on hosts will result in a messy situation where we no longer know what does what.
21fe95a
to
f1998d3
Compare
Since we are updating coredns from 1.3.1 to 1.6.2, we need to update the Corefile to remove deprecated plugins. Given that we follow kubeadm standards, the Corefile is updated using the following specifification; ``` https://github.com/kubernetes/kubernetes/blob/release-1.16/cmd/kubeadm/app/phases/addons/dns/manifests.go#L306 ```
/reset |
Reset completeI have successfully deleted this pull request's integration branches. |
Integration data createdI have created the integration data for the additional destination branches.
The following branches will NOT be impacted:
You can set option
|
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list:
|
Hold until after release! |
Branches have divergedThis pull request's source branch To avoid any integration risks, please re-synchronize them using one of the
Note: If you choose to rebase, you may have to ask me to rebuild |
…t/2572-update-coredns
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list:
|
/approve |
Build failedThe build for commit did not succeed in branch improvement/2572-update-coredns. The following options are set: approve |
In the queueThe changeset has received all authorizations and has been added to the The changeset will be merged in:
The following branches will NOT be impacted:
There is no action required on your side. You will be notified here once IMPORTANT Please do not attempt to modify this pull request.
If you need this pull request to be removed from the queue, please contact a The following options are set: approve |
I have successfully merged the changeset of this pull request
The following branches have NOT changed:
Please check the status of the associated issue None. Goodbye ebaneck. |
Component:
'deps', 'build'
Context:
See: #2572
Summary:
Since the target branch runs K8s 1.16 and following the kubeadm standards as specified in the issue, let us bump the version of coredns to
1.6.2
.Following
kubeadm
standards for K8s 1.16 release as specified here: https://github.com/kubernetes/kubernetes/blob/release-1.16/cmd/kubeadm/app/phases/addons/dns/manifests.go#L306.Acceptance criteria:
Closes: #2572