xray-docs/helm/values.yaml

70 lines
1.4 KiB
YAML
Raw Normal View History

2025-01-18 10:59:15 +00:00
---
shortcuts:
hostname: xray-docs.badhouseplants.net
base:
workload:
kind: Deployment
strategy:
type: RollingUpdate
containers:
xray-docs:
image:
registry: zot.badhouseplants.net
repository: badhouseplants/xray-docs
tag: latest
pullPolicy: Always
ports:
main:
- http
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 3
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 3
2025-01-18 12:56:19 +00:00
volumeMounts:
extraVolumes:
cache:
path: /var/cache/nginx
extraVolumes:
cache:
emptyDir: {}
2025-01-18 10:59:15 +00:00
ingress:
main:
enabled: true
class: traefik
rules:
- host: "{{ .Values.shortcuts.hostname }}"
http:
paths:
- backend:
service:
name: '{{ include "chart.fullname" $ }}-main'
port:
number: 80
path: /
pathType: Prefix
tls:
- hosts:
- "{{ .Values.shortcuts.hostname }}"
secretName: "{{ .Values.shortcuts.hostname }}"
extraVolumes:
logs:
emptyDir: {}
services:
main:
enabled: true
type: ClusterIP
ports:
http:
port: 80
targetPort: 80
protocol: TCP