Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,34 @@ spec:
{{- end }}
{{- if .Values.dispatcher.env }}
{{- toYaml .Values.dispatcher.env | nindent 12 }}
{{- end }}
{{- if .Values.dispatcher.config.recording.enabled }}
- name: ENABLE_RECORDING_UPLOAD
value: "true"
- name: RECORDING_COMPRESS
value: {{ .Values.dispatcher.config.recording.compress | quote }}
- name: RECORDING_SSE_TYPE
value: {{ .Values.dispatcher.config.recording.encryption.type | quote }}
- name: RECORDING_SSE_KMS_KEY_ID
value: {{ .Values.dispatcher.config.recording.encryption.kmsKeyId | quote }}
{{- if .Values.dispatcher.config.recording.existingSecretName }}
envFrom:
- secretRef:
name: {{ .Values.dispatcher.config.recording.existingSecretName }}
{{- else }}
- name: RECORDING_S3_BUCKET
value: {{ .Values.dispatcher.config.recording.s3.bucket | quote }}
- name: RECORDING_S3_PREFIX
value: {{ .Values.dispatcher.config.recording.s3.prefix | quote }}
- name: RECORDING_S3_REGION
value: {{ .Values.dispatcher.config.recording.s3.region | quote }}
- name: RECORDING_S3_ACCESS_KEY_ID
value: {{ .Values.dispatcher.config.recording.s3.accessKeyId | quote }}
- name: RECORDING_S3_ACCESS_KEY_SECRET
value: {{ .Values.dispatcher.config.recording.s3.accessKeySecret | quote }}
- name: RECORDING_S3_ENDPOINT
value: {{ .Values.dispatcher.config.recording.s3.endpoint | quote }}
{{- end }}
{{- end }}
volumeMounts:
- name: configmap-akeyless
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ spec:
- name: DISPLAY_HEIGHT
value: {{ .Values.webWorker.config.displayHeight | quote }}
{{- end }}
{{- if .Values.dispatcher.config.recording.enabled }}
- name: ENABLE_RECORDING
value: "true"
- name: RECORDING_QUALITY
value: {{ .Values.dispatcher.config.recording.quality | quote }}
{{- end }}
{{- if .Values.webWorker.env }}
{{- toYaml .Values.webWorker.env | nindent 12 }}
{{- end }}
Expand Down
27 changes: 27 additions & 0 deletions charts/akeyless-zero-trust-web-access/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,33 @@ dispatcher:
# target_splunk_token=""
# target_splunk_url=""

recording:
enabled: false
quality: "360p" # 144p | 240p | 360p | 480p | 720p | 1080p (maps to CRF + framerate)
compress: false
encryption:
type: "" # "" (none) | "sse-s3" | "sse-kms"
kmsKeyId: "" # For sse-kms only

# S3 upload config (inline)
s3:
bucket: ""
prefix: "ztwa-recordings"
region: ""
# Leave empty to use IAM role / instance profile
accessKeyId: ""
accessKeySecret: ""
endpoint: "" # For S3-compatible stores (NetApp, MinIO)

# Or reference existing K8s secret
existingSecretName: ""
# Secret should contain keys:
# RECORDING_S3_BUCKET
# RECORDING_S3_PREFIX (optional)
# RECORDING_S3_REGION (optional)
# RECORDING_S3_ACCESS_KEY_ID (optional)
# RECORDING_S3_ACCESS_KEY_SECRET (optional)

webWorker:
replicaCount: 5
initContainer:
Expand Down
Loading