Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Developer docs update #625

Merged
merged 5 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions docs/developer/developer-mode-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,20 @@ You can install Harvester on an [RKE2](https://docs.rke2.io/) cluster using the
sudo cp /etc/rancher/rke2/rke2.yaml ~/.kube/config
sudo chown $(id -u):$(id -g) ~/.kube/config
```

:::info important

Allow some time for all pods in the `kube-system` namespace to reach the `Ready` state before proceeding to the next step.

If you are unable to locate the kubectl binary in `/usr/local/bin`, check `/var/lib/rancher/rke2/bin`.

:::

1. Install system-upgrade-controller. This Kubernetes-native upgrade controller for nodes installs `upgrade.cattle.io/v1` CRDs.
```bash
kubectl apply -f https://github.com/rancher/system-upgrade-controller/releases/download/v0.13.1/system-upgrade-controller.yaml
```

:::info note
If you are unable to locate the `kubectl` binary in `/usr/local/bin`, check `/var/lib/rancher/rke2/bin`.
:::

1. Create the cattle-system namespace.
```bash
kubectl create ns cattle-system
Expand All @@ -92,6 +96,12 @@ If you are unable to locate the `kubectl` binary in `/usr/local/bin`, check `/va
--set bootstrapPassword=admin
```

:::info important

Allow some time for all pods in the `cattle-system` namespace to reach the `Ready` state before proceeding to the next step.

:::

1. Clone the `rancher/charts` repository.
```bash
git clone https://github.com/rancher/charts -b dev-v2.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,19 @@ You can install Harvester on an [RKE2](https://docs.rke2.io/) cluster using the
sudo chown $(id -u):$(id -g) ~/.kube/config
```

:::info important

Allow some time for all pods in the `kube-system` namespace to reach the `Ready` state before proceeding to the next step.

If you are unable to locate the kubectl binary in `/usr/local/bin`, check `/var/lib/rancher/rke2/bin`.

:::

1. Install system-upgrade-controller. This Kubernetes-native upgrade controller for nodes installs `upgrade.cattle.io/v1` CRDs.
```bash
kubectl apply -f https://github.com/rancher/system-upgrade-controller/releases/download/v0.13.1/system-upgrade-controller.yaml
```

:::info note
If you are unable to locate the `kubectl` binary in `/usr/local/bin`, check `/var/lib/rancher/rke2/bin`.
:::

1. Create the cattle-system namespace.
```bash
kubectl create ns cattle-system
Expand All @@ -92,6 +96,12 @@ If you are unable to locate the `kubectl` binary in `/usr/local/bin`, check `/va
--set bootstrapPassword=admin
```

:::info important

Allow some time for all pods in the `cattle-system` namespace to reach the `Ready` state before proceeding to the next step.

:::

1. Clone the `rancher/charts` repository.
```bash
git clone https://github.com/rancher/charts -b dev-v2.7
Expand Down