Establish clean homelab infrastructure baseline
lint / yaml (push) Has been cancelled
lint / ansible (push) Has been cancelled
lint / terraform (push) Has been cancelled

Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
This commit is contained in:
2026-09-09 16:47:20 +00:00
commit 88a02ababa
418 changed files with 50579 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Deploy tracing: VictoriaTraces (VTSingle CR, operator-managed) + the OpenTelemetry
# Collector that fronts it. Apps send OTLP to otel-collector.monitoring.svc:4317 (gRPC)
# / :4318 (HTTP); the collector batches and forwards to VictoriaTraces.
#
# NOTE: we use the operator's VTSingle CRD (traces/vtsingle.yaml) rather than the
# victoria-traces-single Helm chart — one operator manages metrics, logs, and traces.
# traces-values.yaml is kept only as a reference for the standalone-chart alternative.
set -euo pipefail
kubectl apply -f vtsingle.yaml
kubectl -n monitoring wait --for=jsonpath='{.status.updateStatus}'=operational vtsingle/main --timeout=120s || true
kubectl apply -f otel-collector.yaml