21 lines
558 B
YAML
21 lines
558 B
YAML
# Gitea Public IngressRoute
|
|
# Routes gitea.flowercore.io to internal Gitea service via Cloudflare origin cert
|
|
# ArgoCD managed - BlueJay Lab
|
|
---
|
|
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: gitea-public
|
|
namespace: gitea
|
|
spec:
|
|
entryPoints:
|
|
- websecure
|
|
routes:
|
|
- match: Host(`gitea.flowercore.io`) && (Method(`GET`) || Method(`HEAD`) || Method(`POST`) || Method(`OPTIONS`))
|
|
kind: Rule
|
|
services:
|
|
- name: gitea-http
|
|
port: 3000
|
|
tls:
|
|
secretName: cf-origin-flowercore-io
|