-
Notifications
You must be signed in to change notification settings - Fork 558
bumped addonmanager tag to be consistent with other releases #1064
Conversation
@lachie83, |
Can one of the admins verify this patch? Say "@acs-bot test this please" to start tests. |
@acs-bot test this please |
@@ -109,7 +109,7 @@ var KubeImages = map[api.OrchestratorVersion]map[string]string{ | |||
"addonresizer": "addon-resizer:2.0", | |||
"heapster": "heapster:v1.4.0", | |||
"dns": "k8s-dns-kube-dns-amd64:1.14.4", | |||
"addonmanager": "kube-addon-manager-amd64:v6.1.2", | |||
"addonmanager": "kube-addon-manager-amd64:v6.4-beta.2", |
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.
is there a reason we are using a beta version?
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's the version that currently supports using kubectl 1.6 which is required for creation of RBAC resource types using addon-manager . See this for the changelog --
https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/addon-manager/CHANGELOG.md#version-64-beta2--mon-june-12-2017-jeff-grafton-jgraftongooglecom. We used the 6.4 tag but which I thought would cover this beta since 6.4 hasn't actually been releases and the timestamp on 6.4 is much older than the 6.4-beta.2 -- https://gcr.io/v2/google_containers/kube-addon-manager/tags/list
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.
So we need 6.4 and it is still in beta. Is that correct? I guess this is okay, but just makes me kind of nervous to use beta versions.
@@ -109,7 +109,7 @@ var KubeImages = map[api.OrchestratorVersion]map[string]string{ | |||
"addonresizer": "addon-resizer:2.0", | |||
"heapster": "heapster:v1.4.0", | |||
"dns": "k8s-dns-kube-dns-amd64:1.14.4", | |||
"addonmanager": "kube-addon-manager-amd64:v6.1.2", | |||
"addonmanager": "kube-addon-manager-amd64:v6.4-beta.2", |
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.
So we need 6.4 and it is still in beta. Is that correct? I guess this is okay, but just makes me kind of nervous to use beta versions.
Yes that's correct and I don't think we have any other option at this point if we would like to run this tool. |
Kubernetes components at "beta" are already heavily tested—Deployments are one of many examples. Kubernetes beta is many more times rigorous than just about any other software project in existence. |
This change is