Skip to content

Local Setup

Aleks Volochnev edited this page Mar 2, 2021 · 7 revisions

Install Docker

Go to the following address https://hub.docker.com/editions/community/docker-ce-desktop-mac/ Click the button that says get docker and run the install.

Once the install is finished launch docker

Install Kind

mac

If homebrew is installed simply run

On Mac

brew install kind
brew install kubectl

On Linux

curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x ./kubectl
mv ./kubectl /usr/local/bin/kubectl
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.9.0/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /usr/local/bin/kind

or to install without brew simply

curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.9.0/kind-darwin-amd64

and run the process

Install helm

To install helm

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh

Clone App Repo

git clone https://github.com/datastaxdevs/k8ssandra-workshop

Start Your Kind Cluster

cd k8ssandra-workshop
kind create cluster --config ./kind-config.yaml

Next Step

Ready? Good job, let's move on! Proceed to the Step I

Clone this wiki locally