Skip to content

Commit

Permalink
fix s3 bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
kuliebiakin committed May 22, 2023
1 parent bedd935 commit 1c1ce5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/wp-project-skeleton/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: wp-project-skeleton
description: A Helm chart to deploy WordPress project.
type: application
version: 0.2.10
appVersion: "0.2.10"
version: 0.2.11
appVersion: "0.2.11"
dependencies:
- name: common
version: 2.x.x
Expand Down
2 changes: 1 addition & 1 deletion charts/wp-project-skeleton/templates/configmap-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ data:
{{- if .Values.app.s3UploadsBucketUrl }}
S3_UPLOADS_BUCKET_URL: {{ .Values.app.s3UploadsBucketUrl | quote }}
{{- else }}
S3_UPLOADS_BUCKET_URL: "https://"{{ include "wp-project-skeleton.s3Bucket" . }}
S3_UPLOADS_BUCKET_URL: {{ printf "%s%s" "https://" (include "wp-project-skeleton.s3Bucket" .) }}
{{- end }}
{{ include "wp-project-skeleton.awsRegion" (list "S3_UPLOADS_REGION" .Values.app.s3UploadsRegion .Values.app.awsRegion) }}
{{- if .Values.app.redisHost }}
Expand Down

0 comments on commit 1c1ce5b

Please sign in to comment.