Skip to content
Snippets Groups Projects

Feat: remade project launching to be possible via helm chart

Merged Rokas Stankunas requested to merge 20-repackage-application-with-a-helm-chart into main
18 files
+ 557
0
Compare changes
  • Side-by-side
  • Inline
Files
18
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "todo-app.fullname" . }}-test-connection"
labels:
{{- include "todo-app.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "todo-app.fullname" . }}:3000']
restartPolicy: Never
Loading