imfreedom/k8s-cluster

Update to traefik 2.4.13

2021-08-07, Gary Kramlich
df5d3f5f6707
Update to traefik 2.4.13
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: pidg-in-http-redirect
spec:
entryPoints:
- http
routes:
- match: Host(`pidg.in`) || Host(`www.pidg.in`)
kind: Rule
services:
- name: pidgin-im
port: 3000
middlewares:
- name: pidgin-redirects
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: pidg-in-https-redirect
spec:
entryPoints:
- https
routes:
- match: Host(`pidg.in`) || Host(`www.pidg.in`)
kind: Rule
services:
- name: pidgin-im
port: 3000
middlewares:
- name: hsts-headers
- name: pidgin-redirects
tls:
secretName: pidg-in-redirects-tls
---
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: pidg-in-redirects-tls
spec:
secretName: pidg-in-redirects-tls
issuerRef:
name: letsencrypt
commonName: pidg.in
dnsNames:
- pidg.in
- www.pidg.in
---