File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : rollout-operator
3
3
description : " Grafana rollout-operator"
4
4
type : application
5
- version : 0.33.0
5
+ version : 0.33.1
6
6
appVersion : v0.29.0
7
7
home : https://github.com/grafana/rollout-operator
8
8
kubeVersion : ^1.10.0-0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Helm chart for deploying [Grafana rollout-operator](https://github.com/grafana/r
4
4
5
5
# rollout-operator
6
6
7
- ![ Version: 0.33.0 ] ( https://img.shields.io/badge/Version-0.33.0 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.29.0] ( https://img.shields.io/badge/AppVersion-v0.29.0-informational?style=flat-square )
7
+ ![ Version: 0.33.1 ] ( https://img.shields.io/badge/Version-0.33.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.29.0] ( https://img.shields.io/badge/AppVersion-v0.29.0-informational?style=flat-square )
8
8
9
9
Grafana rollout-operator
10
10
@@ -49,6 +49,8 @@ Manually applying these CRDs is only required if upgrading from a chart <= v0.32
49
49
| -----| ------| ---------| -------------|
50
50
| affinity | object | ` {} ` | |
51
51
| extraArgs | list | ` [] ` | List of additional CLI arguments to configure rollout-operator (example: ` --log.level=info ` ) |
52
+ | extraEnv | list | ` [] ` | Environment variables to add to rollout-operator container |
53
+ | extraEnvFrom | list | ` [] ` | Environment variables from secrets or configmaps to add to rollout-operator container |
52
54
| fullnameOverride | string | ` "" ` | |
53
55
| global.commonLabels | object | ` {} ` | Common labels for all object directly managed by this chart. |
54
56
| hostAliases | list | ` [] ` | hostAliases to add |
Original file line number Diff line number Diff line change 58
58
{{- range .Values.extraArgs }}
59
59
- {{ . }}
60
60
{{- end }}
61
+ {{- if .Values.extraEnv }}
62
+ env :
63
+ {{- with .Values.extraEnv }}
64
+ {{- toYaml . | nindent 12 }}
65
+ {{- end }}
66
+ {{- end }}
67
+ {{- if .Values.extraEnvFrom }}
68
+ envFrom :
69
+ {{- with .Values.extraEnvFrom }}
70
+ {{- toYaml . | nindent 12 }}
71
+ {{- end }}
72
+ {{- end }}
61
73
ports :
62
74
- name : http-metrics
63
75
containerPort : 8001
86
98
{{- with .Values.tolerations }}
87
99
tolerations :
88
100
{{- toYaml . | nindent 8 }}
89
- {{- end }}
101
+ {{- end }}
Original file line number Diff line number Diff line change @@ -56,6 +56,12 @@ securityContext: {}
56
56
# -- List of additional CLI arguments to configure rollout-operator (example: `--log.level=info`)
57
57
extraArgs : []
58
58
59
+ # -- Environment variables to add to rollout-operator container
60
+ extraEnv : []
61
+
62
+ # -- Environment variables from secrets or configmaps to add to rollout-operator container
63
+ extraEnvFrom : []
64
+
59
65
resources :
60
66
limits :
61
67
# cpu: "1"
You can’t perform that action at this time.
0 commit comments