Skip to content
Snippets Groups Projects

Helm Config

Merged Alexander Tim Hobelsberger requested to merge skalierbarkeit into main
44 files
+ 1207
5
Compare changes
  • Side-by-side
  • Inline
Files
44
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "cloud_computing_helm.fullname" . }}-test-connection"
labels:
{{- include "cloud_computing_helm.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "cloud_computing_helm.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never
Loading