File tree Expand file tree Collapse file tree 9 files changed +24
-24
lines changed
cluster/images/cinder-csi-plugin
docs/octavia-ingress-controller Expand file tree Collapse file tree 9 files changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -7,32 +7,32 @@ timeout: 3m
7
7
csi :
8
8
attacher :
9
9
image :
10
- repository : k8s.gcr .io/sig-storage/csi-attacher
10
+ repository : registry.k8s .io/sig-storage/csi-attacher
11
11
tag : v4.0.0
12
12
pullPolicy : IfNotPresent
13
13
resources : {}
14
14
provisioner :
15
15
topology : " true"
16
16
image :
17
- repository : k8s.gcr .io/sig-storage/csi-provisioner
17
+ repository : registry.k8s .io/sig-storage/csi-provisioner
18
18
tag : v3.4.0
19
19
pullPolicy : IfNotPresent
20
20
resources : {}
21
21
snapshotter :
22
22
image :
23
- repository : k8s.gcr .io/sig-storage/csi-snapshotter
23
+ repository : registry.k8s .io/sig-storage/csi-snapshotter
24
24
tag : v6.1.0
25
25
pullPolicy : IfNotPresent
26
26
resources : {}
27
27
resizer :
28
28
image :
29
- repository : k8s.gcr .io/sig-storage/csi-resizer
29
+ repository : registry.k8s .io/sig-storage/csi-resizer
30
30
tag : v1.6.0
31
31
pullPolicy : IfNotPresent
32
32
resources : {}
33
33
livenessprobe :
34
34
image :
35
- repository : k8s.gcr .io/sig-storage/livenessprobe
35
+ repository : registry.k8s .io/sig-storage/livenessprobe
36
36
tag : v2.8.0
37
37
pullPolicy : IfNotPresent
38
38
failureThreshold : 5
42
42
resources : {}
43
43
nodeDriverRegistrar :
44
44
image :
45
- repository : k8s.gcr .io/sig-storage/csi-node-driver-registrar
45
+ repository : registry.k8s .io/sig-storage/csi-node-driver-registrar
46
46
tag : v2.6.2
47
47
pullPolicy : IfNotPresent
48
48
resources : {}
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ nodeplugin:
55
55
# csi-node-driver-registrar
56
56
registrar :
57
57
image :
58
- repository : k8s.gcr .io/sig-storage/csi-node-driver-registrar
58
+ repository : registry.k8s .io/sig-storage/csi-node-driver-registrar
59
59
tag : v2.4.0
60
60
pullPolicy : IfNotPresent
61
61
resources : {}
@@ -75,7 +75,7 @@ controllerplugin:
75
75
# CSI external-provisioner container spec
76
76
provisioner :
77
77
image :
78
- repository : k8s.gcr .io/sig-storage/csi-provisioner
78
+ repository : registry.k8s .io/sig-storage/csi-provisioner
79
79
tag : v3.0.0
80
80
pullPolicy : IfNotPresent
81
81
resources : {}
@@ -84,14 +84,14 @@ controllerplugin:
84
84
# CSI external-snapshotter container spec
85
85
snapshotter :
86
86
image :
87
- repository : k8s.gcr .io/sig-storage/csi-snapshotter
87
+ repository : registry.k8s .io/sig-storage/csi-snapshotter
88
88
tag : v5.0.1
89
89
pullPolicy : IfNotPresent
90
90
resources : {}
91
91
# CSI external-resizer container spec
92
92
resizer :
93
93
image :
94
- repository : k8s.gcr .io/sig-storage/csi-resizer
94
+ repository : registry.k8s .io/sig-storage/csi-resizer
95
95
tag : v1.3.0
96
96
pullPolicy : IfNotPresent
97
97
resources : {}
Original file line number Diff line number Diff line change 13
13
ARG DEBIAN_ARCH=amd64
14
14
# We not using scratch because we need to keep the basic image information
15
15
# from parent image
16
- FROM k8s.gcr .io/build-image/debian-base-${DEBIAN_ARCH}:bullseye-v1.4.2
16
+ FROM registry.k8s .io/build-image/debian-base-${DEBIAN_ARCH}:bullseye-v1.4.2
17
17
18
18
ARG ARCH=amd64
19
19
Original file line number Diff line number Diff line change 1
1
ARG DEBIAN_ARCH=amd64
2
- FROM k8s.gcr .io/build-image/debian-base-${DEBIAN_ARCH}:bullseye-v1.4.2
2
+ FROM registry.k8s .io/build-image/debian-base-${DEBIAN_ARCH}:bullseye-v1.4.2
3
3
4
4
ARG ARCH=amd64
5
5
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ Ingress and enable the more secure HTTPS protocol.
388
388
# Any image is permissible as long as:
389
389
# 1. It serves a 404 page at /
390
390
# 2. It serves 200 on a /healthz endpoint
391
- image: k8s.gcr .io/defaultbackend-amd64:1.5
391
+ image: registry.k8s .io/defaultbackend-amd64:1.5
392
392
ports:
393
393
- containerPort: 8080
394
394
---
Original file line number Diff line number Diff line change 25
25
serviceAccount : csi-cinder-controller-sa
26
26
containers :
27
27
- name : csi-attacher
28
- image : k8s.gcr .io/sig-storage/csi-attacher:v4.0.0
28
+ image : registry.k8s .io/sig-storage/csi-attacher:v4.0.0
29
29
args :
30
30
- " --csi-address=$(ADDRESS)"
31
31
- " --timeout=3m"
39
39
- name : socket-dir
40
40
mountPath : /var/lib/csi/sockets/pluginproxy/
41
41
- name : csi-provisioner
42
- image : k8s.gcr .io/sig-storage/csi-provisioner:v3.3.0
42
+ image : registry.k8s .io/sig-storage/csi-provisioner:v3.3.0
43
43
args :
44
44
- " --csi-address=$(ADDRESS)"
45
45
- " --timeout=3m"
55
55
- name : socket-dir
56
56
mountPath : /var/lib/csi/sockets/pluginproxy/
57
57
- name : csi-snapshotter
58
- image : k8s.gcr .io/sig-storage/csi-snapshotter:v6.1.0
58
+ image : registry.k8s .io/sig-storage/csi-snapshotter:v6.1.0
59
59
args :
60
60
- " --csi-address=$(ADDRESS)"
61
61
- " --timeout=3m"
69
69
- mountPath : /var/lib/csi/sockets/pluginproxy/
70
70
name : socket-dir
71
71
- name : csi-resizer
72
- image : k8s.gcr .io/sig-storage/csi-resizer:v1.4.0
72
+ image : registry.k8s .io/sig-storage/csi-resizer:v1.4.0
73
73
args :
74
74
- " --csi-address=$(ADDRESS)"
75
75
- " --timeout=3m"
83
83
- name : socket-dir
84
84
mountPath : /var/lib/csi/sockets/pluginproxy/
85
85
- name : liveness-probe
86
- image : k8s.gcr .io/sig-storage/livenessprobe:v2.8.0
86
+ image : registry.k8s .io/sig-storage/livenessprobe:v2.8.0
87
87
args :
88
88
- " --csi-address=$(ADDRESS)"
89
89
env :
Original file line number Diff line number Diff line change 21
21
hostNetwork : true
22
22
containers :
23
23
- name : node-driver-registrar
24
- image : k8s.gcr .io/sig-storage/csi-node-driver-registrar:v2.6.2
24
+ image : registry.k8s .io/sig-storage/csi-node-driver-registrar:v2.6.2
25
25
args :
26
26
- " --csi-address=$(ADDRESS)"
27
27
- " --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
41
41
- name : registration-dir
42
42
mountPath : /registration
43
43
- name : liveness-probe
44
- image : k8s.gcr .io/sig-storage/livenessprobe:v2.8.0
44
+ image : registry.k8s .io/sig-storage/livenessprobe:v2.8.0
45
45
args :
46
46
- --csi-address=/csi/csi.sock
47
47
volumeMounts :
Original file line number Diff line number Diff line change 36
36
serviceAccountName : openstack-manila-csi-controllerplugin
37
37
containers :
38
38
- name : provisioner
39
- image : " k8s.gcr .io/sig-storage/csi-provisioner:v3.0.0"
39
+ image : " registry.k8s .io/sig-storage/csi-provisioner:v3.0.0"
40
40
args :
41
41
- " --csi-address=$(ADDRESS)"
42
42
# To enable topology awareness in csi-provisioner, uncomment the following line:
49
49
- name : plugin-dir
50
50
mountPath : /var/lib/kubelet/plugins/manila.csi.openstack.org
51
51
- name : snapshotter
52
- image : " k8s.gcr .io/sig-storage/csi-snapshotter:v5.0.1"
52
+ image : " registry.k8s .io/sig-storage/csi-snapshotter:v5.0.1"
53
53
args :
54
54
- " --csi-address=$(ADDRESS)"
55
55
env :
60
60
- name : plugin-dir
61
61
mountPath : /var/lib/kubelet/plugins/manila.csi.openstack.org
62
62
- name : resizer
63
- image : " k8s.gcr .io/sig-storage/csi-resizer:v1.3.0"
63
+ image : " registry.k8s .io/sig-storage/csi-resizer:v1.3.0"
64
64
args :
65
65
- " --csi-address=$(ADDRESS)"
66
66
- " --handle-volume-inuse-error=false"
Original file line number Diff line number Diff line change 21
21
dnsPolicy : ClusterFirstWithHostNet
22
22
containers :
23
23
- name : registrar
24
- image : " k8s.gcr .io/sig-storage/csi-node-driver-registrar:v2.4.0"
24
+ image : " registry.k8s .io/sig-storage/csi-node-driver-registrar:v2.4.0"
25
25
args :
26
26
- " --csi-address=/csi/csi.sock"
27
27
- " --kubelet-registration-path=/var/lib/kubelet/plugins/manila.csi.openstack.org/csi.sock"
You can’t perform that action at this time.
0 commit comments