Refactor file structure

This commit is contained in:
schmelczerandras 2020-07-09 21:19:28 +02:00
parent 5f73c2ac82
commit 3f3e654ea9
26 changed files with 71 additions and 215 deletions

View file

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