mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
30 lines
754 B
YAML
30 lines
754 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: pomerium-ingress
|
|
annotations:
|
|
kubernetes.io/ingress.allow-http: "false"
|
|
kubernetes.io/ingress.global-static-ip-name: pomerium
|
|
|
|
spec:
|
|
tls:
|
|
- secretName: pomerium-tls
|
|
hosts:
|
|
- "*.corp.beyondperimeter.com"
|
|
- "authenticate.corp.beyondperimeter.com"
|
|
|
|
rules:
|
|
- host: "*.corp.beyondperimeter.com"
|
|
http:
|
|
paths:
|
|
- paths:
|
|
backend:
|
|
serviceName: pomerium-proxy-service
|
|
servicePort: http
|
|
- host: "authenticate.corp.beyondperimeter.com"
|
|
http:
|
|
paths:
|
|
- paths:
|
|
backend:
|
|
serviceName: pomerium-authenticate-service
|
|
servicePort: http
|