-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
grafana/mimir
#2017Description
Currently the only supported option is located in the Nginx values path:
# Configuration for nginx gateway
nginx:
# -- Environment variables to add to the nginx pods
extraEnv: []
# -- Environment variables from secrets or configmaps to add to the nginx pods
extraEnvFrom: []
Given I am using s3
as the blocks_storage
I would like to set the S3 credentials as environment variables as such in the config:
ingester:
extraEnvFrom:
- secretRef:
name: s3-auth
mimir:
config: |
blocks_storage:
backend: s3
tsdb:
dir: /data/tsdb
bucket_store:
sync_dir: /data/tsdb-sync
s3:
endpoint: <endpoint>
bucket_name: <bucket>
access_key_id: ${S3_ACCESS_KEY}
secret_access_key: ${S3_ACCESS_SECRET}
insecure: true
Given this configuration is needed by the ingester
and I believe other services, is there a way for this to work with the chart? I know loki-distributed has this capability and we currently do that there. Or am I missing something with the current implementation?
Metadata
Metadata
Assignees
Labels
No labels