You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Bootstrap: add default config files location check
The script validates now both config files before attempting to read them
and exits with a clear message. Before this change, running bootstrap.sh
without config/global.yaml produced the "No such file or directory" bash
error.
* Add default deployment values
Add default values (in defaults/deployment.yaml) for:
- disconnected: true
- diskEncryption: false
- ocMirrorLogLevel: info
- pullSecretPath: "{{ workingDir }}/config/pull-secret.json"
The variables have been removed from config/global.example.yaml
but the defaults values can be overridden in config/global.yaml.
Copy file name to clipboardExpand all lines: docs/CONFIGURATION_REFERENCE.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -748,13 +748,15 @@ pullSecret: |
748
748
749
749
#### `pullSecretPath`
750
750
751
-
**Description**: Path to pull secret file (alternative to inline `pullSecret`).
751
+
**Description**: Path to pull secret JSON file. Defaults to `{{ workingDir }}/config/pull-secret.json`. Override in `config/global.yaml` if your pull secret is stored elsewhere.
0 commit comments