Skip to content

Instantly share code, notes, and snippets.

@superseb
Last active June 27, 2017 09:57
Show Gist options
  • Save superseb/9abc68b97ea2307b4fed6c9da0d3ba71 to your computer and use it in GitHub Desktop.
Save superseb/9abc68b97ea2307b4fed6c9da0d3ba71 to your computer and use it in GitHub Desktop.
Rancher Rodeo notes

DEPRECATED as of 2017-06-27, see README here https://github.com/chrisurwin/rancher-rodeo

Prerequisites

  • Machine with 8GB RAM, SSD – Run 1 rancher server and 3 nodes (change the RAM size)
  • Machine with 16GB RAM NVME Disk – Run 1 Rancher Server and 3 VMS
  • 4 VMs running in Cloud (2GB each, ensure security group has UDP 500 & 4500, TCP 8080, 2049 & 80 open. Recommend all traffic on UDP and TCP allowed in local network)

Only run Docker 1.12.6 if you want the K8s demo to work!

Vagrant users

Running Rancher

  • sudo docker run -d -p 8080:8080 rancher/server

Persistent Storage: Setting up the NFS server

  • sudo docker run -d --name nfs --restart=always --privileged --net=host -v /mnt:/nfsshare -e SHARED_DIRECTORY=/nfsshare itsthenetwork/nfs-server-alpine:4

Download kubectl

Run the yaml definitions from the rancher-rodeo Github repository

  • cd rancher-rodeo/k8s
  • kubectl apply –f deployment.yaml
  • kubectl apply –f class.yaml

Deploy Wordpress from Helm

  • helm install stable/wordpress --name wordpress --set persistence.enabled=true,persistence.storageClass=managed-nfs-storage,mariadb.persistence.storageClass=managed-nfs-storage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment