Skip to content

Commit

Permalink
Don't include subdirectories in custom configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Jussi Liukkonen committed Oct 26, 2023
1 parent 374990d commit 14fe3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/geoweb-taf-backend/templates/taf-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
export AWS_ACCESS_KEY_ID={{ .Values.taf.awsAccessKeyId }};
export AWS_SECRET_ACCESS_KEY={{ .Values.taf.awsAccessKeySecret }};
AWS_DEFAULT_REGION={{ .Values.taf.awsDefaultRegion }};
aws s3 cp --recursive s3://{{ .Values.taf.s3bucketName }}{{ .Values.taf.customConfigurationFolderPath }} /taf;
aws s3 cp --recursive --exclude "*/*" s3://{{ .Values.taf.s3bucketName }}{{ .Values.taf.customConfigurationFolderPath }} /taf;
volumeMounts:
- mountPath: "/taf/"
name: {{ .Values.taf.name }}-volume
Expand Down

0 comments on commit 14fe3ae

Please sign in to comment.