Fix contrib-netbox-app deployment failing 74/74974/1
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>
Thu, 20 Dec 2018 10:16:08 +0000 (11:16 +0100)
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>
Thu, 20 Dec 2018 10:16:08 +0000 (11:16 +0100)
imagePullSecrets was not present and thus preventing connecting to
registry where creds are mandatory.

Change-Id: I087fa77bd33341fa82527b3bc8ae04f323bd0f03
Issue-ID: OOM-1562
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
kubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml

index 5215ca8..92888ea 100755 (executable)
@@ -152,4 +152,6 @@ spec:
             name: {{ include "common.fullname" . }}-initializers-configmap
         - name: {{ include "common.fullname" . }}-configuration-config
           configMap:
-            name: {{ include "common.fullname" . }}-configuration-configmap
\ No newline at end of file
+            name: {{ include "common.fullname" . }}-configuration-configmap
+      imagePullSecrets:
+      - name: "{{ include "common.namespace" . }}-docker-registry-key"