Attempt to use new auth proxy

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2024-03-30 17:02:24 +00:00
parent 866886975b
commit f7405c92a9
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
2 changed files with 28 additions and 1 deletions

View File

@ -1,5 +1,32 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: auth-proxy-v2
namespace: auth-proxy
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- hello.cluster.fun
secretName: non-auth-proxy-ingress
rules:
- host: hello.cluster.fun
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: auth-proxy-v2
port:
name: http
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: auth-proxy
namespace: auth-proxy

View File

@ -255,5 +255,5 @@ spec:
protocol: TCP
targetPort: 8080
selector:
app: auth-proxy
app: auth-proxy-v2
type: ClusterIP