IBM Cloud Docs
Troubleshooting for Delivery Pipeline

Troubleshooting for Delivery Pipeline

General problems with using Delivery Pipeline might include pipeline creation or tool integration configuration issues. In many cases, you can recover from these problems by following a few easy steps.

I created a toolchain and the Delivery Pipeline service doesn't initialize. Why doesn't the pipeline initialization complete?

You might need to configure and save the GitHub tool integration again.

The GitHub tool integration within your toolchain might be misconfigured, which is preventing the pipeline initialization from completing.

An eventing problem occurred which caused the GitHub tool integration to fail.

Configure and save the GitHub tool integration again:

  1. From the IBM Cloud console, click the menu icon hamburger icon, and select DevOps. On the Toolchains page, click the toolchain that you created to open the Overview page. Alternatively, on the App Details page in your app, click the toolchain name.
  2. On the Toolchain's Overview page, on the Repositories card, locate the GitHub tool integration.
  3. Click the menu to access the configuration options, update the settings, and click Save Integration.
  4. On the Delivery pipelines card, click the Delivery Pipeline tool integration to view the pipeline setup.

Why isn't the pipeline created properly when I create a toolchain from the template that I'm writing?

Your pipeline might be missing resources such as jobs and stages due to an error in your pipeline.yaml definition.

When I attempt to create a toolchain from a template that I'm writing, I receive the following error message on the Pipeline page:

This pipeline was created, but might be missing jobs, stages, or other resources. You can use this pipeline, or if you prefer, you can delete it and create another pipeline.

Typically, this issue is caused by an error in your pipeline.yaml definition.

You can use any of the following methods to debug this error:

  • Use the pipeline user interface to create an example pipeline that replicates the pipeline that you are trying to build with your template. Append /yaml to the pipeline URL to generate a similar pipeline.yaml file that you can use to look for obvious differences. For example, https://cloud.ibm.com/devops/pipelines/<your pipeline id>/yaml?env_id=<your region>.

  • Use the headless toolchain creation mechanism. On the Create a Toolchain page, open the debugger and evaluate the window.Testflags = {nocreate: 1} expression. When you click Create a Toolchain in this mode, the toolchain is not created. Instead, the information that is passed to the API is returned to the console where you can review it.

I tried to run a pipeline, why am I getting an error about access to the Git repository (repo)?

The pipeline uses an access token to clone the Git repo. If this access token isn't valid, the owner of the Git integration cannot access the Git repo.

Supported Git integrations include the GitHub, GitLab, Bitbucket, or Git Repos and Issue Tracking tool integrations.

When I attempt to run a pipeline, I receive the following error message:

The access token for this git repository is no longer valid. Please reconfigure the git integration to ensure the integration owner has access to this repository.

The access token that the pipeline uses to clone the Git repo is no longer valid. This issue might occur because the token was invalidated. The access token might also be invalid if the owner of the Git integration lost access to the repo because of permission changes.

Configure and save the Git integration again:

  1. From the IBM Cloud console, click the menu icon hamburger icon, and select DevOps. On the Toolchains page, click the toolchain that contains the Git integration that you want to update to open its Overview page. Alternatively, on the App Details page in your app, click the toolchain name.
  2. On the Toolchain's Overview page, on the Repositories card, locate the Git tool integration.
  3. Click the menu to access the configuration options, select the authorized Git account for the Git integration owner, and click Save Integration.
  4. Run your pipeline again.

I tried to deploy to Kubernetes by using the Delivery Pipeline, why am I getting an error about an invalid object?

The 1.0 pipeline base image includes kubectl v1.14.2. You might receive an error if the Kubernetes cluster that you are connecting to is running a more recent version of Kubernetes.

When I attempt to deploy to Kubernetes by using the Delivery Pipeline, I receive the following error message:

error:SchemaeError(io.k8s.api.core.v1.SecretProjection): invalid object doesn't have additional properties

Typically, this issue is caused when the version of the kubectl command in your pipeline base image is incompatible with the version of Kubernetes that is running in the cluster.

You can use any of the following methods to resolve this problem:

  • Use a more recent pipeline base image version, which when created includes the currently released version of kubectl. For information about how to specify the latest image version, see Specifying the image version.

  • Make sure that your pipeline job is running the correct version of kubectl. For example, add the following lines to the beginning of your pipeline job to run kubectl v1.14.2:

  curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.14.2/bin/linux/amd64/kubectl
  chmod +x ./kubectl
  sudo mv ./kubectl /usr/local/bin/kubectl

If you are running kubectl v1.14.2 from a 1.0 pipeline base image, the sudo option is not available. Replace the sudo line with the following command to add kubectl to your path:

   mkdir ~/.bin && export PATH=~/.bin:$PATH && mv ./kubectl ~/.bin/kubectl 

For more information about accessing the exact version of kubectl that you require, see Install and set up kubectl.

I tried to run a pipeline, why am I getting a 403 error from the IBM Cloud Container Registry?

The IBM Cloud® Container Registry pipeline pushes and pulls images to and from the IBM Cloud Container Registry. The IBM Cloud Container Registry service plan determines the amount of storage and pull traffic that you can use for your private images.

When I attempt to run a pipeline, I receive the following error message:

Failed to pull image "us.icr.io/sdl-ns/achilles:a100-p203-6-20190717161046-78fbc8a3a0fbc8571d887e57499642e0326e7035": rpc error: code = Unknown desc = failed to pull and unpack image "us.icr.io/sdl-ns/achilles:a100-p203-6-20190717161046-78fbc8a3a0fbc8571d887e57499642e0326e7035": failed to copy: httpReaderSeeker: failed open: unexpected status code https://us.icr.io/v2/sdl-ns/achilles/blobs/sha256:365b19774a508fd998bc636981cb9869a406786ad811e51937fa6fb089c86005: 403 Forbidden

You might have exceeded your pull traffic quota limits, which prevents the Docker image from being fetched.

Review your quota limits and usage for storing and pulling images. Free up used storage and change service plans or quota limits to stay within given quota limits.

I tried to compile my app in a single pipeline job, why did it fail?

You require 4 GB of memory (not file store) to build your app in a single pipeline job.

When I attempt to compile my app in a single pipeline job, the build job fails with an unexpected error.

Your app requires more than 4 GB of memory to compile in a single pipeline job.

To build your app in a single pipeline job:

  1. Create an IBM Cloud® Continuous Delivery Pipeline Private Worker.
  2. Configure your build job to use the private worker.

Why can't the Delivery Pipeline communicate through a firewall?

Your firewall configuration prevents the Delivery Pipeline from communicating with environments that are behind a firewall.

When I attempt to use the Delivery Pipeline, it cannot communicate through my firewall.

Your firewall must be configured to allow the Delivery Pipeline to communicate with environments that are behind a firewall.

You can update your firewall configurations to allow the Delivery Pipeline to access resources that are behind the firewall. Use the CIS allowlist and the subnet ranges, for your specific region.

Why did I receive a notification that repo references are fixed in my pipeline triggers or definitions?

You changed, added, or removed repo integrations from your toolchain, which caused references to the integrations that are stored in the pipeline triggers or definitions to become invalid.

When I change, add, or remove repo integrations from my toolchain, warning icons and validation errors are displayed in my pipeline configuration.

In certain scenarios, when you change, add, or remove repo integrations from your toolchain, references to these integrations that are stored in the pipeline triggers or definitions might become invalid.

If a matching repo integration is located in the toolchain, the pipeline attempts to automatically update these references to fix the invalid integration references. A notification is displayed in the UI with one of the following messages:

  • Repository reference fixed in the following triggers: [list of triggers]
  • Repository reference fixed in the following definitions: [list of definitions]

If you see one of these notifications, but no warnings or errors are displayed in the configuration, no further action is required. If warnings or errors still appear, you might need to update or create the trigger or definition again.

Why does my pipeline time out when it tries to connect to IBM Cloud Object Storage private endpoints?

When you run a pipeline, requests to the IBM Cloud Object Storage that use a private endpoint time out with no response. This time out can cause the pipeline to fail.

IBM Cloud Object Storage private endpoints are not accessible from all IBM Cloud cluster types. Private IBM Cloud Object Storage endpoints are not accessible from private workers that run on clusters within an IBM Cloud® Virtual Private Cloud (VPC).

Replace any s3.private.* IBM Cloud Object Storage endpoints with s3.direct.* endpoints. s3.direct.* endpoints are direct endpoints that communicate with IBM Cloud Object Storage from any IBM Cloud cluster type.

Why does my pipeline fail with an error that is related to secure properties?

PipelineRuns fails with an error when any of the secure properties in the pipeline don't resolve at the start of the pipeline run.

Pipelines that cannot retrieve a secret value from a secrets store or from either Secrets Manager, Key Protect, or HashiCorp Vault, fail with an error message that indicates which properties cannot be resolved. Resolution failures can occur even if the properties are not used directly in the triggered run. For example, resolution failures might occur if the path to the secret in the store is no longer valid, the secret store is inaccessible, or for authorization issues.

If your pipelines contain secure properties that do not currently resolve, update these properties to refer to valid, retrievable secrets that are located in Secrets Manager, Key Protect, or HashiCorp Vault.

Make sure that your pipeline specifies only those secure properties that are required for the successful completion of a triggered PipelineRun as pipeline trigger properties, instead of as pipeline level environment properties. Use pipeline level environment properties only when required.

Why does my pipeline report an error fetching the pipeline definition?

An error appears on the Delivery Pipeline page in relation to fetching the pipeline definition. Alternatively, the error appears when attempting to trigger a PipelineRun.

There are a number of reasons why a failure can occur when fetching the definition for a pipeline. For example, if the definition is defined in a very large repository, the request to fetch the definition can time out due to a delay in cloning the large repository before building the definition. Another example is when a definition input is targeted at a branch or path that no longer exists in the repository.

Try resolving the problem by using one of the following options:

  • Reload the page to initiate a new request to fetch the definition. If this fails repeatedly, continue with the following options.
  • Validate that all referenced branches and paths in your definition inputs match with resources that exist in the repository.
  • Reduce the size of the repository containing your Tekton definition. Remove unnecessary files from the repository and update your .gitignore to exclude uploading any unnecessary files.
  • Only include the minimum necessary files of your pipeline definition -- do not target your entire repository. Move all Tekton definition related files to a subfolder of your repository, then edit the definition input in your Delivery Pipeline settings to target the path at the subfolder. This option reduces the time necessary to clone the definition files from your repository.
  • For large Tekton definitions, consider splitting the definition into multiple folders or multiple repositoriess. Then update the definition inputs in your Delivery Pipeline to target the necessary folders or repos.

The computed pipeline definition size limit is 1 MB. If you encounter errors when you save or run your pipeline, you might need to reduce the size of your pipeline definition, or split it into multiple pipelines.

Why does my pipeline fail to connect to a Red Hat OpenShift on IBM Cloud cluster?

Pipelines that attempt an oc login can't log in to the target cluster that's running Red Hat OpenShift on IBM Cloud version 4.13 and later.

The issue is caused by change that is introduced in version 4.13 of Red Hat OpenShift on IBM Cloud.

To work around the issue, use the following process:

ibmcloud login --apikey "${IBMCLOUD_API_KEY}" -r "${REGION}" -g "${RESOURCE_GROUP}"
ibmcloud oc cluster config --cluster "${CLUSTER_NAME}" --endpoint private --admin
kubectl config current-context
oc version
oc get pods -A  # To verify connection

Why does my pipeline fail when executing a Git clone command?

Tekton Pipelines that are using the git-clone-repo command task might fail with the following error displayed: Clone was not successful. Code 128 - Retrying shortly....

The issue is caused by a performance change in the infrastructure of the public managed pipeline workers.

To resolve this issue:

  • Locate the tekton definitions of the clone-repo step in the git-clone-repo task. For more information, see the Tekton Catalog example.
  • Add rm -rf "lost+found" to the definition prior to the git clone call. This ensures the directory for cloning is empty.
  • Run the pipeline again.

Why does my pipeline fail to start on managed workers when executed from a trial account ?

Classic pipelines that are executed from a trial account won't start due to the following error:

This type of account is not entitled to use managed workers. Private workers can be used instead or to gain access managed worker capability the account must be upgraded to a paid plan.

This behavior is caused by a revision of the permissions for trial accounts.

Try the following options to resolve this issue:

  • Execute your pipelines using a private worker running on your own cluster.
  • Upgrade your trial account to a Pay-As-You-Go account with a Lite plan.