chore: remove fullname because it is not needed

This commit is contained in:
Tom Zaspel
2026-02-19 11:38:10 +01:00
parent b4ff2f68f8
commit dffcfb77f3
11 changed files with 31 additions and 51 deletions

View File

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