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"
|