Skip to content

Commit

Permalink
fix provisioning init container
Browse files Browse the repository at this point in the history
The test commands in the script require bash to be executed. however with sh only they fail.
  • Loading branch information
sobo authored May 28, 2024
1 parent 3617cc8 commit 22eba74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/graphdb-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ spec:
{{- with .Values.graphdb.node.initContainerResources }}
resources: {{ toYaml . | nindent 12 }}
{{- end }}
command: ['sh', '-c']
command: ['bash', '-c']
args:
- |
set -eu
Expand Down

0 comments on commit 22eba74

Please sign in to comment.