Skip to content

Commit

Permalink
Added example of Real K8s Cluster to installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dkosteck committed Jun 25, 2024
1 parent 03ef6be commit 3f5338e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions content/en/docs/guides/install-guides/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,21 @@ sudo netplan apply
```

### Kick Off an Installation on VM
The below commands make assumptions of GitHub path, GitHub branch/tag, username, K8s context, etc. See the table of variables below to change installation parameters and make changes to commands as needed.

**Kind Cluster**

Log onto your VM and run the following command :

```bash
wget -O - https://raw.githubusercontent.com/nephio-project/test-infra/v2.0.0/e2e/provision/init.sh | \
sudo NEPHIO_DEBUG=false \
NEPHIO_BRANCH=v2.0.0 \
NEPHIO_USER=ubuntu \
bash
```

**Real K8s Cluster**

Log onto your VM and run the following command:

Expand All @@ -104,6 +119,9 @@ wget -O - https://raw.githubusercontent.com/nephio-project/test-infra/v2.0.0/e2e
sudo NEPHIO_DEBUG=false \
NEPHIO_BRANCH=v2.0.0 \
NEPHIO_USER=ubuntu \
DOCKERHUB_USERNAME=username \
DOCKERHUB_PASSWORD=password \
K8S_CONTEXT=kubernetes-admin@kubernetes \
bash
```

Expand Down

0 comments on commit 3f5338e

Please sign in to comment.