Skip to content
Merged
Changes from all commits
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
4 changes: 3 additions & 1 deletion docs/modules/ROOT/pages/how-to/use-custom-grafana.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ We recommend to fall back to `GET`.
[NOTE]
====
You need to substitute `$CA`, `$TOKEN`, and `$\{APP_NAMESPACE}` with the values of the environment variables set earlier.
You can easily display their contents using `echo`.
You can easily display their contents using `printf "%s" "$CA"`.

Note that using `echo` to output variables might mangle line breaks and could lead to the configuration failing.

Make sure to not use quotes for the custom query parameters.
Using `namespace="my-app"` will result in permission errors, use `namespace=my-app`.
Expand Down