Skip to content

Instantly share code, notes, and snippets.

@jwsy
Last active December 21, 2021 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jwsy/5634d17e133d7fdc3045c3a2a18b652a to your computer and use it in GitHub Desktop.
Save jwsy/5634d17e133d7fdc3045c3a2a18b652a to your computer and use it in GitHub Desktop.
Script to install rancher on your macOS machine
#!/bin/bash -x
date
### 0. Install helm, kubectl (kubernetes-cli), and k3d with brew
brew install helm k3d kubectl
### 1. Create a cluster with k3d that connects port 443 to the loadbalancer provided by k3d
# Optionally install with more agents `--agents 3`
k3d cluster create k3d-rancher \
--api-port 6550 \
--servers 1 \
--image rancher/k3s:v1.20.10-k3s1 \
--port 443:443@loadbalancer \
--wait --verbose
k3d cluster list
date
### 2. Set up a kubeconfig so you can use kubectl in your current session
KUBECONFIG_FILE=~/.kube/k3d-rancher
k3d kubeconfig get k3d-rancher > $KUBECONFIG_FILE
chmod 600 $KUBECONFIG_FILE
export KUBECONFIG=$KUBECONFIG_FILE
kubectl get nodes
### 3. Install cert-manager with helm
helm repo add jetstack https://charts.jetstack.io
helm repo update
kubectl create namespace cert-manager
helm install cert-manager jetstack/cert-manager \
--namespace cert-manager \
--version v1.5.3 \
--set installCRDs=true --wait --debug
kubectl -n cert-manager rollout status deploy/cert-manager
date
### 4. Install the helm repos for rancher
helm repo add rancher-latest https://releases.rancher.com/server-charts/latest
helm repo update
kubectl create namespace cattle-system
helm install rancher rancher-latest/rancher \
--namespace cattle-system \
--version=2.6.1 \
--set hostname=rancher.localhost \
--set bootstrapPassword=congratsthanandayme \
--wait --debug
kubectl -n cattle-system rollout status deploy/rancher
kubectl -n cattle-system get all,ing
date
echo https://rancher.localhost/dashboard/?setup=$(kubectl get secret --namespace cattle-system bootstrap-secret -o go-template='{{.data.bootstrapPassword|base64decode}}')
@Piotr1215
Copy link

Thanks for the script, really helpful :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment