36922a177c
traefik, gitea, adguard, nextcloud, errorpages, homepages, uptime-kuma, kener, checkmk, headscale, dockmon, metube, downtify, portainer, netronome, userbot Includes Helm values, deployments, services, ingress routes, configmaps, secrets (placeholders), postgres statefulsets, kustomize overlays, and Traefik dynamic configuration.
53 lines
954 B
YAML
53 lines
954 B
YAML
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: downtify-prod
|
|
namespace: downtify
|
|
spec:
|
|
entryPoints:
|
|
- websecure
|
|
routes:
|
|
- match: Host(`downtify.forust.xyz`)
|
|
kind: Rule
|
|
middlewares:
|
|
- name: security-chain@file
|
|
services:
|
|
- name: downtify-service
|
|
port: 8000
|
|
tls:
|
|
{}
|
|
---
|
|
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: downtify-local
|
|
namespace: downtify
|
|
spec:
|
|
entryPoints:
|
|
- websecure
|
|
routes:
|
|
- match: Host(`downtify.workstation.internal`)
|
|
kind: Rule
|
|
services:
|
|
- name: downtify-service
|
|
port: 8000
|
|
tls:
|
|
secretName: local-tls
|
|
---
|
|
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: downtify-dev
|
|
namespace: downtify
|
|
spec:
|
|
entryPoints:
|
|
- websecure
|
|
routes:
|
|
- match: Host(`downtify.gigaforust.internal`)
|
|
kind: Rule
|
|
services:
|
|
- name: downtify-service
|
|
port: 8000
|
|
tls:
|
|
secretName: local-tls
|