fix(vaultwarden): correct ws service definition (#2593)

* Update common.yaml

* Update Chart.yaml
This commit is contained in:
Kjeld Schouten-Lebbing
2022-05-01 16:11:53 +02:00
committed by GitHub
parent 355ac0e7a2
commit c44c517a95
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ name: vaultwarden
sources:
- https://github.com/dani-garcia/vaultwarden
type: application
version: 14.0.16
version: 14.0.17
annotations:
truecharts.org/catagories: |
- security
@@ -10,12 +10,13 @@
{{/* Define path for websocket */}}
{{- define "vaultwarden.websocket" -}}
{{- $fullname := include "common.names.fullname" . -}}
path: "/notifications/hub"
# -- Ignored if not kubeVersion >= 1.14-0
pathType: Prefix
service:
# -- Overrides the service name reference for this path
name: ws
name: {{ printf "%s-ws" $fullname }}
port: {{ .Values.service.ws.ports.ws.port }}
{{- end -}}