This topic tells you how to use Tanzu Build Service (commonly known as TBS) in a continuous integration context to build applications and keep them up-to-date at scale.
This example shows using an image resource with Git source in a development-to-production continuous integration/continuous delivery (CI/CD) pipeline flow.
Let’s split this up into each step.
Run unit tests & merge to branch:
This step shows a typical initial unit testing CI flow.
Update Tanzu Build Service Image Configuration in CI/CD:
After unit tests pass, CI/CD must tell Tanzu Build Service to build the registry image using the Git commit that passed tests.
For example:
Jenkins job that runs the following after unit tests with the successful <git-commit>
:
kp image save my-image --git-revision <git-commit>
Tanzu Build Service builds the OCI registry image using the Git commit:
Here Tanzu Build Service works its magic and builds a new registry image using the Git commit set in the previous step and the latest app dependencies (stacks and buildpacks).
Tanzu Build Service pushes the built image to your registry:
After the build finishes, Tanzu Build Service writes the resulting image to a container registry such as Harbor.
This image reference can be found with:
kp image status <image-name>
or
kp build status <image-name> -b <build-number>
Using CI/CD, deploy the built image to a Dev/QA Kubernetes cluster:
Now that the image is available in your registry, it can be deployed to any Kubernetes cluster. In this example, it is deployed to a Dev cluster for acceptance testing and QA/manual approval.
There are a couple of ways to trigger this job:
Once the app has been vetted, deploy to production:
The same way the image was deployed to the Dev cluster, the image can be pushed to production.
Bonus: dependencies are kept up to date for secure app images:
Images are kept up to date with the latest dependencies provided through stacks and buildpacks from the Cloud Native Buildpacks community, which are released for Tanzu Build Service as Tanzu Buildpacks on Tanzu Network.
As of Tanzu Build Service 1.2, these dependencies are automatically updated. You can also update these dependencies with the kp cli in CI/CD by running:
kp import -f descriptor.yaml
When dependencies are updated, affected apps are rebuilt to be promoted by using steps 5 and 6.