You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,10 +94,11 @@ The [terraform](terraform) directory holds the resource configurations files. Th
94
94
95
95
The directory [.bluemix](.bluemix) holds the toolchain definition including for the setup form. [.tekton](.tekton) has the files to define the pipelines, their tasks and how the pipelines are triggered.
96
96
97
-
The file [.tekton/pipelines.yaml](.tekton/pipelines.yaml) defines two pipelines, one for the build & deploy process, one to uninstall the app. The "build & deploy" pipeline has three tasks:
97
+
The file [.tekton/pipelines.yaml](.tekton/pipelines.yaml) defines two pipelines, one for the build & deploy process, one to uninstall the app. The "build & deploy" pipeline has four tasks:
98
98
1.**git-repo-changes** clones the source repository and checks for code changes to the toolchain and app.
99
99
2.**build** uses the task [icr-containerize](https://github.com/open-toolchain/tekton-catalog/blob/master/container-registry/README.md#icr-containerize) from the Open Toolchain Tekton Catalog to build the Docker image.
100
-
3.**deploy-to-kubernetes** deploys the Docker image to the Kubernetes cluster and configures the app.
100
+
3.**va-scan** runs and checks vulnerability checks on the newly built image. It facilitates the IBM Cloud Container Registry for that purpose.
101
+
4.**deploy-to-kubernetes** deploys the Docker image to the Kubernetes cluster and configures the app.
101
102
102
103
Note that the pipeline definition includes an inactive check to only build and deploy the app if there were app-related changes. Uncomment that section in the source code to enable the check.
0 commit comments