You need two CLIs on your local workstation (or directly on the Linux VM):
- kubectl — talks to the cluster
- Helm 3 — installs the chart
The Publisher itself runs in-cluster. You only need these tools where
you’ll runhelm installfrom.
Linux / macOS
1 | # kubectl |
On macOS, swap linux/amd64 for darwin/arm64 (Apple Silicon) ordarwin/amd64 (Intel), or just use Homebrew:
1 | brew install kubectl helm |
Windows (PowerShell)
1 | winget install -e --id Kubernetes.kubectl |
Verify
1 | kubectl version --client |
Both should print versions and exit cleanly. Next: spin up a cluster.