Skip to content

Commit 64ea71c

Browse files
committed
chore: switch to mcr oss/kubernetes-csi image
1 parent b4610aa commit 64ea71c

19 files changed

+24
-24
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ This driver allows Kubernetes to access Azure Storage through one of following m
1313
### Project status: GA
1414

1515
### Container Images & Kubernetes Compatibility:
16-
|driver version |Image | supported k8s version | built-in blobfuse version |
17-
|----------------|-------------------------------------------|-----------------------|---------------------------|
18-
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.20+ | 1.4.4 |
19-
|v1.14.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.14.0 | 1.20+ | 1.4.4 |
20-
|v1.13.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.13.0 | 1.20+ | 1.4.3 |
21-
|v1.12.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.12.0 | 1.20+ | 1.4.3 |
16+
|driver version |Image | supported k8s version | built-in blobfuse version |
17+
|----------------|------------------------------------------------------|-----------------------|---------------------------|
18+
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.20+ | 1.4.4 |
19+
|v1.14.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.14.0 | 1.20+ | 1.4.4 |
20+
|v1.13.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0 | 1.20+ | 1.4.3 |
21+
|v1.12.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.12.0 | 1.20+ | 1.4.3 |
2222

2323
### Driver parameters
2424
Please refer to `blob.csi.azure.com` [driver parameters](./docs/driver-parameters.md)

charts/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ The following table lists the configurable parameters of the latest Azure Blob S
6161
| `feature.enableFSGroupPolicy` | enable `fsGroupPolicy` on a k8s 1.20+ cluster | `false` |
6262
| `feature.enableGetVolumeStats` | allow GET_VOLUME_STATS on agent node | `false` |
6363
| `image.baseRepo` | base repository of driver images | `mcr.microsoft.com` |
64-
| `image.blob.repository` | blob-csi-driver docker image | `mcr.microsoft.com/k8s/csi/blob-csi` |
64+
| `image.blob.repository` | blob-csi-driver docker image | `mcr.microsoft.com/oss/kubernetes-csi/blob-csi` |
6565
| `image.blob.tag` | blob-csi-driver docker image tag | `latest` |
6666
| `image.blob.pullPolicy` | blob-csi-driver image pull policy | `IfNotPresent` |
6767
| `image.csiProvisioner.repository` | csi-provisioner docker image | `mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner` |
68-
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v3.1.1` |
68+
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v3.2.0` |
6969
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
7070
| `image.livenessProbe.repository` | liveness-probe docker image | `mcr.microsoft.com/oss/kubernetes-csi/livenessprobe` |
7171
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.7.0` |
-1 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ image:
66
pullPolicy: IfNotPresent
77
csiProvisioner:
88
repository: /oss/kubernetes-csi/csi-provisioner
9-
tag: v3.1.1
9+
tag: v3.2.0
1010
pullPolicy: IfNotPresent
1111
livenessProbe:
1212
repository: /oss/kubernetes-csi/livenessprobe
-7 Bytes
Binary file not shown.

charts/v1.12.0/blob-csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
baseRepo: mcr.microsoft.com
33
blob:
4-
repository: /k8s/csi/blob-csi
4+
repository: /oss/kubernetes-csi/blob-csi
55
tag: v1.12.0
66
pullPolicy: IfNotPresent
77
csiProvisioner:
-5 Bytes
Binary file not shown.

charts/v1.13.0/blob-csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
baseRepo: mcr.microsoft.com
33
blob:
4-
repository: /k8s/csi/blob-csi
4+
repository: /oss/kubernetes-csi/blob-csi
55
tag: v1.13.0
66
pullPolicy: IfNotPresent
77
csiProvisioner:
-4 Bytes
Binary file not shown.

charts/v1.14.0/blob-csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
baseRepo: mcr.microsoft.com
33
blob:
4-
repository: /k8s/csi/blob-csi
4+
repository: /oss/kubernetes-csi/blob-csi
55
tag: v1.14.0
66
pullPolicy: IfNotPresent
77
csiProvisioner:

deploy/csi-blob-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
effect: "NoSchedule"
3232
containers:
3333
- name: csi-provisioner
34-
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v3.1.1
34+
image: mcr.microsoft.com/oss/kubernetes-csi/csi-provisioner:v3.2.0
3535
args:
3636
- "-v=2"
3737
- "--csi-address=$(ADDRESS)"

deploy/v1.12.0/blobfuse-proxy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- virtual-kubelet
2525
initContainers:
2626
- name: prepare-binaries
27-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.12.0
27+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.12.0
2828
command: ['sh', '-c', "cp /blobfuse-proxy/*.deb /tmp/"]
2929
volumeMounts:
3030
- mountPath: /tmp
@@ -76,7 +76,7 @@ spec:
7676
sleep 3s
7777
# tail blobfuse proxy logs
7878
journalctl -u blobfuse-proxy -f
79-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.12.0
79+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.12.0
8080
imagePullPolicy: IfNotPresent
8181
name: sysctl-install-blobfuse-proxy
8282
env:

deploy/v1.12.0/csi-blob-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
cpu: 10m
6868
memory: 20Mi
6969
- name: blob
70-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.12.0
70+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.12.0
7171
imagePullPolicy: IfNotPresent
7272
args:
7373
- "--v=5"

deploy/v1.12.0/csi-blob-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ spec:
8282
cpu: 10m
8383
memory: 20Mi
8484
- name: blob
85-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.12.0
85+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.12.0
8686
imagePullPolicy: IfNotPresent
8787
args:
8888
- "--v=5"

deploy/v1.13.0/blobfuse-proxy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- virtual-kubelet
2525
initContainers:
2626
- name: prepare-binaries
27-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.13.0
27+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0
2828
command: ['sh', '-c', "cp /blobfuse-proxy/*.deb /tmp/"]
2929
volumeMounts:
3030
- mountPath: /tmp
@@ -76,7 +76,7 @@ spec:
7676
sleep 3s
7777
# tail blobfuse proxy logs
7878
journalctl -u blobfuse-proxy -f
79-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.13.0
79+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0
8080
imagePullPolicy: IfNotPresent
8181
name: sysctl-install-blobfuse-proxy
8282
env:

deploy/v1.13.0/csi-blob-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
cpu: 10m
6868
memory: 20Mi
6969
- name: blob
70-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.13.0
70+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0
7171
imagePullPolicy: IfNotPresent
7272
args:
7373
- "--v=5"

deploy/v1.13.0/csi-blob-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ spec:
8282
cpu: 10m
8383
memory: 20Mi
8484
- name: blob
85-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.13.0
85+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0
8686
imagePullPolicy: IfNotPresent
8787
args:
8888
- "--v=5"

deploy/v1.14.0/csi-blob-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
cpu: 10m
6868
memory: 20Mi
6969
- name: blob
70-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.14.0
70+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.14.0
7171
imagePullPolicy: IfNotPresent
7272
args:
7373
- "--v=5"

deploy/v1.14.0/csi-blob-node.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- operator: "Exists"
3838
initContainers:
3939
- name: install-blobfuse-proxy
40-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.14.0
40+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.14.0
4141
imagePullPolicy: IfNotPresent
4242
command:
4343
- "/blobfuse-proxy/init.sh"
@@ -109,7 +109,7 @@ spec:
109109
cpu: 10m
110110
memory: 20Mi
111111
- name: blob
112-
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.14.0
112+
image: mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.14.0
113113
imagePullPolicy: IfNotPresent
114114
args:
115115
- "--v=5"

0 commit comments

Comments
 (0)