init commit

This commit is contained in:
2023-03-08 11:09:44 +08:00
commit b75e70eb04
25 changed files with 1172 additions and 0 deletions

View File

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