Skip to content

Commit 725f8b0

Browse files
committed
- Updated chart
- Multicast settings
1 parent 7e58f43 commit 725f8b0

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

charts/soketi/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.15.4
18+
version: 0.16.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 0.29.0
23+
appVersion: 0.31.5

charts/soketi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Install the soketi chart:
2525
```bash
2626
$ helm upgrade soketi \
2727
--install \
28-
--version=0.15.3 \
28+
--version=0.16.0 \
2929
soketi/soketi
3030
```
3131

charts/soketi/templates/deployment.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ spec:
3131

3232
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
3333

34+
{{- if .Values.multicast.enabled }}
35+
hostNetwork: {{ .Values.multicast.hostNetwork }}
36+
dnsPolicy: {{ .Values.multicast.dnsPolicy }}
37+
{{- end }}
38+
3439
{{- with .Values.imagePullSecrets }}
3540
imagePullSecrets:
3641
{{- toYaml . | nindent 8 }}

charts/soketi/values.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ app:
1919
image:
2020
repository: quay.io/soketi/soketi
2121
pullPolicy: IfNotPresent
22-
tag: "0.29-16-alpine"
22+
tag: "0.31-16-alpine"
2323
# You can use distroless to avoid Remote Code Execution attacks in-cluster.
2424
# https://github.com/soketi/soketi/pull/178
25-
# tag: "0.29-16-distroless"
25+
# tag: "0.31-16-distroless"
2626

2727
# It's recommended to run the server with
2828
# maximum memory that would match the resource limits
@@ -68,6 +68,12 @@ app:
6868
# Read the documentation: https://docs.soketi.app/advanced-usage/horizontal-scaling/running-modes
6969
mode: full
7070

71+
# Multicast will enable settings for pods to support multicast.
72+
multicast:
73+
enabled: false
74+
hostNetwork: true
75+
dnsPolicy: ClusterFirstWithHostNet
76+
7177
# The Network Watcher is watching for container maximum allocated
7278
# resources and once a specific threshold is exceeded, it will tell the
7379
# soketi server to stop accepting new connections by marking the Pod

0 commit comments

Comments
 (0)