Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update values.yaml documentation and example #7135

Merged
merged 3 commits into from
Jan 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions operations/helm/charts/mimir-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,22 @@
# -- Additional structured values on top of the text based 'mimir.config'. Applied after the text based config is evaluated for templates. Enables adding and modifying YAML elements in the evaulated 'mimir.config'.
structuredConfig: {}

# Example
benoitschipper marked this conversation as resolved.
Show resolved Hide resolved
# See also the optional "insecure_skip_verify" key below, it allows you to skip_verify_false in case the s3_endpoint certificate is not trusted.
# For more information see https://grafana.com/docs/mimir/latest/references/configuration-parameters/
#
# structuredConfig:
# common:
# storage:
# backend: s3
# s3:
# bucket_name: "${BUCKET_NAME}"
# endpoint: "${BUCKET_HOST}:${BUCKET_PORT}"
# access_key_id: "${AWS_ACCESS_KEY_ID}" # This is a secret injected via an environment variable
# secret_access_key: "${AWS_SECRET_ACCESS_KEY}" # This is a secret injected via an environment variable
# http:

Check failure on line 428 in operations/helm/charts/mimir-distributed/values.yaml

View workflow job for this annotation

GitHub Actions / call-lint-test / lint-test

[trailing-spaces] trailing spaces
# insecure_skip_verify: true

# -- runtimeConfig provides a reloadable runtime configuration. Changing the runtimeConfig doesn't require a restart of all components.
# For more infromation see https://grafana.com/docs/mimir/latest/configure/about-runtime-configuration/
#
Expand Down
Loading