Merge pull request #88009 from davidz627/fix/pdVer

Update version of gcp-compute-persistent-disk-csi-driver used in in-tree tests
This commit is contained in:
Kubernetes Prow Robot 2020-02-25 18:32:26 -08:00 committed by GitHub
commit 86c8a23052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 7 deletions

View File

@ -13,11 +13,15 @@ spec:
labels:
app: gcp-compute-persistent-disk-csi-driver
spec:
# Host network must be used for interaction with Workload Identity in GKE
# since it replaces GCE Metadata Server with GKE Metadata Server. Remove
# this requirement when issue is resolved and before any exposure of
# metrics ports
hostNetwork: true
serviceAccountName: csi-gce-pd-controller-sa
containers:
- name: csi-snapshotter
# TODO: replace with official 2.0.0 release when ready
image: quay.io/k8scsi/csi-snapshotter:v2.0.0-rc2
image: quay.io/k8scsi/csi-snapshotter:v2.0.1
args:
- "--v=5"
- "--csi-address=/csi/csi.sock"
@ -35,7 +39,7 @@ spec:
- name: socket-dir
mountPath: /csi
- name: csi-attacher
image: gcr.io/gke-release/csi-attacher:v2.0.0-gke.0
image: gcr.io/gke-release/csi-attacher:v2.1.1-gke.0
args:
- "--v=5"
- "--csi-address=/csi/csi.sock"
@ -51,7 +55,7 @@ spec:
- name: socket-dir
mountPath: /csi
- name: gce-pd-driver
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.6.0-gke.0
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.6.2-gke.0
args:
- "--v=5"
- "--endpoint=unix:/csi/csi.sock"

View File

@ -11,6 +11,11 @@ spec:
labels:
app: gcp-compute-persistent-disk-csi-driver
spec:
# Host network must be used for interaction with Workload Identity in GKE
# since it replaces GCE Metadata Server with GKE Metadata Server. Remove
# this requirement when issue is resolved and before any exposure of
# metrics ports.
hostNetwork: true
containers:
- name: csi-driver-registrar
image: gcr.io/gke-release/csi-node-driver-registrar:v1.2.0-gke.0
@ -35,7 +40,7 @@ spec:
- name: gce-pd-driver
securityContext:
privileged: true
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.6.0-gke.0
image: gcr.io/gke-release/gcp-compute-persistent-disk-csi-driver:v0.6.2-gke.0
args:
- "--v=5"
- "--endpoint=unix:/csi/csi.sock"
@ -47,7 +52,8 @@ spec:
mountPath: /csi
- name: device-dir
mountPath: /dev
# The following mounts are required to trigger host udevadm from container
# The following mounts are required to trigger host udevadm from
# container
- name: udev-rules-etc
mountPath: /etc/udev
- name: udev-rules-lib
@ -73,7 +79,8 @@ spec:
hostPath:
path: /dev
type: Directory
# The following mounts are required to trigger host udevadm from container
# The following mounts are required to trigger host udevadm from
# container
- name: udev-rules-etc
hostPath:
path: /etc/udev
@ -90,3 +97,10 @@ spec:
hostPath:
path: /sys
type: Directory
# https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
# See "special case". This will tolerate everything. Node component should
# be scheduled on all nodes.
tolerations:
- operator: Exists
nodeSelector:
kubernetes.io/os: linux