mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00

* Initial helm chart configuration * configure config map with beelzebub configuration * edit README.md add helm docs * configured config maps *parametric configmaps using values.yaml * addd services confgiuration by chart values * update readme.md
16 lines
403 B
YAML
16 lines
403 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "beelzebub-chart.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "beelzebub-chart.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "beelzebub-chart.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|