- 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
18 lines
574 B
YAML
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"
|