diff options
author | andreas-geissler <andreas-geissler@telekom.de> | 2021-07-07 15:40:41 +0200 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-07-12 15:54:37 +0000 |
commit | f84cccd0fad42df9fc4c590ea93a2f164f3f3071 (patch) | |
tree | f889d72ca73671d8094e5131bb694177603d98d5 /kubernetes/common/mongo | |
parent | 2d41088cf4ef1f1b8459c4799cddcdbc8088d2d5 (diff) |
[COMMON] Added imagePullSecrets to common template files with some fix
Added the missing definition for imagePullSecrets in the
statefulsets.yaml
deployment.yaml
to support the registryGenerator
Issue-ID: OOM-2789
Signed-off-by: andreas-geissler <andreas-geissler@telekom.de>
Change-Id: I013ba52c9c49f95cd3d53fcaa9eb084adcbfe662
Diffstat (limited to 'kubernetes/common/mongo')
-rw-r--r-- | kubernetes/common/mongo/templates/statefulset.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/common/mongo/templates/statefulset.yaml b/kubernetes/common/mongo/templates/statefulset.yaml index 73186b392d..11602054e8 100644 --- a/kubernetes/common/mongo/templates/statefulset.yaml +++ b/kubernetes/common/mongo/templates/statefulset.yaml @@ -37,6 +37,8 @@ spec: release: {{ include "common.release" . }} spec: {{ include "common.podSecurityContext" . | indent 6 }} + imagePullSecrets: + - name: "{{ include "common.namespace" . }}-docker-registry-key" containers: - name: {{ include "common.name" . }} image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }} |