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
- Introduce config/cloud_infra.yaml as a mandatory config file for
discovery_hosts, separating it from global.yaml
- Add config/cloud_infra.example.yaml template
- Remove discovery_hosts from config/global.example.yaml
- Add named --global-vars --certs-vars params to bootstrap.sh and
validations.sh, replacing positional arguments
Copy file name to clipboardExpand all lines: config/README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,12 @@ This directory contains the configuration files needed for your enclave deployme
9
9
cd config/
10
10
cp global.example.yaml global.yaml
11
11
cp certificates.example.yaml certificates.yaml
12
+
cp cloud_infra.example.yaml cloud_infra.yaml
12
13
```
13
14
14
15
2.**Fill in `global.yaml` with your environment details**
15
16
3.**Fill in `certificates.yaml` with your SSL certificates**
17
+
4.**Fill in `cloud_infra.yaml` with your discovery hosts (or leave `discovery_hosts: []` if not needed)**
16
18
17
19
## Configuration Files
18
20
@@ -22,8 +24,11 @@ Contains all cluster and infrastructure configuration.
22
24
### `certificates.yaml` (required)
23
25
Contains SSL certificates for the cluster.
24
26
27
+
### `cloud_infra.yaml` (required)
28
+
Contains cloud infrastructure configuration, including the list of worker nodes to be discovered and added to the cluster. Set `discovery_hosts: []` if no discovery hosts are needed.
29
+
25
30
## Security
26
-
-**Never commit `global.yaml`or `certificates.yaml` to version control**
31
+
-**Never commit `global.yaml`, `certificates.yaml`or `cloud_infra.yaml` to version control**
27
32
- These files contain sensitive credentials and private keys
The discovery hosts configuration is defined in `config/global.yaml` for discovering new nodes after the initial cluster deployment. This configuration uses the same network settings (defaultDNS, defaultGateway, defaultPrefix, lzBmcIP) as the main cluster deployment.
502
+
The discovery hosts configuration is defined in `config/cloud_infra.yaml` for discovering new nodes after the initial cluster deployment. This configuration uses the same network settings (defaultDNS, defaultGateway, defaultPrefix, lzBmcIP) as the main cluster deployment.
0 commit comments