This topic describes how to install Tanzu Build Service from the Tanzu Application Platform package repository by using the Tanzu CLI.
Use this topic if you do not want to use a Tanzu Application Platform profile that includes Tanzu Build Service. The Full, Iterate, and Build profiles include Tanzu Build Service. For more information about profiles, see Components and installation profiles.
The following procedure might not include some configurations required for your environment. For advanced information about installing Tanzu Build Service, see the Tanzu Build Service documentation.
Before installing Tanzu Build Service:
Complete all prerequisites to install Tanzu Application Platform. For more information, see Prerequisites.
You must have access to a Docker registry that Tanzu Build Service can use to create builder images. Approximately 10 GB of registry space is required when using the full
dependencies.
Your Docker registry must be accessible with user name and password credentials.
To install Tanzu Build Service by using the Tanzu CLI:
Get the latest version of the Tanzu Build Service package by running:
tanzu package available list buildservice.tanzu.vmware.com --namespace tap-install
Gather the values schema by running:
tanzu package available get buildservice.tanzu.vmware.com/VERSION --values-schema --namespace tap-install
Where VERSION
is the version of the Tanzu Build Service package you retrieved in the previous step.
Create a tbs-values.yaml
file using the following template:
---
kp_default_repository: "REPO-NAME"
kp_default_repository_username: "REPO-USERNAME"
kp_default_repository_password: "REPO-PASSWORD"
Where:
REPO-NAME
is a writable repository in your registry. Tanzu Build Service dependencies are written to this location. Examples:
"my-harbor.io/my-project/build-service"
."my-dockerhub-user/build-service"
or "index.docker.io/my-user/build-service"
."gcr.io/my-project/build-service"
.REPO-USERNAME
and REPO-PASSWORD
are the username and password for the user that can write to REPO-NAME
. For Google Cloud Registry, use _json_key
as the username and the contents of the service account JSON file for the password.
NoteIf you do not want to use plaintext for these credentials, you can configure them by using a secret reference or by using AWS IAM authentication. For more information, see Use Secret References for registry credentials or Use AWS IAM authentication for registry credentials.
If you are running on Openshift, add kubernetes_distribution: openshift
to your tbs-values.yaml
file.
(Optional) Under the ca_cert_data
key in the tbs-values.yaml
file, provide a PEM-encoded CA certificate for Tanzu Build Service. This certificate is used for accessing the container image registry and is also provided to the build process.
NoteIf
shared.ca_cert_data
is configured in thetap-values.yaml
file, Tanzu Build Service inherits that value.Configuring
ca_cert_data
key in thetbs-values.yaml
file adds the CA certificates at build time. To add CA certificates to the built image, see Configure custom CA certificates for a single workload using service bindings.
For example:
---
kp_default_repository: "REPO-NAME"
kp_default_repository_username: "REPO-USERNAME"
kp_default_repository_password: "REPO-PASSWORD"
ca_cert_data: |
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
(Optional) Tanzu Build Service is bootstrapped with the lite
set of dependencies. To configure full
dependencies, add the key-value pair exclude_dependencies: true
to your tbs-values.yaml
file. This is to exclude the default lite
dependencies from the installation. For example:
---
kp_default_repository: "REPO-NAME"
kp_default_repository_username: "REPO-USERNAME"
kp_default_repository_password: "REPO-PASSWORD"
exclude_dependencies: true
For more information about the differences between full
and lite
dependencies, see About lite and full dependencies.
Install the Tanzu Build Service package by running:
tanzu package install tbs -p buildservice.tanzu.vmware.com -v VERSION -n tap-install -f tbs-values.yaml
Where VERSION
is the version of the Tanzu Build Service package you retrieved earlier.
For example:
$ tanzu package install tbs -p buildservice.tanzu.vmware.com -v VERSION -n tap-install -f tbs-values.yaml
| Installing package 'buildservice.tanzu.vmware.com'
| Getting namespace 'tap-install'
| Getting package metadata for 'buildservice.tanzu.vmware.com'
| Creating service account 'tbs-tap-install-sa'
| Creating cluster admin role 'tbs-tap-install-cluster-role'
| Creating cluster role binding 'tbs-tap-install-cluster-rolebinding'
| Creating secret 'tbs-tap-install-values'
- Creating package resource
- Package install status: Reconciling
Added installed package 'tbs' in namespace 'tap-install'
(Optional) Verify the cluster builders that the Tanzu Build Service installation created by running:
tanzu package installed get tbs -n tap-install
If you configured full
dependencies in your tbs-values.yaml
file, install the full
dependencies by following the procedure in Install full dependencies.
Tanzu Build Service requires credentials for the kp_default_repository
and the Tanzu Network registry.
You can apply them directly in-line in plaintext in the tbs-values.yaml
or tap-values.yaml
configuration by using the kp_default_repository_username
, kp_default_repository_password
, tanzunet_username
, and tanzunet_password
fields.
If you do not want credentials saved in plaintext, you can use existing secrets or IAM roles by using secret references or AWS IAM authentication in your tbs-values.yaml
or tap-values.yaml
.
You might not want to install Tanzu Build Service with passwords saved in plaintext in the tbs-values.yaml
.
To store these credentials in Secrets
and reference them in the tbs-values.yaml
:
Using the Tanzu CLI, create a secret of type kubernetes.io/dockerconfigjson
containing credentials for the writable repository in your registry (kp_default_repository
):
tanzu secret registry add kp-default-repository-creds \
--username "${USERNAME}" \
--password "${PASSWORD}" \
--server "${SERVER-NAME}" \
--namespace tap-install
Where:
USERNAME
and PASSWORD
are the user name and password for the user that can write to the kp_default_repository
. For Google Cloud Registry, use _json_key
as the user name, and the contents of the service account JSON file for the password.SERVER-NAME
is the host name of the registry server for the kp_default_repository
. Examples:
server: "my-harbor.io"
.server: "index.docker.io"
.server: "gcr.io"
.Use the following alternative configuration for tbs-values.yaml
:
Noteif you are installing Tanzu Build Service as part of a Tanzu Application Platform profile, you configure this in your
tap-values.yaml
file under thebuildservice
section.
---
kp_default_repository: "KP-DEFAULT-REPOSITORY"
kp_default_repository_secret:
name: kp-default-repository-creds
namespace: tap-install
Where:
KP-DEFAULT-REPOSITORY
is a writable repository in your registry. Tanzu Build Service dependencies are written to this location. Examples:
"my-harbor.io/my-project/build-service"
."my-dockerhub-user/build-service"
or "index.docker.io/my-user/build-service"
."gcr.io/my-project/build-service"
.To apply this configuration, continue the installation steps.
Tanzu Build Service supports using AWS IAM roles to authenticate with Amazon Elastic Container Registry (ECR) on Amazon Elastic Kubernetes Service (EKS) clusters.
To use AWS IAM authentication:
Configure an AWS IAM role that has read and write access to the repository in the container image registry used when installing Tanzu Application Platform.
Use the following alternative configuration for tbs-values.yaml
:
Noteif you are installing Tanzu Build Service as part of a Tanzu Application Platform profile, you configure this in your
tap-values.yaml
file under thebuildservice
section.
---
kp_default_repository: "REPO-NAME"
kp_default_repository_aws_iam_role_arn: "IAM-ROLE-ARN"
Where:
REPO-NAME
is a writable repository in your registry. Tanzu Build Service dependencies are written to this location.IAM-ROLE-ARN
is the AWS IAM role Amazon Resource Name (ARN) for the role configured in the previous step. For example, arn:aws:iam::xyz:role/my-install-role
.The developer namespace requires configuration for Tanzu Application Platform to use AWS IAM authentication for ECR. Configure an AWS IAM role that has read and write access to the registry for storing workload images.
Using the supply chain service account, add an annotation including the role ARN configured earlier by running:
kubectl annotate serviceaccount -n DEVELOPER-NAMESPACE SERVICE-ACCOUNT-NAME \
eks.amazonaws.com/role-arn=IAM-ROLE-ARN
Where:
DEVELOPER-NAMESPACE
is the namespace where workloads are created.SERVICE-ACCOUNT-NAME
is the supply chain service account. This is default
if unset.IAM-ROLE-ARN
is the AWS IAM role ARN for the role configured earlier. For example, arn:aws:iam::xyz:role/my-developer-role
.Apply this configuration by continuing the steps in Install the Tanzu Build Service package.
If you configured full
dependencies in your tbs-values.yaml
file, you must install the full
dependencies package.
For a more information about lite
and full
dependencies, see About lite and full dependencies.
To install full
Tanzu Build Service dependencies:
If you have not done so already, add the key-value pair exclude_dependencies: true
to your tbs-values.yaml
file. For example:
Noteif you are installing Tanzu Build Service as part of a Tanzu Application Platform profile, you configure this in your
tap-values.yaml
file under thebuildservice
section.
---
kp_default_repository: "REPO-NAME"
kp_default_repository_username: "REPO-USERNAME"
kp_default_repository_password: "REPO-PASSWORD"
exclude_dependencies: true
Get the latest version of the Tanzu Build Service package by running:
tanzu package available list buildservice.tanzu.vmware.com --namespace tap-install
Relocate the Tanzu Build Service full
dependencies package repository by running:
imgpkg copy -b registry.tanzu.vmware.com/tanzu-application-platform/full-tbs-deps-package-repo:VERSION \
--to-repo INSTALL-REGISTRY-HOSTNAME/TARGET-REPOSITORY/tbs-full-deps
Where:
VERSION
is the version of the Tanzu Build Service package you retrieved in the previous step.INSTALL-REGISTRY-HOSTNAME
is your container image registry.TARGET-REPOSITORY
is your target repository.Add the Tanzu Build Service full
dependencies package repository by running:
tanzu package repository add tbs-full-deps-repository \
--url INSTALL-REGISTRY-HOSTNAME/TARGET-REPOSITORY/tbs-full-deps:VERSION \
--namespace tap-install
Where:
VERSION
is the version of the Tanzu Build Service package you retrieved earlier.INSTALL-REGISTRY-HOSTNAME
is your container image registry.TARGET-REPOSITORY
is your target repository.Install the full
dependencies package by running:
tanzu package install full-tbs-deps -p full-tbs-deps.tanzu.vmware.com -v VERSION -n tap-install
Where VERSION
is the version of the Tanzu Build Service package you retrieved earlier.
ImportantThe automatic updates feature is being deprecated. The recommended way to patch dependencies is by upgrading Tanzu Application Platform to the latest patch version. For upgrade instructions, see Upgrading Tanzu Application Platform.
You can configure Tanzu Build Service to update dependencies in the background as they are released. This enables workloads to keep up to date automatically. For more information about automatic dependency updates, see About automatic dependency updates (deprecated).
To configure automatic dependency updates, add the following to the contents of your tbs-values.yaml
:
NoteIf you are installing Tanzu Build Service as part of a Tanzu Application Platform profile, you configure this in your
tap-values.yaml
file under thebuildservice
section.
tanzunet_username: TANZU-NET-USERNAME
tanzunet_password: TANZU-NET-PASSWORD
descriptor_name: DESCRIPTOR-NAME
enable_automatic_dependency_updates: true
Where:
TANZU-NET-USERNAME
and TANZU-NET-PASSWORD
are the email address and password to log in to VMware Tanzu Network. You can also configure these credentials by using a secret reference. For more information, see Use Secret references for registry credentials.DESCRIPTOR-NAME
is the name of the descriptor to import. For more information, see Descriptors. Available options are:
lite
is the default if not set. It has a smaller footprint, which enables faster installations.full
is optimized to speed up builds and includes dependencies for all supported workload types.The legacy CNB BOM format is deprecated, but is enabled by default in Tanzu Application Platform.
To manually deactivate the format, add include_legacy_bom=false
to either the tbs-values.yaml
file, or to the tap-values.yaml
file under the buildservice
section.