2020-09-29 11:44:12 +02:00
|
|
|
# This ingress matches ALL requests to nginx.
|
2020-05-13 13:13:33 +02:00
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
2020-09-29 11:44:12 +02:00
|
|
|
name: nginx-ingress-all
|
2020-05-13 13:13:33 +02:00
|
|
|
namespace: buildkite
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/ingress.global-static-ip-name: "web-static-ip"
|
|
|
|
kubernetes.io/ingress.class: "nginx"
|
|
|
|
nginx.ingress.kubernetes.io/auth-type: basic
|
|
|
|
nginx.ingress.kubernetes.io/auth-secret: http-auth
|
|
|
|
nginx.ingress.kubernetes.io/auth-realm: "LLVM pre-merge checks"
|
|
|
|
spec:
|
|
|
|
rules:
|
2020-09-29 11:44:12 +02:00
|
|
|
- http:
|
2020-05-13 13:13:33 +02:00
|
|
|
paths:
|
|
|
|
- backend:
|
|
|
|
serviceName: phabricator-proxy
|
|
|
|
servicePort: 8080
|