Creating Project

Create a project for the sample application that you will be using in this tutorial:

oc new-project pipelines-tutorial

OpenShift Pipelines automatically adds and configures a ServiceAccount named pipeline that has sufficient permissions to build and push an image. This service account will be used later in the tutorial.

Run the following command to see the pipeline service account:

oc get serviceaccount pipeline

Make sure you are on the pipelines-tutorial project by selecting it from the Project dropdown menu.

You will use the simple application during this tutorial, which has a frontend and backend

Last updated