File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed
charts/edb-postgres-distributed-for-kubernetes Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ global repository |
72
72
| nameOverride | string | ` "" ` | |
73
73
| nodeSelector | object | ` {} ` | Nodeselector for the operator to be installed |
74
74
| podAnnotations | object | ` {} ` | Annotations to be added to the pod |
75
+ | podLabels | object | ` {} ` | Labels to be added to the pod |
75
76
| podSecurityContext | object | ` {"runAsNonRoot":true,"seccompProfile":{"type":"RuntimeDefault"}} ` | Security Context for the whole pod |
76
77
| priorityClassName | string | ` "" ` | Priority indicates the importance of a Pod relative to other Pods. |
77
78
| rbac.aggregateClusterRoles | bool | ` false ` | Aggregate ClusterRoles to Kubernetes default user-facing roles. Ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles |
Original file line number Diff line number Diff line change 41
41
labels :
42
42
control-plane : controller-manager
43
43
{{- include "edb-postgres-distributed-for-kubernetes.selectorLabels" . | nindent 8 }}
44
+ {{- with .Values.podLabels }}
45
+ {{- toYaml . | nindent 8 }}
46
+ {{- end }}
44
47
spec :
45
48
{{- with .Values.imagePullSecrets }}
46
49
imagePullSecrets :
Original file line number Diff line number Diff line change 227
227
"podAnnotations" : {
228
228
"type" : " object"
229
229
},
230
+ "podLabels" : {
231
+ "type" : " object"
232
+ },
230
233
"podSecurityContext" : {
231
234
"type" : " object" ,
232
235
"properties" : {
Original file line number Diff line number Diff line change @@ -127,10 +127,12 @@ rbac:
127
127
# Ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles
128
128
aggregateClusterRoles : false
129
129
130
- # -- Annotations to be added to the pod
131
- podAnnotations : {}
132
130
# -- Annotations to be added to all other resources
133
131
commonAnnotations : {}
132
+ # -- Annotations to be added to the pod
133
+ podAnnotations : {}
134
+ # -- Labels to be added to the pod
135
+ podLabels : {}
134
136
135
137
# -- Container Security Context
136
138
containerSecurityContext :
You can’t perform that action at this time.
0 commit comments