chore: replace chart value from the _helpers.tpl and set it to bentopdf

This commit is contained in:
Tom Zaspel
2026-02-19 11:06:50 +01:00
parent 1c7cc36472
commit b4ff2f68f8
8 changed files with 33 additions and 34 deletions

View File

@@ -1,9 +1,9 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "chart.fullname" . }}-test-connection"
name: "{{ include "bentopdf.fullname" . }}-test-connection"
labels:
{{- include "chart.labels" . | nindent 4 }}
{{- include "bentopdf.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
@@ -11,5 +11,5 @@ spec:
- name: wget
image: busybox
command: ['wget']
args: ['-qO-', 'http://{{ include "chart.fullname" . }}:{{ .Values.service.port }}/']
args: ['-qO-', 'http://{{ include "bentopdf.fullname" . }}:{{ .Values.service.port }}/']
restartPolicy: Never