updates to light onprem docs (#16811)
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
Mateusz Bularz committed
Jan 19, 2024 at 15:36 UTC
8bf8d095b8fbbe5aba4099816ce52c3939ff7415
1 file changed
+18
-9
docs/netdata-cloud-onprem/getting-started-light-poc.md
+18
-9
@@ -13,16 +13,25 @@ To install the whole environment, log in to the designated host and run:
13
```shell
14
curl https://netdata-cloud-netdata-static-content.s3.amazonaws.com/provision.sh -o provision.sh
15
chmod +x provision.sh
16
-sudo ./provision.sh --install
16
+sudo ./provision.sh install \
17
+ -key-id "" \
18
+ -access-key "" \
19
+ -onprem-license-key "" \
20
+ -onprem-license-subject "" \
21
+ -onprem-url "" \
22
+ -certificate-path "" \
23
+ -private-key-path ""
24
```
25
26
What does the script do during installation?
20
-1. Prompts user to provide:
21
- - ID and KEY for accessing the AWS (to pull helm charts and container images)
22
- - License Key
23
- - URL under which Netdata Cloud Onprem PoC is going to function (without protocol like `https://`)
24
- - Path for certificate file (PEM format)
25
- - Path for private key file (PEM format)
27
+1. Prompts for user to provide:
28
+ - `-key-id` - AWS ECR access key ID.
29
+ - `-access-key` - AWS ECR Access Key.
30
+ - `-onprem-license-key` - Netdata Cloud On-Prem license key.
31
+ - `-onprem-license-subject` - Netdata Cloud On-Prem license subject.
32
+ - `-onprem-url` - URL for the On-prem (without http(s) protocol).
33
+ - `-certificate-path` - path to your PEM encoded certificate.
34
+ - `-private-key-path` - path to your PEM encoded key.
35
2. After getting all of the information installation is starting. The script will install:
36
- Helm
37
- Kubectl
@@ -40,11 +49,11 @@ Because this is a PoC with 0 configurations required, only log in by mail can wo
49
4. You are now logged into the netdata. Add your first nodes!
50
51
##### How to remove Netdata Cloud On-Prem PoC?
43
-To uninstall the whole PoC, use the same script that installed it, with the `--uninstall` switch.
52
+To uninstall the whole PoC, use the same script that installed it, with the `uninstall` switch.
53
54
```shell
55
cd <script dir>
47
-sudo ./provision.sh --uninstall
56
+sudo ./provision.sh uninstall
57
```
58
59
#### WARNING