File tree Expand file tree Collapse file tree 5 files changed +22
-2
lines changed
charts/olm-operator-installer Expand file tree Collapse file tree 5 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.1
18
+ version : 0.1.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -83,5 +83,10 @@ subscription:
83
83
# the initial version of the operator to be installed
84
84
# if empty it will not be used in the subscription
85
85
startingCSV : " "
86
+
87
+ # config:
88
+ # env:
89
+ # - name: ENV_VAR_TO_BE_ADDED
90
+ # value: ENV_VAR_VALUE
86
91
```
87
92
Original file line number Diff line number Diff line change @@ -58,3 +58,8 @@ subscription:
58
58
# if empty it will not be used in the subscription
59
59
startingCSV : " "
60
60
61
+ config :
62
+ env :
63
+ # Set operator log level
64
+ - name : ARGS
65
+ value : " --zap-log-level=info"
Original file line number Diff line number Diff line change 12
12
{{- if .Values.subscription.startingCSV }}
13
13
startingCSV : {{ .Values.subscription.startingCSV }}
14
14
{{- end }}
15
-
15
+ {{- if .Values.subscription.config }}
16
+ config :
17
+ {{- if .Values.subscription.config.env }}
18
+ env :
19
+ {{- .Values.subscription.config.env | toYaml | nindent 4 }}
20
+ {{- end }}
21
+ {{- end }}
Original file line number Diff line number Diff line change @@ -56,3 +56,7 @@ subscription:
56
56
# if empty it will not be used in the subscription
57
57
startingCSV : " "
58
58
59
+ # config:
60
+ # env:
61
+ # - name: ENV_VAR_TO_BE_ADDED
62
+ # value: ENV_VAR_VALUE
You can’t perform that action at this time.
0 commit comments