Add helm chart for the project

This commit is contained in:
2021-12-25 22:05:11 +01:00
parent 78188f1720
commit 1860549f6c
11 changed files with 387 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "nikita-tokarch-uk.fullname" . }}-test-connection"
labels:
{{- include "nikita-tokarch-uk.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "nikita-tokarch-uk.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never