Files
m3db-vke-setup/victoriametrics/05-backfill-secrets.yaml
biondizzle bf6d62b9a8 Add VictoriaMetrics for historical metrics (Mar 13+)
- Single-node VM deployment with 200Gi NVMe, 2y retention
- Traefik IngressRoute at vm.vultrlabs.dev (TLS + basic auth)
- Backfill script: pulls vLLM/DCGM metrics from Mimir, writes to VM
- Retain StorageClass so historical data survives PVC deletion
- README with deployment + Grafana mixed-datasource instructions
2026-04-09 19:29:18 +00:00

18 lines
574 B
YAML

##############################################################################
# Secrets for backfill (Mimir credentials)
# IMPORTANT: Update the password before running!
#
# To create the secret:
# kubectl create secret generic backfill-credentials \
# --from-literal=mimir-password='YOUR_PASSWORD' -n victoriametrics
##############################################################################
apiVersion: v1
kind: Secret
metadata:
name: backfill-credentials
namespace: victoriametrics
type: Opaque
stringData:
mimir-password: "REPLACE_WITH_MIMIR_PASSWORD"