mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
31 lines
906 B
YAML
31 lines
906 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: buildify-ingress
|
|
namespace: buildify
|
|
annotations:
|
|
external-dns.alpha.kubernetes.io/hostname: buildify.phexhub-np.int.bayer.com
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
|
|
nginx.ingress.kubernetes.io/auth-type: basic
|
|
nginx.ingress.kubernetes.io/auth-secret: basic-auth
|
|
nginx.ingress.kubernetes.io/auth-realm: "Authentication Required"
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: buildify.phexhub-np.int.bayer.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: buildify
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- buildify.phexhub-np.int.bayer.com
|
|
secretName: buildify-phexhub-dev-cluster-tls
|