https://github.com/debianmaster/openshift-k8s-install
Notes for Openshift Origin and k8s installation
https://github.com/debianmaster/openshift-k8s-install
Last synced: 6 months ago
JSON representation
Notes for Openshift Origin and k8s installation
- Host: GitHub
- URL: https://github.com/debianmaster/openshift-k8s-install
- Owner: debianmaster
- Created: 2016-07-15T12:16:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-15T18:58:53.000Z (almost 10 years ago)
- Last Synced: 2025-01-29T14:52:55.556Z (over 1 year ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Openshift and (kubernetes) k8s install
Notes for Openshift Origin and k8s installation
### Pre-requisites
> Install following based on your environment.
##### Install Virtual box
https://www.virtualbox.org/wiki/Downloads
##### Install Vagrant
https://www.vagrantup.com/downloads.html
##### Install Docker for Mac/Windows
https://docs.docker.com/engine/installation/mac/
##### For linux/centos
```sh
# tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/7/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF
# yum install docker-engine
# systemctl start docker
```
### Install k8s (minikube)
##### Intall k8s command line (kubectl)
http://kubernetes.io/docs/getting-started-guides/minikube/#download-kubectl
> for Mac OSX 64
```sh
curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/v1.3.0/bin/darwin/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
```
##### Install minikube (server)
```sh
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
```