use patched helm chart k8s-at-home/bitwardenrs

This commit is contained in:
ace
2021-01-18 19:38:16 +03:00
parent c26c7c66b0
commit 2cde98435f
17 changed files with 705 additions and 175 deletions

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "bitwarden.fullname" . }}-test-connection"
labels:
{{- include "bitwarden.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "bitwarden.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never