adicionando readme

This commit is contained in:
2022-07-27 19:55:34 -03:00
parent 236faad9b2
commit b84ac203b4
12 changed files with 405 additions and 0 deletions

View File

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