Skip to content

Commit

Permalink
Update minikube and kubectl instructions
Browse files Browse the repository at this point in the history
- Update minikube to 1.34.0
- Update kubectl to 1.31.3
- Add copyable instructions for kubectl
- Unify order of instructions in test/README.md and
  docs/user-quick-start.md.

Signed-off-by: Nir Soffer <[email protected]>
  • Loading branch information
nirs authored and raghavendra-talur committed Dec 11, 2024
1 parent 1c58d80 commit f1f154e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
19 changes: 13 additions & 6 deletions docs/user-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,25 @@ enough resources:

For more information see [Virtualization on Fedora](https://docs.fedoraproject.org/en-US/quick-docs/virtualization-getting-started/).

1. Install the `kubectl` tool. See
[Install and Set Up kubectl on Linux](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/)
for details.
Tested with version v1.30.2.

1. Install minikube - on Fedora you can use::

```
sudo dnf install https://storage.googleapis.com/minikube/releases/latest/minikube-latest.x86_64.rpm
```

Tested with version v1.33.1.
Tested with version v1.34.0.

1. Install the `kubectl` tool

```
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install kubectl /usr/local/bin
rm kubectl
```

For more info see
[Install and Set Up kubectl on Linux](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/)
Tested with version v1.31.3.

1. Validate the installation

Expand Down
14 changes: 11 additions & 3 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,19 @@ environment.
sudo dnf install https://storage.googleapis.com/minikube/releases/latest/minikube-latest.x86_64.rpm
```

Tested with version v1.33.1.
Tested with version v1.34.0.

1. Install the `kubectl` tool. See
1. Install the `kubectl` tool

```
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install kubectl /usr/local/bin
rm kubectl
```

For more info see
[Install and Set Up kubectl on Linux](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/)
Tested with version v1.30.2.
Tested with version v1.31.3.

1. Install `clusteradm` tool. See
[Install clusteradm CLI tool](https://open-cluster-management.io/getting-started/installation/start-the-control-plane/#install-clusteradm-cli-tool)
Expand Down

0 comments on commit f1f154e

Please sign in to comment.