diff --git a/k8s/operators/openbao/ingress.yaml b/k8s/operators/openbao/ingress.yaml new file mode 100644 index 0000000..bdb5a09 --- /dev/null +++ b/k8s/operators/openbao/ingress.yaml @@ -0,0 +1,18 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: openbao + labels: + name: openbao +spec: + rules: + - host: openbao.k8s.home.finn.io + http: + paths: + - pathType: Prefix + path: "/" + backend: + service: + name: openbao + port: + number: 8200 diff --git a/k8s/operators/openbao/kustomization.yaml b/k8s/operators/openbao/kustomization.yaml index 456d166..cde9d5f 100644 --- a/k8s/operators/openbao/kustomization.yaml +++ b/k8s/operators/openbao/kustomization.yaml @@ -4,6 +4,7 @@ namespace: openbao resources: - namespace.yaml - bundle.yaml + - ingress.yaml patches: - target: kind: Pod