diff --git a/all-in-one/README.md b/all-in-one/README.md index 17a8c5e7..b5427c48 100644 --- a/all-in-one/README.md +++ b/all-in-one/README.md @@ -393,6 +393,7 @@ A Helm chart for the deployment of WSO2 API Manager all-in-one distribution. | wso2.deployment.persistence.solrIndexing.capacity.solrIndexedData | string | `"50M"` | For persisting the indexed solr data | | wso2.deployment.persistence.solrIndexing.enabled | bool | `false` | Indicates if persistence of the runtime artifacts for Apache Solr-based indexing is enabled By default, this is disabled | | wso2.deployment.pod.annotations | object | `{}` | Annotations for pods | +| wso2.deployment.pod.labels | object | `{}` | Labels for pods. `deployment` and `node` are reserved for the Deployment selector and must not be overridden. | | wso2.deployment.readinessProbe.failureThreshold | int | `5` | Minimum consecutive successes for the probe to be considered successful after having failed | | wso2.deployment.readinessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before readiness probes are initiated | | wso2.deployment.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the probe | diff --git a/all-in-one/templates/am/instance-1/wso2am-deployment.yaml b/all-in-one/templates/am/instance-1/wso2am-deployment.yaml index 958197ab..e49237df 100644 --- a/all-in-one/templates/am/instance-1/wso2am-deployment.yaml +++ b/all-in-one/templates/am/instance-1/wso2am-deployment.yaml @@ -35,6 +35,9 @@ spec: deployment: {{ template "am-all-in-one.fullname" . }}-am node: {{ template "am-all-in-one.fullname" . }}-am-1 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/all-in-one/templates/am/instance-2/wso2am-deployment.yaml b/all-in-one/templates/am/instance-2/wso2am-deployment.yaml index 37e6b6c4..342c95d2 100644 --- a/all-in-one/templates/am/instance-2/wso2am-deployment.yaml +++ b/all-in-one/templates/am/instance-2/wso2am-deployment.yaml @@ -36,6 +36,9 @@ spec: deployment: {{ template "am-all-in-one.fullname" . }}-am node: {{ template "am-all-in-one.fullname" . }}-am-2 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/all-in-one/values.yaml b/all-in-one/values.yaml index 1cc04aad..c1566573 100644 --- a/all-in-one/values.yaml +++ b/all-in-one/values.yaml @@ -945,6 +945,9 @@ wso2: pod: # -- Annotations for pods annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} # -- Environment variables for the deployment # Example: diff --git a/distributed/control-plane/README.md b/distributed/control-plane/README.md index 1ed99cf9..da4ef88e 100644 --- a/distributed/control-plane/README.md +++ b/distributed/control-plane/README.md @@ -263,6 +263,7 @@ A Helm chart for the deployment of WSO2 API Management API Control Plane profile | wso2.deployment.persistence.solrIndexing.capacity.solrIndexedData | string | `"50M"` | For persisting the indexed solr data | | wso2.deployment.persistence.solrIndexing.enabled | bool | `false` | Indicates if persistence of the runtime artifacts for Apache Solr-based indexing is enabled By default, this is disabled | | wso2.deployment.pod.annotations | object | `{}` | Annotations for pods | +| wso2.deployment.pod.labels | object | `{}` | Labels for pods. `deployment` and `node` are reserved for the Deployment selector and must not be overridden. | | wso2.deployment.readinessProbe.failureThreshold | int | `3` | Minimum consecutive successes for the probe to be considered successful after having failed | | wso2.deployment.readinessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before readiness probes are initiated | | wso2.deployment.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the probe | diff --git a/distributed/control-plane/templates/control-plane/instance-1/wso2am-cp-deployment.yaml b/distributed/control-plane/templates/control-plane/instance-1/wso2am-cp-deployment.yaml index 557bab75..f9206504 100644 --- a/distributed/control-plane/templates/control-plane/instance-1/wso2am-cp-deployment.yaml +++ b/distributed/control-plane/templates/control-plane/instance-1/wso2am-cp-deployment.yaml @@ -38,6 +38,9 @@ spec: deployment: {{ template "apim-helm-cp.fullname" . }} node: {{ template "apim-helm-cp.fullname" . }}-1 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/control-plane/templates/control-plane/instance-2/wso2am-cp-deployment.yaml b/distributed/control-plane/templates/control-plane/instance-2/wso2am-cp-deployment.yaml index 14172f3b..ce5080be 100644 --- a/distributed/control-plane/templates/control-plane/instance-2/wso2am-cp-deployment.yaml +++ b/distributed/control-plane/templates/control-plane/instance-2/wso2am-cp-deployment.yaml @@ -39,6 +39,9 @@ spec: deployment: {{ template "apim-helm-cp.fullname" . }} node: {{ template "apim-helm-cp.fullname" . }}-2 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/control-plane/values.yaml b/distributed/control-plane/values.yaml index 8848e2ae..b1e53377 100644 --- a/distributed/control-plane/values.yaml +++ b/distributed/control-plane/values.yaml @@ -725,6 +725,9 @@ wso2: pod: # -- Annotations for pods annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} # -- Environment variables for the deployment # Example: diff --git a/distributed/gateway/README.md b/distributed/gateway/README.md index 839a952c..5bdc0a49 100644 --- a/distributed/gateway/README.md +++ b/distributed/gateway/README.md @@ -236,6 +236,7 @@ A Helm chart for the deployment of WSO2 API Management Universal Gateway profile | wso2.deployment.minReplicas | int | `2` | Minimum replicas for HPA | | wso2.deployment.nodeSelector | string | `nil` | Node selector to deploy pod in selected node. Add label to the node and specify the label here. | | wso2.deployment.pod.annotations | object | `{}` | Annotations for pods | +| wso2.deployment.pod.labels | object | `{}` | Labels for pods. `deployment` is reserved for the Deployment selector and must not be overridden. | | wso2.deployment.readinessProbe.failureThreshold | int | `3` | Minimum consecutive successes for the probe to be considered successful after having failed | | wso2.deployment.readinessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before readiness probes are initiated | | wso2.deployment.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the probe | diff --git a/distributed/gateway/templates/gateway/wso2am-gateway-deployment.yaml b/distributed/gateway/templates/gateway/wso2am-gateway-deployment.yaml index e1557f85..5aac12f2 100644 --- a/distributed/gateway/templates/gateway/wso2am-gateway-deployment.yaml +++ b/distributed/gateway/templates/gateway/wso2am-gateway-deployment.yaml @@ -39,6 +39,9 @@ spec: labels: deployment: {{ template "apim-helm-gw.fullname" . }} product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/gateway/values.yaml b/distributed/gateway/values.yaml index a5a3c333..0e8a04ef 100644 --- a/distributed/gateway/values.yaml +++ b/distributed/gateway/values.yaml @@ -659,6 +659,9 @@ wso2: pod: # -- Annotations for pods annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} # -- Environment variables for the deployment # Example: diff --git a/distributed/key-manager/README.md b/distributed/key-manager/README.md index 3139fba8..9b56f272 100644 --- a/distributed/key-manager/README.md +++ b/distributed/key-manager/README.md @@ -170,6 +170,7 @@ A Helm chart for the deployment of WSO2 API Manager all-in-one distribution. | wso2.deployment.minAvailable | string | `"50%"` | Minimum available pod counts for PDB | | wso2.deployment.nodeSelector | string | `nil` | Node selector to deploy pod in selected node. Add label to the node and specify the label here. | | wso2.deployment.pod.annotations | object | `{}` | Annotations for pods | +| wso2.deployment.pod.labels | object | `{}` | Labels for pods. `deployment` is reserved for the Deployment selector and must not be overridden. | | wso2.deployment.readinessProbe.failureThreshold | int | `3` | Minimum consecutive successes for the probe to be considered successful after having failed | | wso2.deployment.readinessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before readiness probes are initiated | | wso2.deployment.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the probe | diff --git a/distributed/key-manager/templates/key-manager/wso2am-km-deployment.yaml b/distributed/key-manager/templates/key-manager/wso2am-km-deployment.yaml index 367fc596..b4e604fc 100644 --- a/distributed/key-manager/templates/key-manager/wso2am-km-deployment.yaml +++ b/distributed/key-manager/templates/key-manager/wso2am-km-deployment.yaml @@ -43,6 +43,9 @@ spec: labels: deployment: {{ template "apim-helm-km.fullname" . }} product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/key-manager/values.yaml b/distributed/key-manager/values.yaml index 25c28277..f46a80fc 100644 --- a/distributed/key-manager/values.yaml +++ b/distributed/key-manager/values.yaml @@ -486,6 +486,9 @@ wso2: pod: # -- Annotations for pods annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} # -- Environment variables for the deployment # Example: diff --git a/distributed/traffic-manager/README.md b/distributed/traffic-manager/README.md index 71c4056d..4febd20e 100644 --- a/distributed/traffic-manager/README.md +++ b/distributed/traffic-manager/README.md @@ -129,6 +129,7 @@ A Helm chart for the deployment of WSO2 API Management Traffic Manager profile | wso2.deployment.minAvailable | string | `"50%"` | Minimum available pod counts for PDB | | wso2.deployment.nodeSelector | string | `nil` | Node selector to deploy pod in selected node. Add label to the node and specify the label here. | | wso2.deployment.pod.annotations | object | `{}` | Annotations for pods | +| wso2.deployment.pod.labels | object | `{}` | Labels for pods. `deployment` and `node` are reserved for the Deployment selector and must not be overridden. | | wso2.deployment.readinessProbe.failureThreshold | int | `3` | Minimum consecutive successes for the probe to be considered successful after having failed | | wso2.deployment.readinessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before readiness probes are initiated | | wso2.deployment.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the probe | diff --git a/distributed/traffic-manager/templates/traffic-manager/instance-1/wso2am-tm-deployment.yaml b/distributed/traffic-manager/templates/traffic-manager/instance-1/wso2am-tm-deployment.yaml index e4eff288..35bfcb69 100644 --- a/distributed/traffic-manager/templates/traffic-manager/instance-1/wso2am-tm-deployment.yaml +++ b/distributed/traffic-manager/templates/traffic-manager/instance-1/wso2am-tm-deployment.yaml @@ -41,6 +41,9 @@ spec: deployment: {{ template "apim-helm-tm.fullname" . }} node: {{ template "apim-helm-tm.fullname" . }}-1 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/traffic-manager/templates/traffic-manager/instance-2/wso2am-tm-deployment.yaml b/distributed/traffic-manager/templates/traffic-manager/instance-2/wso2am-tm-deployment.yaml index 491ee773..8848129c 100644 --- a/distributed/traffic-manager/templates/traffic-manager/instance-2/wso2am-tm-deployment.yaml +++ b/distributed/traffic-manager/templates/traffic-manager/instance-2/wso2am-tm-deployment.yaml @@ -42,6 +42,9 @@ spec: deployment: {{ template "apim-helm-tm.fullname" . }} node: {{ template "apim-helm-tm.fullname" . }}-2 product: apim + {{- if .Values.wso2.deployment.pod.labels }} + {{- toYaml .Values.wso2.deployment.pod.labels | nindent 8 }} + {{- end }} spec: affinity: podAntiAffinity: diff --git a/distributed/traffic-manager/values.yaml b/distributed/traffic-manager/values.yaml index 46f1c483..3e492b5a 100644 --- a/distributed/traffic-manager/values.yaml +++ b/distributed/traffic-manager/values.yaml @@ -402,6 +402,9 @@ wso2: pod: # -- Annotations for pods annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} # -- Environment variables for the deployment # Example: diff --git a/resources/am-pattern-0-all-in-one/default_values.yaml b/resources/am-pattern-0-all-in-one/default_values.yaml index ce0434ae..c813de6d 100644 --- a/resources/am-pattern-0-all-in-one/default_values.yaml +++ b/resources/am-pattern-0-all-in-one/default_values.yaml @@ -766,6 +766,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + persistence: # -- Persistent runtime artifacts for Apache Solr-based indexing solrIndexing: diff --git a/resources/am-pattern-1-all-in-one-HA/default_values.yaml b/resources/am-pattern-1-all-in-one-HA/default_values.yaml index c23d50be..895c2348 100644 --- a/resources/am-pattern-1-all-in-one-HA/default_values.yaml +++ b/resources/am-pattern-1-all-in-one-HA/default_values.yaml @@ -785,6 +785,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + persistence: # -- Persistent runtime artifacts for Apache Solr-based indexing solrIndexing: diff --git a/resources/am-pattern-2-all-in-one_GW/default_gw_values.yaml b/resources/am-pattern-2-all-in-one_GW/default_gw_values.yaml index 7eee4b6a..02e1c23b 100644 --- a/resources/am-pattern-2-all-in-one_GW/default_gw_values.yaml +++ b/resources/am-pattern-2-all-in-one_GW/default_gw_values.yaml @@ -536,6 +536,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-2-all-in-one_GW/default_values.yaml b/resources/am-pattern-2-all-in-one_GW/default_values.yaml index d01d0f09..f933a660 100644 --- a/resources/am-pattern-2-all-in-one_GW/default_values.yaml +++ b/resources/am-pattern-2-all-in-one_GW/default_values.yaml @@ -759,6 +759,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + persistence: # -- Persistent runtime artifacts for Apache Solr-based indexing solrIndexing: diff --git a/resources/am-pattern-3-ACP_TM_GW/default_acp_values.yaml b/resources/am-pattern-3-ACP_TM_GW/default_acp_values.yaml index 14e29a42..aae8bbc6 100644 --- a/resources/am-pattern-3-ACP_TM_GW/default_acp_values.yaml +++ b/resources/am-pattern-3-ACP_TM_GW/default_acp_values.yaml @@ -583,6 +583,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + # -- 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. highAvailability: true diff --git a/resources/am-pattern-3-ACP_TM_GW/default_gw_values.yaml b/resources/am-pattern-3-ACP_TM_GW/default_gw_values.yaml index 128f62f9..f5b2e31c 100644 --- a/resources/am-pattern-3-ACP_TM_GW/default_gw_values.yaml +++ b/resources/am-pattern-3-ACP_TM_GW/default_gw_values.yaml @@ -538,6 +538,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-3-ACP_TM_GW/default_tm_values.yaml b/resources/am-pattern-3-ACP_TM_GW/default_tm_values.yaml index 8b2ac5fb..e1d00721 100644 --- a/resources/am-pattern-3-ACP_TM_GW/default_tm_values.yaml +++ b/resources/am-pattern-3-ACP_TM_GW/default_tm_values.yaml @@ -326,6 +326,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-4-ACP_TM_GW_KM/default_acp_values.yaml b/resources/am-pattern-4-ACP_TM_GW_KM/default_acp_values.yaml index d4a81c53..323595cd 100644 --- a/resources/am-pattern-4-ACP_TM_GW_KM/default_acp_values.yaml +++ b/resources/am-pattern-4-ACP_TM_GW_KM/default_acp_values.yaml @@ -583,6 +583,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + # -- 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. highAvailability: true diff --git a/resources/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml b/resources/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml index c23a0fe8..6ceb644d 100644 --- a/resources/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml +++ b/resources/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml @@ -538,6 +538,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-4-ACP_TM_GW_KM/default_km_values.yaml b/resources/am-pattern-4-ACP_TM_GW_KM/default_km_values.yaml index 4047ced4..b342ec71 100644 --- a/resources/am-pattern-4-ACP_TM_GW_KM/default_km_values.yaml +++ b/resources/am-pattern-4-ACP_TM_GW_KM/default_km_values.yaml @@ -404,6 +404,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-4-ACP_TM_GW_KM/default_tm_values.yaml b/resources/am-pattern-4-ACP_TM_GW_KM/default_tm_values.yaml index e87a3931..fa0f0c16 100644 --- a/resources/am-pattern-4-ACP_TM_GW_KM/default_tm_values.yaml +++ b/resources/am-pattern-4-ACP_TM_GW_KM/default_tm_values.yaml @@ -326,6 +326,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-5-all-in-one_GW_KM/default_gw_values.yaml b/resources/am-pattern-5-all-in-one_GW_KM/default_gw_values.yaml index db66e0ff..6a8ecad5 100644 --- a/resources/am-pattern-5-all-in-one_GW_KM/default_gw_values.yaml +++ b/resources/am-pattern-5-all-in-one_GW_KM/default_gw_values.yaml @@ -536,6 +536,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-5-all-in-one_GW_KM/default_km_values.yaml b/resources/am-pattern-5-all-in-one_GW_KM/default_km_values.yaml index a94fb56d..e8f41c22 100644 --- a/resources/am-pattern-5-all-in-one_GW_KM/default_km_values.yaml +++ b/resources/am-pattern-5-all-in-one_GW_KM/default_km_values.yaml @@ -404,6 +404,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` is reserved for the Deployment selector and must not be overridden. + labels: {} + # Kubernetes RollingUpdate strategy configurations strategy: rollingUpdate: diff --git a/resources/am-pattern-5-all-in-one_GW_KM/default_values.yaml b/resources/am-pattern-5-all-in-one_GW_KM/default_values.yaml index 85effd5c..812eca7c 100644 --- a/resources/am-pattern-5-all-in-one_GW_KM/default_values.yaml +++ b/resources/am-pattern-5-all-in-one_GW_KM/default_values.yaml @@ -767,6 +767,14 @@ wso2: # -- Node selector to deploy pod in selected node. Add label to the node and specify the label here. nodeSelector: + # Pod-specific configurations + pod: + # -- Annotations for pods + annotations: {} + # -- Labels for pods. + # `deployment` and `node` are reserved for the Deployment selector and must not be overridden. + labels: {} + persistence: # -- Persistent runtime artifacts for Apache Solr-based indexing solrIndexing: