1
0
Fork 0
This repository has been archived on 2025-08-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pterodactyl-on-k8s/charts/pterodactyl-panel/templates/tests/test-connection.yaml
Vojtech Mares eeada0e25d
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
chore: wip
2024-05-01 07:47:42 +02:00

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