Commit 8f1b6f0a authored by garciadeblas's avatar garciadeblas
Browse files

Minor update in 06-advanced-cluster-management.md related to custom_env_vars

parent 5b010fa0
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -643,9 +643,12 @@ Exposed variables can be replaced with the directive `custom_env_vars` at instan
- KSU name, which will replace APPNAME in the `templates` folder. It is always defined.
- `namespace`, which will replace TARGET_NS in the `templates` folder. If not defined, it defaults to `default`.

The rest of exposed variables can be provided at instantiation time, like this:
The rest of exposed variables can be provided at instantiation time under `custom_env_vars`.

The following example shows how to set `TARGET_NS` via `namespace` and how to set other `custom_env_vars`:

```yaml
namespace: mynamespace
custom_env_vars:
  ECHO_MESSAGE: hello to everybody
```