Skip to content

Instantly share code, notes, and snippets.

@zackbradys
Last active October 5, 2023 19:43
Show Gist options
  • Save zackbradys/e758211ff20a435b8289c9906d632982 to your computer and use it in GitHub Desktop.
Save zackbradys/e758211ff20a435b8289c9906d632982 to your computer and use it in GitHub Desktop.
Effortless, Easy, and Efficient installation steps of Rancher Multi-Cluster Manager
### Add and Update the Helm Repositories
helm repo add jetstack https://charts.jetstack.io
helm repo add rancher-latest https://releases.rancher.com/server-charts/latest
helm repo update
### Create the Cert Manager Namespace and Install Cert Manager
kubectl create namespace cert-manager
helm upgrade -i cert-manager jetstack/cert-manager --namespace cert-manager --set installCRDs=true
### Wait for the deployment/rollout
sleep 60
### Verify the status of Cert Manager
kubectl get pods --namespace cert-manager
### Create the Rancher Namespace and Install Rancher
kubectl create namespace cattle-system
helm upgrade -i rancher rancher-latest/rancher --namespace cattle-system --set bootstrapPassword=Pa22word --set hostname=rancher.example.com
### Wait for the deployment/rollout
sleep 45
### Verify the status of the Rancher Manager
kubectl get pods --namespace cattle-system
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment