summaryrefslogtreecommitdiffstats
path: root/kubernetes/contrib/charts
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2018-12-20 11:16:08 +0100
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>2018-12-20 11:16:08 +0100
commit2272ee4df0fc9a09d5b33868ef2735fb6f6209e4 (patch)
treeb74435f171b6509a288a7acb7bc927654e692c09 /kubernetes/contrib/charts
parent709e5a240f8c0a4216319909f2f84db05eecca57 (diff)
Fix contrib-netbox-app deployment failing
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>
Diffstat (limited to 'kubernetes/contrib/charts')
-rwxr-xr-xkubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/kubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml b/kubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml
index 5215ca811d..92888ea20f 100755
--- a/kubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml
+++ b/kubernetes/contrib/charts/netbox/charts/netbox-app/templates/deployment.yaml
@@ -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"