Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#740 from AndyXiangLi/update-gcr-im…
Browse files Browse the repository at this point in the history
…age-kustomization

patch stable release to use gcr image
  • Loading branch information
k8s-ci-robot authored Feb 11, 2021
2 parents 62ebcbf + 288c177 commit f517242
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions deploy/kubernetes/base/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
periodSeconds: 10
failureThreshold: 5
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v2.0.2
image: k8s.gcr.io/provider-aws/csi-provisioner:v2.0.2
args:
- --csi-address=$(ADDRESS)
- --v=5
Expand All @@ -80,7 +80,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-attacher
image: quay.io/k8scsi/csi-attacher:v3.0.0
image: k8s.gcr.io/provider-aws/csi-attacher:v3.0.0
args:
- --csi-address=$(ADDRESS)
- --v=5
Expand All @@ -92,7 +92,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: liveness-probe
image: quay.io/k8scsi/livenessprobe:v2.1.0
image: k8s.gcr.io/provider-aws/livenessprobe:v2.1.0
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down
4 changes: 2 additions & 2 deletions deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
periodSeconds: 10
failureThreshold: 5
- name: node-driver-registrar
image: quay.io/k8scsi/csi-node-driver-registrar:v2.0.1
image: k8s.gcr.io/provider-aws/csi-node-driver-registrar:v2.0.1
args:
- --csi-address=$(ADDRESS)
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
Expand All @@ -89,7 +89,7 @@ spec:
- name: registration-dir
mountPath: /registration
- name: liveness-probe
image: quay.io/k8scsi/livenessprobe:v2.1.0
image: k8s.gcr.io/provider-aws/livenessprobe:v2.1.0
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down
8 changes: 4 additions & 4 deletions deploy/kubernetes/overlays/stable/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ bases:
images:
- name: k8s.gcr.io/provider-aws/aws-ebs-csi-driver
newTag: v0.9.0
- name: quay.io/k8scsi/csi-provisioner
- name: k8s.gcr.io/provider-aws/csi-provisioner
newTag: v2.0.2
- name: quay.io/k8scsi/csi-attacher
- name: k8s.gcr.io/provider-aws/csi-attacher
newTag: v3.0.0
- name: quay.io/k8scsi/livenessprobe
- name: k8s.gcr.io/provider-aws/livenessprobe
newTag: v2.1.0
- name: quay.io/k8scsi/csi-node-driver-registrar
- name: k8s.gcr.io/provider-aws/csi-node-driver-registrar
newTag: v2.0.1

0 comments on commit f517242

Please sign in to comment.