Skip to content

Commit

Permalink
make imagePullSecrets equal + add docu for nameOverride and
Browse files Browse the repository at this point in the history
fullnameOverride
  • Loading branch information
thr authored and thr committed Nov 3, 2023
1 parent eb63bb9 commit 0b10454
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
2 changes: 2 additions & 0 deletions apigateway/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ image:
imagePullSecrets:
- name: regcred

# -- Overwrites Chart name of release name in workload name. As default, the workload name is release name + '-' + Chart name. The workload name is at the end release name + '-' + value of `nameOverride`.
nameOverride: ""
# -- Overwrites full workload name. As default, the workload name is release name + '-' + Chart name.
fullnameOverride: ""

serviceAccount:
Expand Down
2 changes: 2 additions & 0 deletions developerportal/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ image:
imagePullSecrets:
- name: regcred

# -- Overwrites Chart name of release name in workload name. As default, the workload name is release name + '-' + Chart name. The workload name is at the end release name + '-' + value of `nameOverride`.
nameOverride: ""
# -- Overwrites full workload name. As default, the workload name is release name + '-' + Chart name.
fullnameOverride: ""

serviceAccount:
Expand Down
6 changes: 3 additions & 3 deletions microservicesruntime/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ image:
# -- The default value pulls latest. In PROD it is recommended to use a specific fix level.
tag: "10.15"

# -- Secret list to pull image from repository
imagePullSecrets:
- name: regcred
# -- Image pull secret reference. By default looks for `regcred`.
imagePullSecrets:
- name: regcred

# -- Overwrites Chart name of release name in workload name. As default, the workload name is release name + '-' + Chart name. The workload name is at the end release name + '-' + value of `nameOverride`.
nameOverride: ""
Expand Down
7 changes: 6 additions & 1 deletion mywebmethodsserver/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ image:
# Overrides the image tag whose default is the chart appVersion.
tag: ""

imagePullSecrets: []
# -- Image pull secret reference. By default looks for `regcred`.
imagePullSecrets:
- name: regcred

# -- Overwrites Chart name of release name in workload name. As default, the workload name is release name + '-' + Chart name. The workload name is at the end release name + '-' + value of `nameOverride`.
nameOverride: ""
# -- Overwrites full workload name. As default, the workload name is release name + '-' + Chart name.
fullnameOverride: ""

serviceAccount:
Expand Down
5 changes: 3 additions & 2 deletions universalmessaging/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ image:
# -- Name of the licence config map
licenseConfigMap: "universalmessaging-licence-key"

# -- Secret list to pull image from repository
imagePullSecrets: [regcred]
# -- Image pull secret reference. By default looks for `regcred`.
imagePullSecrets:
- name: regcred

# -- Exta environment properties to be passed on to the container
extraEnvs: {}
Expand Down

0 comments on commit 0b10454

Please sign in to comment.