mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-07 16:00:29 -05:00
update
This commit is contained in:
parent
4e497f0945
commit
3b722331c9
2 changed files with 30 additions and 3 deletions
30
dmz/traefik/templates/traefik-dashboard.yaml
Normal file
30
dmz/traefik/templates/traefik-dashboard.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: traefik-ingress
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- match: Host(`traefik.durp.info`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: api@internal
|
||||
kind: TraefikService
|
||||
tls:
|
||||
secretName: traefik-tls
|
||||
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: traefik-tls
|
||||
namespace: traefik
|
||||
spec:
|
||||
secretName: traefik-tls
|
||||
issuerRef:
|
||||
name: letsencrypt-production
|
||||
kind: ClusterIssuer
|
||||
commonName: "traefik.durp.info"
|
||||
dnsNames:
|
||||
- "traefik.durp.info"
|
||||
|
|
@ -55,6 +55,3 @@ traefik:
|
|||
memory: "512Mi"
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
|
||||
logs:
|
||||
level: "DEBUG"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue