Compare commits

..

No commits in common. "89b093b947b918378c8a83b03a3005d8f3be514c" and "9335c045cd83fd95388dc69787a921ffd421a7d2" have entirely different histories.

2 changed files with 13 additions and 18 deletions

View file

@ -1,4 +1,3 @@
# all invalid values, pushed to git for testing with flux.
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:

View file

@ -74,30 +74,26 @@ spec:
protocol: TCP protocol: TCP
type: ClusterIP type: ClusterIP
--- ---
apiVersion: networking.k8s.io/v1 apiVersion: traefik.io/v1alpha1
kind: Ingress kind: IngressRoute
metadata: metadata:
name: bazarr name: bazarr
namespace: default namespace: default
annotations: annotations:
kubernetes.io/ingress.class: traefik-external kubernetes.io/ingress.class: traefik-external
spec: spec:
rules: entryPoints:
- host: "bazarr.${LOCAL_DOMAIN}" - websecure
http: routes:
paths: - match: Host(`bazarr.${LOCAL_DOMAIN}`)
- path: / kind: Rule
pathType: Prefix services:
backend: - name: headless-bazarr
service: port: 6767
name: headless-bazarr middlewares:
port: - name: default-headers
number: 6767
tls: tls:
- hosts: secretName: local-mafyuh-com-production-tls
- "bazarr.${LOCAL_DOMAIN}"
secretName: local-mafyuh-com-production-tls
--- ---
apiVersion: traefik.io/v1alpha1 apiVersion: traefik.io/v1alpha1
kind: IngressRoute kind: IngressRoute