File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 2.2.0] - 2023-08-11
4+ ### Added
5+ - option to run containers with additional command and args.
6+
37## [ 2.1.0] - 2023-07-27
48### Added
59- replaced strict TCP protocol family in ports specification with variable: protocol which allows to decide which protocol is needed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 2.1 .0
18+ version : 2.2 .0
1919# This is the version number of the application being deployed. This version number should be
2020# incremented each time you make changes to the application. Versions are not expected to
2121# follow Semantic Versioning. They should reflect the version the application is using.
Original file line number Diff line number Diff line change 1818 containers :
1919 - name : {{ .Release.Name }}
2020 image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
21+ {{- if .Values.image.command }}
22+ command :
23+ {{- with .Values.image.command }}
24+ {{- toYaml . | nindent 12 }}
25+ {{- end }}
26+ {{- end }}
27+ {{- if .Values.image.args }}
28+ args :
29+ {{- with .Values.image.args }}
30+ {{- toYaml . | nindent 12 }}
31+ {{- end }}
32+ {{- end }}
2133 {{- if .Values.volumes.enabled }}
2234 volumeMounts :
2335 {{- range .Values.volumes.mountPath }}
Original file line number Diff line number Diff line change 33 imagePolicy : enabled
44 repository : devkrolikowski/swiss-army-knife
55 tag : 0.3.0 # {"$imagepolicy": "flux-system:helper:tag"}
6+ command :
7+ - " cmd.sh"
8+ args :
9+ - " cmdarg"
610resources :
711 limits :
812 memory : " 1024Mi"
Original file line number Diff line number Diff line change 77 imagePolicy : false
88 repository : " "
99 tag : " "
10+ command : []
11+ args : []
1012env : {}
1113resources :
1214 limits :
You can’t perform that action at this time.
0 commit comments