Kubernetes Quickstart
Estimated time: 6 minutes, 8 minutes with buffer.
Installing Tooling
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectlwget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bashCreating and Configuring a Cluster
k3d cluster create hello-world-clusterkubectl config current-contextkubectl config use-context k3d-hello-world-clusterkubectl create -f https://raw.githubusercontent.com/ROCm/k8s-device-plugin/master/k8s-ds-amdgpu-dp.yaml
kubectl create -f https://raw.githubusercontent.com/ROCm/k8s-device-plugin/master/k8s-ds-amdgpu-labeller.yamlTeardown
Last updated

