feat(eso): chart 0.6.0 - ESO subchart + ClusterSecretStore + gitea-archive-pull ExternalSecret

Phase 1 of Item #9 (Tower-stamped Secrets → ESO + OpenBao migration).
Replaces Tower's imperative kubectl-stamp of gitea-archive-pull with
a declarative ExternalSecret synced from OpenBao at v3/platform/gitea-
archive-pull. Other 4 Tower-stamped Secrets (cloudflare, s3-backup,
longhorn-s3, docker-mirror-pull) remain on legacy path.

Tower must pass externalSecrets.openbao.mountPath as a per-cluster
helm parameter (kubernetes-<server-name>) for ESO to activate; chart
guards against unset mountPath via {{ if }} in both new templates.
This commit is contained in:
OdooSky v3
2026-05-07 20:46:22 +03:00
parent f50156d99d
commit 536cb72a72
6 changed files with 120 additions and 2 deletions

15
Chart.lock Normal file
View File

@@ -0,0 +1,15 @@
dependencies:
- name: cert-manager
repository: https://charts.jetstack.io
version: v1.16.1
- name: traefik
repository: https://traefik.github.io/charts
version: 33.2.1
- name: longhorn
repository: https://charts.longhorn.io
version: 1.7.2
- name: external-secrets
repository: https://charts.external-secrets.io
version: 0.10.7
digest: sha256:7b35cac211af5d24103b3d1f94be2c1bbf9c6ce29574674d454d3060482e48ee
generated: "2026-05-07T20:39:30.022767+03:00"

View File

@@ -23,8 +23,8 @@ description: |
Git). Git).
type: application type: application
version: 0.5.7 version: 0.6.0
appVersion: "0.5.7" appVersion: "0.6.0"
dependencies: dependencies:
- name: cert-manager - name: cert-manager
@@ -44,3 +44,12 @@ dependencies:
version: "1.7.2" version: "1.7.2"
repository: "https://charts.longhorn.io" repository: "https://charts.longhorn.io"
condition: longhorn.enabled condition: longhorn.enabled
# External Secrets Operator — declarative Secret delivery from
# OpenBao. Replaces Tower's imperative kubectl-stamp pattern for
# gitea-archive-pull (Phase 1 pilot, 2026-05-07). The other 4
# Tower-stamped Secrets remain on the legacy path until a planned
# follow-up sprint (Item #9 in v3 open queue).
- name: external-secrets
version: "0.10.7"
repository: "https://charts.external-secrets.io"
condition: externalSecrets.enabled

Binary file not shown.

View File

@@ -0,0 +1,37 @@
{{- if .Values.externalSecrets.enabled }}
{{- if .Values.externalSecrets.openbao.mountPath }}
# ExternalSecret — declarative replacement for Tower's imperative
# kubectl-stamp of `gitea-archive-pull` (server_adapters.go was the
# previous owner; removed in tower:0.76.20). The K8s Secret produced
# in odoosky-system has the same name + key shape (`token`) the
# addon-build init container expects, so consumer code is unchanged.
#
# refreshInterval=0 → ESO does NOT poll OpenBao on a schedule. Token
# rotation is operator-driven: `bao kv put v3/platform/gitea-archive-pull
# token=NEW_VALUE`, then bump an annotation on this CR to force a
# resync (`kubectl annotate externalsecret gitea-archive-pull -n
# odoosky-system rotate=$(date +%s) --overwrite`). Saves audit-log
# noise for a token that rotates quarterly at most.
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: gitea-archive-pull
namespace: odoosky-system
labels:
app.kubernetes.io/managed-by: cluster-platform-v3
spec:
refreshInterval: "0"
secretStoreRef:
name: openbao-platform
kind: ClusterSecretStore
target:
name: gitea-archive-pull
creationPolicy: Owner
deletionPolicy: Retain
data:
- secretKey: token
remoteRef:
key: platform/gitea-archive-pull
property: token
{{- end }}
{{- end }}

View File

@@ -0,0 +1,33 @@
{{- if .Values.externalSecrets.enabled }}
{{- if .Values.externalSecrets.openbao.mountPath }}
# ClusterSecretStore — single store per cluster, namespace-spanning so a
# tenants-namespace ExternalSecret can also reference it (current Phase 1
# scope only writes to odoosky-system, but downstream phases will fan to
# tenants ns for s3-backup-creds).
#
# auth.kubernetes.mountPath is per-cluster (Tower passes
# `kubernetes-<cluster-name>` as a helm parameter). Each cluster
# authenticates against its own OpenBao auth mount, with the
# `eso-platform-read` policy bound to the role. ServiceAccount
# `external-secrets` is created by the ESO subchart in odoosky-system.
apiVersion: external-secrets.io/v1beta1
kind: ClusterSecretStore
metadata:
name: openbao-platform
labels:
app.kubernetes.io/managed-by: cluster-platform-v3
spec:
provider:
vault:
server: {{ .Values.externalSecrets.openbao.server | quote }}
path: "v3"
version: "v2"
auth:
kubernetes:
mountPath: {{ .Values.externalSecrets.openbao.mountPath | quote }}
role: {{ .Values.externalSecrets.openbao.role | default "eso" | quote }}
serviceAccountRef:
name: external-secrets
namespace: odoosky-system
{{- end }}
{{- end }}

View File

@@ -255,3 +255,27 @@ longhorn:
persistence: persistence:
defaultClass: false defaultClass: false
defaultClassReplicaCount: 1 defaultClassReplicaCount: 1
# externalSecrets — pilot delivery path for platform-scope Secrets
# previously kubectl-stamped by Tower. 2026-05-07 Phase 1 scope:
# `gitea-archive-pull` only. The other 4 Tower-stamped Secrets stay
# on the legacy path until a dedicated sprint (Item #9, v3 open
# queue).
#
# .openbao.mountPath is per-cluster — Tower passes this as a helm
# parameter so each tenant cluster's ESO authenticates against its
# own OpenBao auth mount (`auth/kubernetes-<cluster>`). Empty default
# means "off"; new clusters with no Tower wiring stay legacy.
externalSecrets:
enabled: true
openbao:
server: "https://vault.odoosky.org"
mountPath: "" # Tower fills this per-cluster, e.g. "kubernetes-customer1"
role: "eso"
# external-secrets — values passed THROUGH to the upstream subchart
# (Chart.yaml dependency name = "external-secrets"). CRDs install on
# first apply. Resource limits conservative — ESO is event-driven
# and idle most of the time.
external-secrets:
installCRDs: true