fix: update cluster-proportional-autoscaler path at MCR (#3091)

* fix: update cluster-proportional-autoscaler path at MCR

* chore: add other cluster-prop-auto versions to Linux VHD

* fix: remove DNSAutoscalerAddonName after rebase fail

* chore: remove unreferenced c-a-p version from Linux VHD

* refactor: remove kubernetesImageBase prefix from calico c-p-a
This commit is contained in:
Matt Boersma 2020-04-20 11:56:52 -06:00 коммит произвёл GitHub
Родитель 8f6f1eac6c
Коммит b8a10184c9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -367,7 +367,7 @@ func (cs *ContainerService) setAddonsConfig(isUpgrade bool) {
},
{
Name: common.CalicoClusterAutoscalerComponentName,
Image: kubernetesImageBase + k8sComponents[common.CalicoClusterAutoscalerComponentName],
Image: k8sComponents[common.CalicoClusterAutoscalerComponentName],
},
},
}

Просмотреть файл

@ -1717,7 +1717,7 @@ func TestSetAddonsConfig(t *testing.T) {
},
{
Name: common.CalicoClusterAutoscalerComponentName,
Image: specConfig.MCRKubernetesImageBase + k8sComponentsByVersionMap["1.15.4"][common.CalicoClusterAutoscalerComponentName],
Image: k8sComponentsByVersionMap["1.15.4"][common.CalicoClusterAutoscalerComponentName],
},
},
},
@ -1795,7 +1795,7 @@ func TestSetAddonsConfig(t *testing.T) {
},
{
Name: common.CalicoClusterAutoscalerComponentName,
Image: specConfig.MCRKubernetesImageBase + k8sComponentsByVersionMap["1.15.4"][common.CalicoClusterAutoscalerComponentName],
Image: k8sComponentsByVersionMap["1.15.4"][common.CalicoClusterAutoscalerComponentName],
},
},
},

Просмотреть файл

@ -19,7 +19,7 @@ const (
calicoCNIImageReference string = "cni:v3.8.0"
calicoNodeImageReference string = "node:v3.8.0"
calicoPod2DaemonImageReference string = "pod2daemon-flexvol:v3.8.0"
calicoClusterProportionalAutoscalerImageReference string = "cluster-proportional-autoscaler-amd64:1.1.2-r2"
calicoClusterProportionalAutoscalerImageReference string = "mcr.microsoft.com/oss/kubernetes/autoscaler/cluster-proportional-autoscaler:1.1.2-r2"
ciliumAgentImageReference string = "docker.io/cilium/cilium:v1.4"
ciliumCleanStateImageReference string = "docker.io/cilium/cilium-init:2018-10-16"
ciliumOperatorImageReference string = "docker.io/cilium/operator:v1.4"

Просмотреть файл

@ -498,6 +498,7 @@ done
CLUSTER_PROPORTIONAL_AUTOSCALER_VERSIONS="
1.7.1
1.1.2-r2
"
for CLUSTER_PROPORTIONAL_AUTOSCALER_VERSION in ${CLUSTER_PROPORTIONAL_AUTOSCALER_VERSIONS}; do
CONTAINER_IMAGE="mcr.microsoft.com/oss/kubernetes/autoscaler/cluster-proportional-autoscaler:${CLUSTER_PROPORTIONAL_AUTOSCALER_VERSION}"