Set up a Kubernetes cluster build infrastructure
This topic describes how you can use a Kubernetes cluster build infrastructure for the Build stage in a Harness CI pipeline.
This topic assumes you have a basic understanding of Harness' key concepts.
Important notes
Review the following important information about using Kubernetes cluster build infrastructures for your Harness CI builds.
The Kubernetes cluster build infrastructure option is only available with Harness CI Team and Enterprise plans.
Privileged mode is required for Docker-in-Docker
If your build process needs to run Docker commands, Docker-in-Docker (DinD) with privileged mode is necessary when using a Kubernetes cluster build infrastructure.
If your Kubernetes cluster doesn't support privileged mode, you'll need to use another build infrastructure, such as Harness Cloud or a VM build infrastructure. Other infrastructure types allow you to run Docker commands directly on the host.
GKE Autopilot is not recommended
We don't recommend using Harness CI with GKE Autopilot due to Docker-in-Docker limitations and potential cloud cost increases.
Autopilot clusters do not allow privileged pods, which means you can't use Docker-in-Docker to run Docker commands, since these require privileged mode.
Additionally, GKE Autopilot sets resource limits equal to resource requests for each container. This can cause your builds to allocate more resources than they need, resulting in higher cloud costs with no added benefit.
GKE Autopilot cloud cost demonstration
Windows builds
Go to Run Windows builds in a Kubernetes cluster build infrastructure.
Self-signed certificates
Go to Configure a Kuberneted build farm to use self-signed certificates.
Process overview
After you set up the Kubernetes cluster that you want to use as your build infrastructure, you use a Harness Kubernetes Cluster connector and Harness Delegate to create a connection between Harness and your cluster.
Here's a short video that walks you through adding a Harness Kubernetes Cluster connector and Harness Kubernetes delegate. The delegate is added to the target cluster, then the Kubernetes Cluster connector uses the delegate to connect to the cluster.
Follow the steps below to set up your Kubernetes cluster build infrastructure. For a tutorial walkthrough, try the Build and test on a Kubernetes cluster build infrastructure tutorial.
Step 1: Create a Kubernetes cluster
Make sure your Kubernetes cluster meets the build infrastructure requirements in the CI cluster requirements and the Harness-specific permissions required for CI.
You need to install the Harness Kubernetes Delegate on the same cluster you use as your build infrastructure. Make sure that the cluster has enough memory and CPU for the Delegate you are installing. Harness Kubernetes Delegates can be in a different namespace than the one you provide while defining the build farm infrastructure for the CI pipeline.
For instructions on creating clusters, go to:
Step 2: Add the Kubernetes Cluster connector and install the Delegate
In your Harness Project, select Connectors under Project Setup.
Select New Connector, and then select Kubernetes cluster.
Enter a name for the connector and select Continue.
Select Use the credentials of a specific Harness Delegate, and then select Continue.
Select Install new Delegate.
Install the Delegate on a pod in your Kubernetes build infrastructure. You can use a Helm Chart, Terraform, or Kubernetes Manifest to install Kubernetes delegates. For details and instructions for each of these options, go to Delegate installation overview.
After installing the delegate, return to the Harness UI and select Verify to test the connection. It might take a few minutes to verify the Delegate. Once it is verified, exit delegate creation and return to connector setup.
In your Kubernetes Cluster connector's Delegates Setup, select Only use Delegates with all of the following tags.
Select your new Kubernetes delegate, and then select Save and Continue.
Wait while Harness tests the connection, and then select Finish.
Although you must select a specific delegate when you create the Kubernetes Cluster connector, you can choose to use a different delegate for executions and cleanups in individual pipelines or stages. To do this, use pipeline-level delegate selectors or stage-level delegate selectors.
Delegate selections take precedence in the following order:
- Stage
- Pipeline
- Connector
This means that if delegate selectors are present at the pipeline and stage levels, then these selections override the delegate selected in the Kubernetes cluster connector's configuration. If a stage has a stage-level delegate selector, then it uses that delegate. Stages that don't have stage-level delegate selectors use the pipeline-level selector, if present, or the connector's delegate.
For example, assume you have a pipeline with three stages called alpha
, beta
, and gamma
. If you specify a stage-level delegate selector on alpha
and you don't specify a pipeline-level delegate selector, then alpha
uses the stage-level delegate, and the other stages (beta
and gamma
) use the Connector delegate.
Step 3: Define the Build Farm Infrastructure in Harness
In the Build stage's Infrastructure tab, select the Kubernetes cluster connector you created previously.
In Namespace, enter the Kubernetes namespace to use. You can also use a Runtime Input (<+input>
) or expression for the namespace. For more information, go to Runtime Inputs.
You may need to configure the settings described below, as well as other advanced settings described in CI Build stage settings. Review the details of each setting to understand whether it is required for your configuration.
Service Account Name
Run as User or Run as Non-Root
Init Timeout
Annotations
Labels
YAML example
Here's a YAML example of a stage configured to use a Kubernetes cluster build infrastructure.
stages:
- stage:
name: Build Test and Push
identifier: Build_Test_and_Push
description: ""
type: CI
spec:
cloneCodebase: true
infrastructure:
type: KubernetesDirect
spec:
connectorRef: account.harnessk8s
namespace: harness-delegate
automountServiceAccountToken: true
nodeSelector: {}
os: Linux
Troubleshooting
For Kubernetes cluster build infrastructure troubleshooting guidance go to: