Some checks are pending
Release Docs / Release Docs (push) Waiting to run
Release / Build and publish a Docker image / build-and-push-image (push) Waiting to run
15 lines
409 B
YAML
15 lines
409 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "pterodactyl-panel.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "pterodactyl-panel.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "pterodactyl-panel.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|