8000 Docs: added evaluation priority flags by fra98 · Pull Request #2313 · liqotech/liqo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Docs: added evaluation priority flags #2313

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

Merged
merged 1 commit into from
Feb 5, 2024
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
12 changes: 10 additions & 2 deletions docs/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,16 @@ Before listing all the parameters, we start here with some general consideration
* **`liqoctl install --values [file]`**: it accepts as input a file containing all the parameters that you want to set.
* **`liqoctl install --set [param=value]`**: it changes a single parameter, using the standard Helm syntax. Multiple parameters can be changed by issuing multiple `set` commands on the command line.

For the parameters that are updated after the initial installation (either by updating their values and re-applying the Helm chart or by re-issuing the 6351 proper `liqoctl install [--values | --set]` command), please note that not all parameters can be changed at run-time; hence, please check that the command triggered the desired effect.
A precise list of commands that can be changed at run-time is left for our future work.
The following order, which is displayed in decreasing order of priority, is used to generate the final values:

1. values provided with `--set`
2. values provided with `--values` file
3. liqoctl specific flags (e.g., `--service-type` flag)
4. provider specific values
5. chart values

For the parameters that are updated after the initial installation (either by updating their values and re-applying the Helm chart or by re-issuing the proper `liqoctl install [--values | --set]` command), please note that not all parameters can be changed at run-time; hence, please check that the command triggered the desired effect.
A precise list of commands that can be changed at run-time is left for our future work.

### Global

Expand Down
0