Difference between revisions of "IT-SDK-Openshift"

From wiki.samerhijazi.net
Jump to navigation Jump to search
Line 32: Line 32:
 
*Openshift: https://www.redhat.com/en/services/training/do080-deploying-containerized-applications-technical-overview
 
*Openshift: https://www.redhat.com/en/services/training/do080-deploying-containerized-applications-technical-overview
 
*Openshift: https://www.redhat.com/en/services/training/do092-developing-cloud-native-applications-microservices-architectures
 
*Openshift: https://www.redhat.com/en/services/training/do092-developing-cloud-native-applications-microservices-architectures
 +
==Resource External==
 +
*OpenShift Github: https://github.com/Cloudwerkstattpublic/openshift-links
 +
*OpenShift eBook: https://www.openshift.com/deploying-to-openshift/
 +
*OpenShift eBook: https://www.openshift.com/promotions/devops-with-openshift.html
 +
*OpenShift eBook: https://www.openshift.com/promotions/for-developers.html
 +
*OpenShift Blog: https://blog.openshift.com/
 +
*OpenShift YouTube-Channel: https://www.youtube.com/channel/UCZKMj3YI0wP-kq4QYpaKdEA
 +
*OpenShift Lernumgebung: https://learn.openshift.com/ (über das Gäste-WLAN ist jedoch möglich)
 +
*Docker online Reference: https://docs.docker.com/engine/reference/builder/
 +
*Docker best Practices: https://docs.docker.com/v17.09/engine/userguide/eng-image/dockerfile_best-practices

Revision as of 13:34, 5 July 2019

Initi

oc new-app <docker-image> --name <name>
oc new-app <image-stream> --name <name>
oc import-image <docker-image> --confirm

oc login -u dev -p dev
oc new-project myproject
oc status
oc new-app --search katalonstudio/katalon
oc new-app katalonstudio/katalon --name kat
oc expose service/katalon
oc get route/katalon
oc get imagestream -o name

oc get all -o name
oc get all -o name
oc describe route/katalon
oc describe imagestream/katalon
oc get all --selector app=katalon -o name
oc delete all --selector app=katalon

Introducing Red Hat OpenShift 4—a webinar series

Kostenlose Kurse

Resource External