add initial unifi chart

This commit is contained in:
2023-03-14 20:33:14 +00:00
parent 1737e1b68d
commit 808c970b78
10 changed files with 369 additions and 0 deletions

View File

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