Fix Cinder CSI

A regression issue introduced by [1], which is causing Cinder CSI pods
failed to start. This patch will fixed it.

[1] https://review.opendev.org/#/c/749101/

Task: 41097
Story: 2008250

Change-Id: I0e20bc3eb306af86d22f0ea9f770186bb88eaca5
This commit is contained in:
Feilong Wang 2020-10-19 21:04:39 +13:00 committed by Bharat Kunwar
parent f5cf6b958c
commit 290d60a0aa
3 changed files with 11 additions and 2 deletions

View File

@ -246,6 +246,15 @@ spec:
app: csi-cinder-controllerplugin app: csi-cinder-controllerplugin
spec: spec:
serviceAccount: csi-cinder-controller-sa serviceAccount: csi-cinder-controller-sa
tolerations:
# Make sure the pod can be scheduled on master kubelet.
- effect: NoSchedule
operator: Exists
# Mark the pod as a critical add-on for rescheduling.
- key: CriticalAddonsOnly
operator: Exists
nodeSelector:
node-role.kubernetes.io/master: ""
containers: containers:
- name: csi-attacher - name: csi-attacher
image: ${CONTAINER_INFRA_PREFIX:-quay.io/k8scsi/}csi-attacher:${CSI_ATTACHER_TAG} image: ${CONTAINER_INFRA_PREFIX:-quay.io/k8scsi/}csi-attacher:${CSI_ATTACHER_TAG}

View File

@ -3,7 +3,6 @@ set +x
set -x set -x
$ssh_cmd mkdir -p /etc/kubernetes/ $ssh_cmd mkdir -p /etc/kubernetes/
$ssh_cmd cp /etc/pki/tls/certs/ca-bundle.crt /etc/kubernetes/ca-bundle.crt
if [ -n "${TRUST_ID}" ]; then if [ -n "${TRUST_ID}" ]; then
KUBE_OS_CLOUD_CONFIG=/etc/kubernetes/cloud-config KUBE_OS_CLOUD_CONFIG=/etc/kubernetes/cloud-config

View File

@ -112,7 +112,8 @@ storage:
done done
/usr/bin/update-ca-trust /usr/bin/update-ca-trust
cp /etc/pki/tls/certs/ca-bundle.crt /etc/kubernetes/ca-bundle.crt
HTTP_PROXY="__HTTP_PROXY__" HTTP_PROXY="__HTTP_PROXY__"
HTTPS_PROXY="__HTTPS_PROXY__" HTTPS_PROXY="__HTTPS_PROXY__"
NO_PROXY="__NO_PROXY__" NO_PROXY="__NO_PROXY__"