feat: unifi-controller chart (#8)

This commit is contained in:
2023-03-26 21:16:41 +01:00
committed by GitHub
parent 1737e1b68d
commit 8cf887a0be
12 changed files with 502 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" . }}:8080']
restartPolicy: Never