Skip to content

Commit

Permalink
chore: mod path of image pull secret
Browse files Browse the repository at this point in the history
Signed-off-by: chriswldenyer <[email protected]>
  • Loading branch information
chriswldenyer committed May 16, 2024
1 parent fb09c7a commit 0b4d19b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
3 changes: 2 additions & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ This removes all the Kubernetes components associated with the chart and deletes
| apis.&ZeroWidthSpace;rest.&ZeroWidthSpace;tolerations | Set tolerations, overrides global | `[]` |
| base.&ZeroWidthSpace;cache_poll_period | Cache timeout for core agent & diskpool deployment | `"30s"` |
| base.&ZeroWidthSpace;default_req_timeout | Request timeout for rest & core agents | `"5s"` |
| base.&ZeroWidthSpace;imagePullSecrets.&ZeroWidthSpace;enabled | Enable imagePullSecrets for pulling our container images | `false` |
| base.&ZeroWidthSpace;logging.&ZeroWidthSpace;color | Enable ansi color code for Pod StdOut/StdErr | `true` |
| base.&ZeroWidthSpace;logging.&ZeroWidthSpace;format | Valid values for format are pretty, json and compact | `"pretty"` |
| base.&ZeroWidthSpace;logging.&ZeroWidthSpace;silenceLevel | Silence specific module components | `nil` |
Expand Down Expand Up @@ -149,6 +148,8 @@ This removes all the Kubernetes components associated with the chart and deletes
| etcd.&ZeroWidthSpace;removeMemberOnContainerTermination | Use a PreStop hook to remove the etcd members from the etcd cluster on container termination Ignored if lifecycleHooks is set or replicaCount=1 | `false` |
| etcd.&ZeroWidthSpace;replicaCount | Number of replicas of etcd | `3` |
| image.&ZeroWidthSpace;pullPolicy | ImagePullPolicy for our images | `"Always"` |
| image.&ZeroWidthSpace;pullSecrets.&ZeroWidthSpace;enabled | Enable pullSecrets for pulling our container images | `false` |
| image.&ZeroWidthSpace;pullSecrets.&ZeroWidthSpace;secrets | Name of the pullSecret in the installed namespace | `[{"name":"login"}]` |
| image.&ZeroWidthSpace;registry | Image registry to pull our product images | `"docker.io"` |
| image.&ZeroWidthSpace;repo | Image registry's namespace | `"openebs"` |
| image.&ZeroWidthSpace;tag | Release tag for our images | `"develop"` |
Expand Down
10 changes: 8 additions & 2 deletions chart/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,14 @@ Usage:
{{ include "base_pull_secrets" . }}
*/}}
{{- define "base_pull_secrets" -}}
{{- if .Values.base.imagePullSecrets.enabled }}
{{- include "render" (dict "value" .Values.base.imagePullSecrets.secrets "context" $) | nindent 8 }}
{{- if .Values.base.imagePullSecrets }}
{{- if .Values.base.imagePullSecrets.enabled }}
{{- include "render" (dict "value" .Values.base.imagePullSecrets.secrets "context" $) | nindent 8 }}
{{- end }}
{{- else -}}
{{- if (.Values.image.pullSecrets).enabled }}
{{- include "render" (dict "value" .Values.image.pullSecrets.secrets "context" $) | nindent 8 }}
{{- end }}
{{- end }}
{{- end -}}

Expand Down
15 changes: 8 additions & 7 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ image:
# -- ImagePullPolicy for our images
pullPolicy: Always

# docker-secrets required to pull images if the container registry from image.Registry is protected
pullSecrets:
# -- Enable pullSecrets for pulling our container images
enabled: false
# -- Name of the pullSecret in the installed namespace
secrets:
- name: login

# -- Node labels for pod assignment
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
# Note that if multi-arch images support 'kubernetes.io/arch: amd64'
Expand Down Expand Up @@ -87,13 +95,6 @@ base:
- name: etcd-probe
image: busybox:latest
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-etcd {{.Values.etcd.service.port}}; do date; echo "Waiting for etcd..."; sleep 1; done;']
# docker-secrets required to pull images if the container registry from image.Registry is protected
imagePullSecrets:
# -- Enable imagePullSecrets for pulling our container images
enabled: false
# Name of the imagePullSecret in the installed namespace
secrets:
- name: login

metrics:
# -- Enable the metrics exporter
Expand Down

0 comments on commit 0b4d19b

Please sign in to comment.