From 4890bdb98d27fe9032022d68c4772132759e37ad Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 15 Apr 2026 20:27:30 -0500 Subject: [PATCH 1/3] feat: rename endpoints to bao --- clusters/cl01tl/helm/blocky/values.yaml | 2 +- clusters/cl01tl/helm/gatus/values.yaml | 2 +- clusters/cl01tl/helm/homepage/values.yaml | 2 +- hosts/ps08rp/blocky/config.yml | 1 + hosts/ps09rp/blocky/config.yml | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/clusters/cl01tl/helm/blocky/values.yaml b/clusters/cl01tl/helm/blocky/values.yaml index e62edcb8d..5a76c3993 100644 --- a/clusters/cl01tl/helm/blocky/values.yaml +++ b/clusters/cl01tl/helm/blocky/values.yaml @@ -106,6 +106,7 @@ blocky: audiobookshelf IN CNAME traefik-cl01tl authentik IN CNAME traefik-cl01tl backrest IN CNAME traefik-cl01tl + bao IN CNAME traefik-cl01tl bazarr IN CNAME traefik-cl01tl ceph IN CNAME traefik-cl01tl dawarich IN CNAME traefik-cl01tl @@ -141,7 +142,6 @@ blocky: objects IN CNAME traefik-cl01tl ollama IN CNAME traefik-cl01tl omni-tools IN CNAME traefik-cl01tl - openbao IN CNAME traefik-cl01tl paperless-ngx IN CNAME traefik-cl01tl plex IN CNAME traefik-cl01tl postiz-spotlight IN CNAME traefik-cl01tl diff --git a/clusters/cl01tl/helm/gatus/values.yaml b/clusters/cl01tl/helm/gatus/values.yaml index e9f856cfe..edc40aa17 100644 --- a/clusters/cl01tl/helm/gatus/values.yaml +++ b/clusters/cl01tl/helm/gatus/values.yaml @@ -267,7 +267,7 @@ gatus: url: https://vault.alexlebens.net <<: *defaults - name: openbao - url: https://openbao.alexlebens.net + url: https://bao.alexlebens.net <<: *defaults - name: backrest url: https://backrest.alexlebens.net diff --git a/clusters/cl01tl/helm/homepage/values.yaml b/clusters/cl01tl/helm/homepage/values.yaml index 0c8612fa9..7389ad7e3 100644 --- a/clusters/cl01tl/helm/homepage/values.yaml +++ b/clusters/cl01tl/helm/homepage/values.yaml @@ -640,7 +640,7 @@ homepage: - Secrets: icon: sh-openbao.webp description: OpenBao - href: https://openbao.alexlebens.net + href: https://bao.alexlebens.net siteMonitor: http://openbao.openbao:8200 statusStyle: dot namespace: openbao diff --git a/hosts/ps08rp/blocky/config.yml b/hosts/ps08rp/blocky/config.yml index 0a96949a0..f2e07aded 100644 --- a/hosts/ps08rp/blocky/config.yml +++ b/hosts/ps08rp/blocky/config.yml @@ -83,6 +83,7 @@ customDNS: audiobookshelf IN CNAME traefik-cl01tl authentik IN CNAME traefik-cl01tl backrest IN CNAME traefik-cl01tl + bao IN CNAME traefik-cl01tl bazarr IN CNAME traefik-cl01tl ceph IN CNAME traefik-cl01tl dawarich IN CNAME traefik-cl01tl diff --git a/hosts/ps09rp/blocky/config.yml b/hosts/ps09rp/blocky/config.yml index fda4757cb..bafc04bc0 100644 --- a/hosts/ps09rp/blocky/config.yml +++ b/hosts/ps09rp/blocky/config.yml @@ -104,6 +104,7 @@ customDNS: audiobookshelf IN CNAME traefik-cl01tl authentik IN CNAME traefik-cl01tl backrest IN CNAME traefik-cl01tl + bao IN CNAME traefik-cl01tl bazarr IN CNAME traefik-cl01tl ceph IN CNAME traefik-cl01tl dawarich IN CNAME traefik-cl01tl -- 2.49.1 From eee145aef6241783238ae0e8c0d9f594b921c497 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 15 Apr 2026 20:28:18 -0500 Subject: [PATCH 2/3] fix: wrong addresses --- clusters/cl01tl/helm/openbao/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clusters/cl01tl/helm/openbao/values.yaml b/clusters/cl01tl/helm/openbao/values.yaml index 02f07a61b..fa1d7ad94 100644 --- a/clusters/cl01tl/helm/openbao/values.yaml +++ b/clusters/cl01tl/helm/openbao/values.yaml @@ -18,7 +18,7 @@ openbao: tlsRoute: enabled: true hosts: - - vault.alexlebens.net + - bao.alexlebens.net apiVersion: gateway.networking.k8s.io/v1 parentRefs: - group: gateway.networking.k8s.io @@ -58,13 +58,13 @@ openbao: storage "raft" { path = "/openbao/data" retry_join { - leader_api_addr = "http://openbao-0.openbao-internal:8201" + leader_api_addr = "http://openbao-0.openbao-internal:8200" } retry_join { - leader_api_addr = "http://openbao-1.openbao-internal:8201" + leader_api_addr = "http://openbao-1.openbao-internal:8200" } retry_join { - leader_api_addr = "http://openbao-2.openbao-internal:8201" + leader_api_addr = "http://openbao-2.openbao-internal:8200" } } -- 2.49.1 From ae0d560586d410f3d9371059948d4539974834d6 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 15 Apr 2026 20:29:43 -0500 Subject: [PATCH 3/3] feat: add namespace config --- clusters/cl01tl/helm/openbao/templates/namespace.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 clusters/cl01tl/helm/openbao/templates/namespace.yaml diff --git a/clusters/cl01tl/helm/openbao/templates/namespace.yaml b/clusters/cl01tl/helm/openbao/templates/namespace.yaml new file mode 100644 index 000000000..bdd9da5a4 --- /dev/null +++ b/clusters/cl01tl/helm/openbao/templates/namespace.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: openbao + labels: + app.kubernetes.io/name: openbao + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/part-of: {{ .Release.Name }} + pod-security.kubernetes.io/audit: privileged + pod-security.kubernetes.io/enforce: privileged + pod-security.kubernetes.io/warn: privileged -- 2.49.1