@cryptotaxi247 / netdata-1 / commits / 7a73af1da

Docs: getting started with netdata cloud onprem (#15954)

* Docs: getting started with netdata cloud onprem * Update docs/netdata-cloud-onprem/getting-started.md Co-authored-by: Andrew Maguire <andrewm4894@gmail.com> --------- Co-authored-by: Andrew Maguire <andrewm4894@gmail.com>

Mateusz Bularz committed Nov 7, 2023 at 12:41 UTC 7a73af1da1f775c2eb83d1856b687d68f30d6ee9
1 file changed +20
docs/netdata-cloud-onprem/getting-started.md new
+20
@@ -0,0 +1,20 @@
1 +# Getting started with Netdata Cloud On-Prem
2 +Helm chart for the Netdata Cloud On-Prem installation on Kubernetes is available at ECR registry.
3 +ECR registry is private, so you need to login first. Credentials are sent by our Product team. If you do not have them, please contact our marketing team - info@netdata.cloud.
4 +
5 +Firstly credentials must be set for authentication with AWS's ECR:
6 +```bash
7 +export AWS_ACCESS_KEY_ID=<your_secret_id>
8 +export AWS_SECRET_ACCESS_KEY=<your_secret_key>
9 +```
10 +Than login with helm:
11 +```bash
12 +aws ecr get-login-password --region us-east-1 | helm registry login --username AWS --password-stdin 362923047827.dkr.ecr.us-east-1.amazonaws.com/netdata-cloud-onprem
13 +```
14 +
15 +After this step you should be able to add the repository to your helm or just pull the helm chart:
16 +```bash
17 +helm pull oci://362923047827.dkr.ecr.us-east-1.amazonaws.com/netdata-cloud-onprem
18 +```
19 +
20 +Further instructions on how to proceed with the installation are located in the `README.md` file in the chart directory.
\ No newline at end of file