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
- Host: GitHub
- URL: https://github.com/gsaslis/openshift-basics-workshop
- Owner: gsaslis
- Created: 2018-08-02T15:21:21.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2020-06-17T14:11:37.000Z (over 5 years ago)
- Last Synced: 2025-03-26T20:59:34.899Z (6 months ago)
- Topics: kubernetes, openshift, openshift-origin, openshift-v3, tutorial, workshop
- Language: PHP
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.asciidoc
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
----