Skip to content

Commit

Permalink
feat: add s3host to actions handler
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Dec 23, 2024
1 parent ef20184 commit f958f51
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions charts/lagoon-core/templates/actions-handler.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ spec:
key: JWTSECRET
- name: GRAPHQL_ENDPOINT
value: http://{{ include "lagoon-core.api.fullname" . }}:{{ .Values.api.service.port }}/graphql
- name: S3_FILES_BUCKET
value: {{ required "A valid .Values.s3FilesBucket required!" .Values.s3FilesBucket | quote }}
- name: S3_FILES_HOST
value: {{ required "A valid .Values.s3FilesHost required!" .Values.s3FilesHost | quote }}
{{- with .Values.s3FilesRegion }}
- name: S3_FILES_REGION
value: {{ . | quote }}
{{- end }}
{{- range $key, $val := .Values.actionsHandler.additionalEnvs }}
- name: {{ $key }}
value: {{ $val | quote }}
Expand Down

0 comments on commit f958f51

Please sign in to comment.