From: Sylvain Desbureaux Date: Thu, 20 Dec 2018 10:16:08 +0000 (+0100) Subject: Fix contrib-netbox-app deployment failing X-Git-Tag: 4.0.0-ONAP~373^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=2272ee4df0fc9a09d5b33868ef2735fb6f6209e4;p=oom.git 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 --- 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"