From ba35dc9b328362a6b8250b30d44e9f49a9b8c0aa Mon Sep 17 00:00:00 2001 From: Finn Date: Sun, 1 Sep 2024 16:12:06 -0700 Subject: [PATCH] add openbao ingress --- k8s/operators/openbao/ingress.yaml | 18 ++++++++++++++++++ k8s/operators/openbao/kustomization.yaml | 1 + 2 files changed, 19 insertions(+) create mode 100644 k8s/operators/openbao/ingress.yaml 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