File tree 4 files changed +16
-5
lines changed
4 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.15.4
18
+ version : 0.16.0
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
- appVersion : 0.29.0
23
+ appVersion : 0.31.5
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Install the soketi chart:
25
25
``` bash
26
26
$ helm upgrade soketi \
27
27
--install \
28
- --version=0.15.3 \
28
+ --version=0.16.0 \
29
29
soketi/soketi
30
30
```
31
31
Original file line number Diff line number Diff line change 31
31
32
32
terminationGracePeriodSeconds : {{ .Values.terminationGracePeriodSeconds }}
33
33
34
+ {{- if .Values.multicast.enabled }}
35
+ hostNetwork : {{ .Values.multicast.hostNetwork }}
36
+ dnsPolicy : {{ .Values.multicast.dnsPolicy }}
37
+ {{- end }}
38
+
34
39
{{- with .Values.imagePullSecrets }}
35
40
imagePullSecrets :
36
41
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 19
19
image :
20
20
repository : quay.io/soketi/soketi
21
21
pullPolicy : IfNotPresent
22
- tag : " 0.29 -16-alpine"
22
+ tag : " 0.31 -16-alpine"
23
23
# You can use distroless to avoid Remote Code Execution attacks in-cluster.
24
24
# https://github.com/soketi/soketi/pull/178
25
- # tag: "0.29 -16-distroless"
25
+ # tag: "0.31 -16-distroless"
26
26
27
27
# It's recommended to run the server with
28
28
# maximum memory that would match the resource limits
68
68
# Read the documentation: https://docs.soketi.app/advanced-usage/horizontal-scaling/running-modes
69
69
mode : full
70
70
71
+ # Multicast will enable settings for pods to support multicast.
72
+ multicast :
73
+ enabled : false
74
+ hostNetwork : true
75
+ dnsPolicy : ClusterFirstWithHostNet
76
+
71
77
# The Network Watcher is watching for container maximum allocated
72
78
# resources and once a specific threshold is exceeded, it will tell the
73
79
# soketi server to stop accepting new connections by marking the Pod
You can’t perform that action at this time.
0 commit comments