[DOC] Make Obs as Code docs public (#104843)

Co-authored-by: Isabel Matwawana <isabel.matwawana@grafana.com>
This commit is contained in:
Kim Nylander
2025-05-05 16:19:17 +02:00
committed by GitHub
co-authored by Isabel Matwawana
parent c90e2e8e5e
commit bad3d7c2db
11 changed files with 4 additions and 66 deletions
@@ -1,7 +1,4 @@
---
_build:
list: false
noindex: true
cascade:
noindex: true
description: Overview of Grafana CLI, a command line tool for managing Grafana resources as code.
@@ -1,7 +1,4 @@
---
_build:
list: false
noindex: true
cascade:
noindex: true
description: Learn more about the supported workflows and use cases for Grafana CLI
@@ -1,7 +1,4 @@
---
_build:
list: false
noindex: true
cascade:
noindex: true
description: Installation guide for Grafana CLI, a command line tool for managing Grafana Observability as Code
@@ -1,7 +1,4 @@
---
_build:
list: false
noindex: true
cascade:
noindex: true
description: Configuration guide for Grafana CLI, a command line tool for managing Grafana resources as code.
@@ -80,11 +77,11 @@ In these examples, `default` and `staging` are the names of the contexts.
Grafana CLI stores its configuration in a YAML file. The CLI determines the configuration file location in the following order:
1. If the `--config` flag is provided, the specified file is used.
2. If `$XDG_CONFIG_HOME` is set:
2. If `$XDG_CONFIG_HOME` is set:
`$XDG_CONFIG_HOME/grafanactl/config.yaml`
3. If `$HOME` is set:
3. If `$HOME` is set:
`$HOME/.config/grafanactl/config.yaml`
4. If `$XDG_CONFIG_DIRS` is set:
4. If `$XDG_CONFIG_DIRS` is set:
`$XDG_CONFIG_DIRS/grafanactl/config.yaml`
{{< admonition type="note" >}}