OpenShift Build Operations: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
* [[OpenShift_Operations#Subjects|OpenShift Operations]] | * [[OpenShift_Operations#Subjects|OpenShift Operations]] | ||
* [[OpenShift_Concepts#Build|OpenShift Concepts]] | * [[OpenShift_Concepts#Build|OpenShift Concepts]] | ||
* [[OpenShift Deployment Operations#Overview|Deployment Operations]] | |||
=Overview= | =Overview= |
Revision as of 04:53, 21 November 2017
Internal
Overview
View Builds for Project
oc get builds
NAME TYPE FROM STATUS STARTED DURATION bookstore-1 Source Git@ad0abda Failed (AssembleFailed) About an hour ago 2m43s bookstore-2 Source Git@ad0abda Failed (AssembleFailed) 12 minutes ago 2m16s
Each build has an associated build pod, whose names can be obtained with:
oc get pods
NAME READY STATUS RESTARTS AGE bookstore-1-build 0/1 Error 0 57m bookstore-2-build 0/1 Error 0 13m
View Build Logs
View build logs associated with a build object:
oc logs -f builds/<build-object-name>