Skip to content
Closed

. #164

Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion egress/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: egress
description: Egress is used by LiveKit to stream and record rooms.
type: application
version: 1.12.0
version: 1.12.1
appVersion: "v1.12.0"

sources:
Expand Down
7 changes: 7 additions & 0 deletions egress/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ spec:
configMapKeyRef:
name: {{ include "egress.fullname" . }}
key: config.yaml
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
ports:
{{- if .Values.egress.health_port }}
- name: health
Expand Down
17 changes: 17 additions & 0 deletions egress/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@ egress:
health_port: 8080
prometheus_port: 9090

# Additional environment variables for the egress container. Useful for
# supplying credentials (e.g. LIVEKIT_API_KEY / LIVEKIT_API_SECRET, or
# AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY for S3 uploads) from a Secret
# instead of embedding them in the config ConfigMap.
extraEnv: []
# - name: LIVEKIT_API_KEY
# valueFrom:
# secretKeyRef:
# name: livekit-secrets
# key: api-key

# Additional envFrom sources (e.g. secretRef / configMapRef) applied to the
# egress container.
envFrom: []
# - secretRef:
# name: livekit-secrets

terminationGracePeriodSeconds: 3600

nameOverride: ""
Expand Down
Loading