File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ helm.sh/chart: {{ include "sm-operator.chart" . }}
4040app.kubernetes.io/version: { { .Chart.AppVersion | quote } }
4141{ {- end } }
4242app.kubernetes.io/managed-by: { { .Release.Service } }
43+ { {- with .Values.commonLabels } }
44+ { { toYaml . } }
45+ { {- end } }
4346{ {- end } }
4447
4548{ {/*
Original file line number Diff line number Diff line change 11{
22 "$schema" : " http://json-schema.org/draft-07/schema" ,
33 "properties" : {
4+ "commonLabels" : {
5+ "type" : " object" ,
6+ "additionalProperties" : {
7+ "type" : " string"
8+ },
9+ "default" : {}
10+ },
411 "containers" : {
512 "properties" : {
613 "manager" : {
Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ settings:
1414 # The number of operator pod replicas to run. When in doubt, leave at 1
1515 replicas : 1
1616
17+ # Optional: Custom labels to be applied to all resources created by the operator
18+ # This can be used to identify the Bitwarden Secrets Manager project or for any other labeling needs
19+ # Example:
20+ # commonLabels:
21+ # custom-label: custom-label-value
22+ commonLabels : {}
23+
1724# Settings specific to the pod containers
1825containers :
1926 manager :
You can’t perform that action at this time.
0 commit comments