An open API service indexing awesome lists of open source software.

https://github.com/gsaslis/openshift-basics-workshop

An introductory workshop into OpenShift, for application developers
https://github.com/gsaslis/openshift-basics-workshop

kubernetes openshift openshift-origin openshift-v3 tutorial workshop

Last synced: about 2 months ago
JSON representation

An introductory workshop into OpenShift, for application developers

Awesome Lists containing this project

README

          

= Openshift Basics

1. start minishift with extra memory and cpu.

[source, bash]
----
minishift start --memory 8GB --cpus 4
----

NOTE: If you have already previously started minishift without the extra memory, you will also need to `minikube delete`.

2. fix time

[source, bash]
----
# edit crontab for user root
sudo su -
crontab -e

# insert following line

*/2 * * * * ntpclient -s -h pool.ntp.org

----

3. deploy jenkins through catalog, with default settings (just increased storage)

(will take some time to download jenkins image)

4. deploy sample app template

[source, bash]
----
oc new-app -f https://raw.githubusercontent.com/openshift/origin/master/examples/jenkins/application-template.json
----