Skip to content

Commit

Permalink
- Updated chart
Browse files Browse the repository at this point in the history
- Multicast settings
  • Loading branch information
rennokki committed Mar 4, 2022
1 parent 7e58f43 commit 725f8b0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/soketi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.15.4
version: 0.16.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.29.0
appVersion: 0.31.5
2 changes: 1 addition & 1 deletion charts/soketi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Install the soketi chart:
```bash
$ helm upgrade soketi \
--install \
--version=0.15.3 \
--version=0.16.0 \
soketi/soketi
```

Expand Down
5 changes: 5 additions & 0 deletions charts/soketi/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ spec:

terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}

{{- if .Values.multicast.enabled }}
hostNetwork: {{ .Values.multicast.hostNetwork }}
dnsPolicy: {{ .Values.multicast.dnsPolicy }}
{{- end }}

{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
10 changes: 8 additions & 2 deletions charts/soketi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ app:
image:
repository: quay.io/soketi/soketi
pullPolicy: IfNotPresent
tag: "0.29-16-alpine"
tag: "0.31-16-alpine"
# You can use distroless to avoid Remote Code Execution attacks in-cluster.
# https://github.com/soketi/soketi/pull/178
# tag: "0.29-16-distroless"
# tag: "0.31-16-distroless"

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

# Multicast will enable settings for pods to support multicast.
multicast:
enabled: false
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet

# The Network Watcher is watching for container maximum allocated
# resources and once a specific threshold is exceeded, it will tell the
# soketi server to stop accepting new connections by marking the Pod
Expand Down

0 comments on commit 725f8b0

Please sign in to comment.