Compare commits

..

2 commits

Author SHA1 Message Date
89b093b947 Merge branch 'main' of https://git.mafyuh.dev/mafyuh/kub 2024-07-08 22:31:03 -04:00
03b2c2b14f testing 2024-07-08 22:30:58 -04:00
2 changed files with 18 additions and 13 deletions

View file

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

View file

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