Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/detiber/kubecon-austin-2017
https://github.com/detiber/kubecon-austin-2017
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/detiber/kubecon-austin-2017
- Owner: detiber
- Created: 2017-12-03T16:21:56.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-08T16:40:42.000Z (about 7 years ago)
- Last Synced: 2024-11-07T20:54:58.676Z (2 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Bootstrapping
- Install Fedora Atomic Host
- Download the arm64 oc binary
```
mkdir -p ~/bin
curl -s http://binaries.kubecon.paas.ninja/linux/arm64/oc -o bin/oc
chmod +x bin/oc
```
- Add 172.30.0.0/16 to registries.block/registries in /etc/containers/registries.conf
- Restart docker
- Start the cluster
```
sudo bin/oc cluster up --image="openshiftmultiarch/origin" --version="v3.7.0-multiarch.0" --public-hostname=
```
- Deploy the guestbook app
```
curl -s https://raw.githubusercontent.com/detiber/kubecon-austin-2017/master/guestbook-all-in-one.yaml -o guestbook-all-in-one.yaml
oc create -f guestbook-all-in-one.yaml
```