Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug(WebhookWorker) - make sure LAGO_API_URL is set in webhook-worker #136

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion templates/webhook-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ spec:
value: {{ .Values.billingWorker.enabled | quote }}
- name: SIDEKIQ_CLOCK
value: {{ .Values.clockWorker.enabled | quote }}
- name: LAGO_API_URL
value: {{ required "apiUrl value is required" .Values.apiUrl | quote }}
- name: LAGO_LOG_LEVEL
value: {{ .Values.webhookWorker.rails.logLevel | quote }}
{{- with .Values.webhookWorker.extraEnv }}
Expand Down Expand Up @@ -140,4 +142,4 @@ spec:
failureThreshold: {{ .Values.webhookWorker.livenessProbe.failureThreshold | default 3 }}
restartPolicy: Always
serviceAccountName: {{ .Values.global.serviceAccountName | default (printf "%s-serviceaccount" .Release.Name) }}
{{- end -}}
{{- end -}}
Loading