feat: add chart releaser Github action (#1)

This commit is contained in:
2022-12-03 18:12:04 +00:00
committed by GitHub
parent 5a3bb57b1f
commit 458dbf4dbd
12 changed files with 32 additions and 0 deletions

View File

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