xray-docs/helm/values.yaml
Nikolai Rodionov 68f395e0aa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update the helm chart
2025-01-18 14:00:17 +01:00

67 lines
1.4 KiB
YAML

---
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
volumeMounts:
extraVolumes:
cache:
path: /var/cache/nginx
extraVolumes:
cache:
emptyDir: {}
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 }}"
services:
main:
enabled: true
type: ClusterIP
ports:
http:
port: 80
targetPort: 80
protocol: TCP