- Changed all namespace block sizes to 1h (was 2h/12h/24h in manifests, 30d+ in the live cluster due to backfill-era bufferPast hacks) - Deleted entire backfill/ directory (scripts, pods, runbooks) - Removed stale 05-m3coordinator.yaml (had backfill namespaces) - Added 05-m3coordinator-deployment.yaml to kustomization - Fixed init job health check (/health instead of /api/v1/services/m3db/health) - Updated .env.example (removed Mimir credentials) - Added 'Why Backfill Doesn't Work' section to README
15 lines
422 B
Plaintext
15 lines
422 B
Plaintext
# M3DB Cluster Credentials
|
|
# ========================
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# M3DB Basic Auth (coordinator API access)
|
|
M3DB_USERNAME=<your-m3db-username>
|
|
M3DB_PASSWORD=<your-m3db-password>
|
|
|
|
# Grafana Admin
|
|
GRAFANA_ADMIN_PASSWORD=<your-grafana-admin-password>
|
|
|
|
# M3DB Basic Auth (htpasswd base64)
|
|
# Generate with: echo -n "username:password" | base64
|
|
M3DB_HTPASSWD_B64=<base64-encoded-htpasswd>
|