Skip to content

Commit

Permalink
Increase the default shared memory size for Jibri up to 2GiB
Browse files Browse the repository at this point in the history
Fixes #132.
  • Loading branch information
spijet committed Aug 29, 2024
1 parent 1a32148 commit e5d246f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Parameter | Description | Default
`jibri.persistence.storageClassName` | StorageClass to use with Jibri | `(unset)`
`jibri.shm.enabled` | Allocate shared memory to Jibri pod | `false`
`jibri.shm.useHost` | Pass `/dev/shm` from host to Jibri | `false`
`jibri.shm.size` | Jibri shared memory size | `256Mi`
`jibri.shm.size` | Jibri shared memory size | `2Gi`
`jibri.replicaCount` | Number of replica of the jibri pods | `1`
`jibri.image.repository` | Name of the image to use for the jibri pods | `jitsi/jibri`
`jibri.extraEnvs` | Map containing additional environment variables for jibri | `{}`
Expand Down
2 changes: 1 addition & 1 deletion templates/jibri/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ spec:
{{- else }}
emptyDir:
medium: Memory
sizeLimit: {{ .Values.jibri.shm.size | default "256Mi" | quote }}
sizeLimit: {{ .Values.jibri.shm.size | default "2Gi" | quote }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ jibri:
## If "true", will use host's shared memory dir,
## and if "false" — an emptyDir mount.
# useHost: false
# size: 256Mi
# size: 2Gi

## Configure the update strategy for Jibri deployment.
## This may be useful depending on your persistence settings,
Expand Down

0 comments on commit e5d246f

Please sign in to comment.