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
3 changes: 2 additions & 1 deletion all-in-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ A Helm chart for the deployment of WSO2 API Manager all-in-one distribution.
| wso2.deployment.highAvailability | bool | `false` | |
| wso2.deployment.image.digest | string | `""` | Docker image digest |
| wso2.deployment.image.imagePullPolicy | string | `"Always"` | Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"name":"","password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets.name | string | `""` | Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created. |
| wso2.deployment.image.registry | string | `""` | Registry containing the image |
| wso2.deployment.image.repository | string | `""` | Repository name consisting the image |
| wso2.deployment.image.tag | string | `""` | Docker image tag |
Expand Down
2 changes: 2 additions & 0 deletions all-in-one/default_openshift_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Registry containing the image
Expand Down
2 changes: 2 additions & 0 deletions all-in-one/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Registry containing the image
Expand Down
4 changes: 4 additions & 0 deletions all-in-one/templates/am/instance-1/wso2am-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "am-all-in-one.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
4 changes: 4 additions & 0 deletions all-in-one/templates/am/instance-2/wso2am-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "am-all-in-one.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled (not .Values.wso2.deployment.image.imagePullSecrets.name) }}
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). All Rights Reserved.
Expand Down
2 changes: 2 additions & 0 deletions all-in-one/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created.
name: ""
username: ""
password: ""
# -- Registry containing the image
Expand Down
3 changes: 2 additions & 1 deletion distributed/control-plane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ A Helm chart for the deployment of WSO2 API Management API Control Plane profile
| wso2.deployment.highAvailability | bool | `true` | Enable high availability for traffic manager. If this is enabled, two traffic manager instances will be deployed. This is not relavant to HA in Kubernetes. Multiple replicas of the same instance will not count as HA for TM. |
| wso2.deployment.image.digest | string | `""` | Docker image digest |
| wso2.deployment.image.imagePullPolicy | string | `"Always"` | Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"name":"","password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets.name | string | `""` | Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created. |
| wso2.deployment.image.registry | string | `""` | Container registry hostname |
| wso2.deployment.image.repository | string | `""` | Azure ACR repository name consisting the image |
| wso2.deployment.image.tag | string | `""` | Docker image tag |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-cp.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-control-plane
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-cp.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-control-plane
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled (not .Values.wso2.deployment.image.imagePullSecrets.name) }}
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). All Rights Reserved.
Expand Down
2 changes: 2 additions & 0 deletions distributed/control-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
3 changes: 2 additions & 1 deletion distributed/gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ A Helm chart for the deployment of WSO2 API Management Universal Gateway profile
| wso2.deployment.envs | object | `{}` | Environment variables for the deployment Example: envs: MY_CUSTOM_VAR: "my-value" ANOTHER_VAR: "another-value" |
| wso2.deployment.image.digest | string | `""` | Docker image digest |
| wso2.deployment.image.imagePullPolicy | string | `"Always"` | Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"name":"","password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets.name | string | `""` | Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created. |
| wso2.deployment.image.registry | string | `""` | Container registry hostname |
| wso2.deployment.image.repository | string | `""` | Azure ACR repository name consisting the image |
| wso2.deployment.image.tag | string | `""` | Docker image tag |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-gw.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-gateway
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled (not .Values.wso2.deployment.image.imagePullSecrets.name) }}
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). All Rights Reserved.
Expand Down
2 changes: 2 additions & 0 deletions distributed/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
3 changes: 2 additions & 1 deletion distributed/key-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ A Helm chart for the deployment of WSO2 API Manager all-in-one distribution.
| wso2.deployment.highAvailability | bool | `false` | Enable high availability for key manager. If this is enabled, two key manager replicas will be deployed. |
| wso2.deployment.image.digest | string | `""` | Docker image digest |
| wso2.deployment.image.imagePullPolicy | string | `"Always"` | Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"name":"","password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets.name | string | `""` | Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created. |
| wso2.deployment.image.registry | string | `""` | Container registry hostname |
| wso2.deployment.image.repository | string | `""` | Azure ACR repository name consisting the image |
| wso2.deployment.image.tag | string | `""` | Docker image tag |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-km.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-km
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled (not .Values.wso2.deployment.image.imagePullSecrets.name) }}
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). All Rights Reserved.
Expand Down
2 changes: 2 additions & 0 deletions distributed/key-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
3 changes: 2 additions & 1 deletion distributed/traffic-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ A Helm chart for the deployment of WSO2 API Management Traffic Manager profile
| wso2.deployment.highAvailability | bool | `true` | Enable high availability for traffic manager. If this is enabled, two traffic manager instances will be deployed. This is not relavant to HA in Kubernetes. Multiple replicas of the same instance will not count as HA for TM. |
| wso2.deployment.image.digest | string | `""` | Docker image digest |
| wso2.deployment.image.imagePullPolicy | string | `"Always"` | Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets | object | `{"enabled":false,"name":"","password":"","username":""}` | Container registry credentials. Specify image pull secrets for private registries |
| wso2.deployment.image.imagePullSecrets.name | string | `""` | Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created. |
| wso2.deployment.image.registry | string | `""` | Container registry hostname |
| wso2.deployment.image.repository | string | `""` | Azure ACR repository name consisting the image |
| wso2.deployment.image.tag | string | `""` | Docker image tag |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled (not .Values.wso2.deployment.image.imagePullSecrets.name) }}
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). All Rights Reserved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-tm.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-traffic-manager
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ spec:
{{- end }}
{{- if and .Values.wso2.deployment.image.imagePullSecrets.enabled }}
imagePullSecrets:
{{- if .Values.wso2.deployment.image.imagePullSecrets.name }}
- name: {{ .Values.wso2.deployment.image.imagePullSecrets.name }}
{{- else }}
- name: {{ template "apim-helm-tm.fullname" . }}-docker-registry-auth
{{- end }}
{{- end }}
containers:
- name: wso2am-traffic-manager
{{- if .Values.wso2.deployment.image.digest }}
Expand Down
2 changes: 2 additions & 0 deletions distributed/traffic-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-0-all-in-one/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Registry containing the image
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-1-all-in-one-HA/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
Comment thread
coderabbitai[bot] marked this conversation as resolved.
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-2-all-in-one_GW/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-2-all-in-one_GW/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Registry containing the image
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-3-ACP_TM_GW/default_acp_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-3-ACP_TM_GW/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-3-ACP_TM_GW/default_tm_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-4-ACP_TM_GW_KM/default_acp_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-4-ACP_TM_GW_KM/default_km_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
2 changes: 2 additions & 0 deletions resources/am-pattern-4-ACP_TM_GW_KM/default_tm_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ wso2:
# Specify image pull secrets for private registries
imagePullSecrets:
enabled: false
# -- Name of an existing image pull secret in the namespace. If set, this secret is used directly and no new secret is created from username/password credentials.
name: ""
username: ""
password: ""
# -- Container registry hostname
Expand Down
Loading