Add second ingress for atst that is passthrough

Used for CAC auth so SSL termination and client cert validation can be
done by the app
This commit is contained in:
Devon Mackay 2018-07-27 10:55:56 -04:00
parent c756afec8e
commit 87f3c1117e

View File

@ -65,3 +65,21 @@ spec:
backend:
serviceName: atst
servicePort: 80
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: atst-cac
namespace: atat
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 10m
ingress.kubernetes.io/ssl-passthrough: "true"
spec:
rules:
- host: cac.atat.codes
http:
paths:
- path: /
backend:
serviceName: atst
servicePort: 443