Add dnsup chart v1.0.1

This commit is contained in:
wbsong111
2025-03-20 11:45:30 +09:00
parent 723bfd706e
commit d6f5d019be
10 changed files with 367 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "dnsup.fullname" . }}-test-connection"
labels:
{{- include "dnsup.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "dnsup.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never