Skip to content

Commit

Permalink
fix(helm): fix lambda output bucket env var missing namespace (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
tthvo authored Apr 8, 2024
1 parent 8a10080 commit fa5080c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm-charts/charts/privacypal/templates/lambda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ metadata:
spec:
name: {{ .Release.Namespace }}-{{ $fullName }}-vidproc
packageType: Image
environment:
variables:
OUTPUT_BUCKET: {{ .Release.Namespace }}-{{ $fullName }}-videos
{{- with .Values.lambda.videoProcessor }}
code:
imageURI: "{{ .image.repository }}:{{ .image.tag }}"
role: {{ .iamRole }}
description: Video processing Lambda to process videos submitted by users
environment:
variables:
OUTPUT_BUCKET: {{ $fullName }}-videos
ephemeralStorage:
size: {{ .ephemeralStorageSize }}
memorySize: {{ .memorySize }}
Expand Down

0 comments on commit fa5080c

Please sign in to comment.