@@ -130,12 +130,19 @@ kubectl patch serviceaccount operator --namespace default \
130
130
kubectl patch serviceaccount fluentd --namespace default \
131
131
-p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
132
132
133
+ kubectl patch serviceaccount default --namespace kube-system \
134
+ -p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
135
+
133
136
kubectl patch serviceaccount cluster-autoscaler --namespace kube-system \
134
137
-p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
135
138
136
139
kubectl patch serviceaccount metrics-server --namespace kube-system \
137
140
-p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
138
141
142
+ # Only if you are using cortex version <= 0.20.0:
143
+ kubectl patch serviceaccount istio-cni --namespace kube-system \
144
+ -p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
145
+
139
146
# Only if you are using Inferentia:
140
147
kubectl patch serviceaccount neuron-device-plugin --namespace kube-system \
141
148
-p "{\" imagePullSecrets\" : [{\" name\" : \" registry-credentials\" }]}"
@@ -163,8 +170,11 @@ kubectl delete secret --namespace kube-system registry-credentials
163
170
kubectl patch serviceaccount default --namespace default -p "{\" imagePullSecrets\" : []}"
164
171
kubectl patch serviceaccount operator --namespace default -p "{\" imagePullSecrets\" : []}"
165
172
kubectl patch serviceaccount fluentd --namespace default -p "{\" imagePullSecrets\" : []}"
173
+ kubectl patch serviceaccount default --namespace kube-system -p "{\" imagePullSecrets\" : []}"
166
174
kubectl patch serviceaccount cluster-autoscaler --namespace kube-system -p "{\" imagePullSecrets\" : []}"
167
175
kubectl patch serviceaccount metrics-server --namespace kube-system -p "{\" imagePullSecrets\" : []}"
176
+ # Only if you are using cortex version <= 0.20.0:
177
+ kubectl patch serviceaccount istio-cni --namespace kube-system -p "{\" imagePullSecrets\" : []}"
168
178
# Only if you are using Inferentia:
169
179
kubectl patch serviceaccount neuron-device-plugin --namespace kube-system -p "{\" imagePullSecrets\" : []}"
170
180
` ` `
0 commit comments