Some checks are pending
Vendor-coupling guardrail / Vendor-coupling guardrail (push) Waiting to run
Cluster bootstrap-kit drift guardrail / Detect bootstrap-kit drift (push) Waiting to run
Phase-8a preflight C — Cilium Gateway HTTPRoute admission / Preflight Cilium HTTPRoute admission (push) Waiting to run
Test — Bootstrap Kit (kind cluster + Flux) / dependency-graph-audit (push) Waiting to run
Test — Bootstrap Kit (kind cluster + Flux) / pin-sync-audit (push) Waiting to run
Test — Bootstrap Kit (kind cluster + Flux) / manifest-validation (push) Blocked by required conditions
Test — Bootstrap Kit (kind cluster + Flux) / kind-reconciliation (push) Blocked by required conditions
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
# bp-tempo — Catalyst Blueprint #24 (W2.K2 Observability batch).
|
|
# Grafana Tempo — distributed tracing storage tier of the LGTM stack.
|
|
# Default deployment shape is single-binary (one Tempo StatefulSet) —
|
|
# minimum operational cost for a Solo Sovereign.
|
|
#
|
|
# Wrapper chart: platform/tempo/chart/
|
|
# Reconciled by: Flux on the new Sovereign's k3s control plane, AFTER
|
|
# bp-seaweedfs is Ready (Tempo trace blocks live on S3).
|
|
#
|
|
# dependsOn:
|
|
# - bp-seaweedfs (slot 18) — Tempo blocks live on SeaweedFS S3.
|
|
# Without SeaweedFS Ready, Tempo cannot persist spans.
|
|
#
|
|
# disableWait: Tempo single-binary StatefulSet becomes Ready after
|
|
# creating the S3 bucket and initialising the WAL — both require
|
|
# bp-seaweedfs to be fully reconciled. Helm `--wait` would block on
|
|
# the rollout, which the HelmRelease cannot influence.
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: tempo
|
|
labels:
|
|
catalyst.openova.io/sovereign: ${SOVEREIGN_FQDN}
|
|
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
|
kind: HelmRepository
|
|
metadata:
|
|
name: bp-tempo
|
|
namespace: flux-system
|
|
spec:
|
|
type: oci
|
|
interval: 15m
|
|
url: oci://registry.t38.omani.works/openova-io
|
|
secretRef:
|
|
name: ghcr-pull
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: bp-tempo
|
|
namespace: flux-system
|
|
labels:
|
|
catalyst.openova.io/slot: "24"
|
|
spec:
|
|
interval: 15m
|
|
timeout: 15m
|
|
releaseName: tempo
|
|
targetNamespace: tempo
|
|
dependsOn:
|
|
- name: bp-seaweedfs
|
|
chart:
|
|
spec:
|
|
chart: bp-tempo
|
|
version: 1.0.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bp-tempo
|
|
namespace: flux-system
|
|
install:
|
|
timeout: 15m
|
|
disableWait: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
timeout: 15m
|
|
disableWait: true
|
|
remediation:
|
|
retries: 3
|