Skip to content

Commit

Permalink
Merge pull request #2 from backmarket-oss/fix/rio-chart-command
Browse files Browse the repository at this point in the history
fix(random-ingress-operator): command block must be a list, not a string
  • Loading branch information
mgarstecki authored Jul 3, 2023
2 parents e5b576f + 62a4204 commit 79cfae9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/random-ingress-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 2 additions & 1 deletion charts/random-ingress-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
command: "/manager"
command:
- "/manager"
args:
- "--leader-elect"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down

0 comments on commit 79cfae9

Please sign in to comment.