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/nginx/service.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
410 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "pterodactyl-panel.fullname" . }}--nginx
labels:
{{- include "pterodactyl-panel.labels" . | nindent 4 }}
spec:
type: {{ .Values.nginx.service.type }}
ports:
- port: {{ .Values.nginx.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "pterodactyl-panel.selectorLabels" . | nindent 4 }}