0b73242b65
Most ingresses annotations should be work with small changes.
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
oceanbox.io/expose: internal
|
|
name: hubble-ui
|
|
namespace: kube-system
|
|
spec:
|
|
ingressClassName: haproxy
|
|
rules:
|
|
- host: hubble.hel1.oceanbox.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: hubble-ui
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: Prefix
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
oceanbox.io/expose: internal
|
|
name: hubble-ui-oauth2-proxy
|
|
namespace: kube-system
|
|
spec:
|
|
ingressClassName: haproxy
|
|
rules:
|
|
- host: hubble.hel1.oceanbox.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: oauth2-proxy
|
|
port:
|
|
name: http
|
|
path: /oauth2
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- hubble.hel1.oceanbox.io
|
|
secretName: hubble-tls
|