This commit is contained in:
2024-08-23 13:03:51 +02:00
parent 20ebb398ec
commit 0d7bcbc1c3
14 changed files with 506 additions and 0 deletions

View File

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