Skip to content

Commit

Permalink
correct kustomization gcr image repo
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyXiangLi committed Feb 12, 2021
1 parent f517242 commit 41d8f2e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions deploy/kubernetes/base/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
- operator: Exists
containers:
- name: ebs-plugin
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:latest
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v0.9.0
imagePullPolicy: IfNotPresent
args:
# - {all,controller,node} # specify the driver mode
Expand Down Expand Up @@ -66,7 +66,7 @@ spec:
periodSeconds: 10
failureThreshold: 5
- name: csi-provisioner
image: k8s.gcr.io/provider-aws/csi-provisioner:v2.0.2
image: k8s.gcr.io/sig-storage/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: k8s.gcr.io/provider-aws/csi-attacher:v3.0.0
image: k8s.gcr.io/sig-storage/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: k8s.gcr.io/provider-aws/livenessprobe:v2.1.0
image: k8s.gcr.io/sig-storage/livenessprobe:v2.1.0
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down
6 changes: 3 additions & 3 deletions deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
- name: ebs-plugin
securityContext:
privileged: true
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:latest
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v0.9.0
args:
- node
- --endpoint=$(CSI_ENDPOINT)
Expand Down Expand Up @@ -69,7 +69,7 @@ spec:
periodSeconds: 10
failureThreshold: 5
- name: node-driver-registrar
image: k8s.gcr.io/provider-aws/csi-node-driver-registrar:v2.0.1
image: k8s.gcr.io/sig-storage/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: k8s.gcr.io/provider-aws/livenessprobe:v2.1.0
image: k8s.gcr.io/sig-storage/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: k8s.gcr.io/provider-aws/csi-provisioner
- name: k8s.gcr.io/sig-storage/csi-provisioner
newTag: v2.0.2
- name: k8s.gcr.io/provider-aws/csi-attacher
- name: k8s.gcr.io/sig-storage/csi-attacher
newTag: v3.0.0
- name: k8s.gcr.io/provider-aws/livenessprobe
- name: k8s.gcr.io/sig-storage/livenessprobe
newTag: v2.1.0
- name: k8s.gcr.io/provider-aws/csi-node-driver-registrar
- name: k8s.gcr.io/sig-storage/csi-node-driver-registrar
newTag: v2.0.1

0 comments on commit 41d8f2e

Please sign in to comment.