feat(charts): Add it-tools

This commit is contained in:
plcnk
2024-08-12 15:14:05 +02:00
committed by Romain Pluciennik
parent 7945ccb003
commit 9ca9e7e32b
14 changed files with 639 additions and 2 deletions

View File

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