From b1a00d0395d298e46ed679b6564a3548516c025f Mon Sep 17 00:00:00 2001 From: Daniel Sy Date: Fri, 19 Jun 2026 15:28:03 +0200 Subject: [PATCH] =?UTF-8?q?fix(observability):=20=F0=9F=90=9B=20add=20miss?= =?UTF-8?q?ing=20simple-user-secret=20to=20hub=20observability=20stack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hub's VMUser (vmauth.yaml) references simple-user-secret via passwordRef, but the Secret was never added to the hub's manifests. Without this Secret, the VM operator cannot reconcile the VMUser into the vmauth config, causing ALL requests to fall through to the unauthorizedUser catch-all (vmsingle). Result: Vector log shipping to VictoriaLogs was broken — vmauth routed /insert/elasticsearch/_bulk to vmsingle instead of vlogs-victorialogs. --- .../victoria-k8s-stack/manifests/simple-user-secret.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 otc/observability.buildth.ing/stacks/observability/victoria-k8s-stack/manifests/simple-user-secret.yaml diff --git a/otc/observability.buildth.ing/stacks/observability/victoria-k8s-stack/manifests/simple-user-secret.yaml b/otc/observability.buildth.ing/stacks/observability/victoria-k8s-stack/manifests/simple-user-secret.yaml new file mode 100644 index 0000000..7013863 --- /dev/null +++ b/otc/observability.buildth.ing/stacks/observability/victoria-k8s-stack/manifests/simple-user-secret.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Secret +metadata: + name: simple-user-secret + namespace: observability +type: Opaque +data: + username: c2ltcGxlLXVzZXI= + password: c3g1Z0M3b29XYVdPT0R3RA==