baremetal-final-minikube

This commit is contained in:
D4rk4 2020-08-02 19:08:42 +02:00
parent 0cde91ff1d
commit b4adf19dbc
19 changed files with 540 additions and 0 deletions

View file

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