Skip to content

Commit

Permalink
Fix creation of the sanitization config bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrossi committed Jul 18, 2024
1 parent 0cc1663 commit 6ad109e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/data-sanitization-service/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ spec:
- /bin/sh
- -c
- |
set -x; # enable printing the command before execution (in the sub-shell)
mc alias set minio {{ .Values.s3.endpoint }} $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY;
set -ex; # enable printing the command before execution (in the sub-shell)
mc alias set minio https://{{ .Values.s3.endpoint }} $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY;
mc mb minio/sanitization/config
securityContext:
{{- toYaml .Values.securityContext | nindent 10 }}
Expand Down

0 comments on commit 6ad109e

Please sign in to comment.