Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,3 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
imagePullSecrets: {{ .Values.imagePullSecrets | default list | toJson }}
6 changes: 2 additions & 4 deletions deploy/cloud/helm/platform/components/api-store/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ image:
# Overrides the image tag whose default is the chart appVersion.
tag: ""

# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets:
- name: nvcrimagepullsecret
- name: docker-imagepullsecret
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
#imagePullSecrets: []
# This is to override the chart name.
nameOverride: ""
fullnameOverride: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ spec:
annotations:
kubectl.kubernetes.io/default-container: manager
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- args: {{- toYaml .Values.controllerManager.kubeRbacProxy.args | nindent
8 }}
Expand Down Expand Up @@ -120,7 +124,6 @@ spec:
10 }}
securityContext: {{- toYaml .Values.controllerManager.manager.containerSecurityContext
| nindent 10 }}
imagePullSecrets: {{ .Values.imagePullSecrets | default list | toJson }}
securityContext:
runAsNonRoot: true
serviceAccountName: {{ include "dynamo-operator.fullname" . }}-controller-manager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ dynamo:
cacheRepo: ''
snapshotMode: '' # options: full, redo, time

imagePullSecrets: []
#imagePullSecrets: []
kubernetesClusterDomain: cluster.local
metricsService:
ports:
Expand Down
7 changes: 0 additions & 7 deletions deploy/cloud/helm/platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,9 @@
# limitations under the License.
# Used to generate top-level secrets (overridden by custom-values.yaml)

imagePullSecrets:

# Subcharts
dynamo-operator:
enabled: true
imagePullSecrets:
- name: gitlab-imagepull
- name: nvcrimagepullsecret
- name: docker-imagepullsecret
natsAddr: ""
etcdAddr: ""
namespaceRestriction:
Expand Down Expand Up @@ -79,7 +73,6 @@ dynamo-api-store:
repository: ""
tag: "latest"
pullPolicy: IfNotPresent
imagePullSecrets:
ingress:
enabled: false
className: nginx
Expand Down
Loading