Home / Keptn v1 Docs / Release 0.15.x / Operate Keptn / Multi-cluster setup
Keptn Control plane
Keptn Execution plane
To operate Keptn in a multi-cluster setup, you need obviously at least two Kubernetes clusters:
To create a Kubernetes cluster, please follow the instructions here.
The Control Plane of Keptn is responsible for orchestrating your processes for continuous delivery or automated operations.
Before starting the installation, make yourself familiar with the ways of exposing Keptn as explained here. Then come back and continue installing Keptn control plane.
To install the control plane, execute keptn install
with the option you chose for exposing Keptn:
Before continuing, please retrieve:
In this release of Keptn, the execution plane services for deployment (helm-service
) and testing (jmeter-service
) can be installed via Helm Charts.
Please find the Helm Charts here:
helm-service
: GitHub Release for 0.15.0 at Assets > helm-service-0.15.0.tgz
jmeter-service
: GitHub Release for 0.15.0 at Assets > jmeter-service-0.15.0.tgz
Download the values.yaml
from the release branch, e.g., for the jmeter-service:
Edit the values.yaml
to connect the services to the Keptn control plane, identified by its endpoint and API token. Therefore, set the values (1) - (5):
Depending on your setup of the multi-cluster environment and the approach you modeled your staging process, one stage can be for example on a separate cluster. Let’s assume the following setup:
Project: sockshop
Service: carts
Stages:
hardening
- on Cluster-Aproduction
- on Cluster-BTo properly configure the execution plane services that run, for example, on Cluster-A, the distributor in the values.yaml
needs to be configured:
Note: projectFilter
, stageFilter
, and serviceFilter
allow a comma-separated list of values.
Deploy the execution plane service (e.g., jmeter-service) from release assets with your values.yaml
and by using helm
:
Test connection to Keptn control plane using:
To uninstall an execution plane service, e.g., jmeter-service, just execute:
See the configuration parameters of the supported execution plane services:
helm-service
: Helm Chart values
jmeter-service
: Helm Chart values
The important once that are used in the above example are:
Parameter | Description | Default |
---|---|---|
distributor.stageFilter |
Sets the stage this service belongs to | "" |
distributor.serviceFilter |
Sets the service this service belongs to | "" |
distributor.projectFilter |
Sets the project this service belongs to | "" |
remoteControlPlane.enabled |
Enables remote execution plane mode | false |
remoteControlPlane.api.protocol |
Used protocol (http, https) | "https" |
remoteControlPlane.api.hostname |
Hostname of the control plane cluster (and port) | "" |
remoteControlPlane.api.apiValidateTls |
Defines if the control plane certificate should be validated | true |
remoteControlPlane.api.token |
Keptn API token | "" |
If you see in the Keptn Bridge that an event was triggered but no service was reacting upon this trigger, test the connectivity from the execution plane service to the control plane. (as mentioned above) The Helm Charts for the helm-service
and jmeter-service
have a built in sanity check that validates whether the connection to the control plane can be established.
Test (sanity check):
Prerequisites:
Connect you to the cluster where the execution plane is running
For example, you want to test jmeter-service
that is running in keptn-exec
namespace, execute:
helm test jmeter-service -n keptn-exec
Help:
values.yaml
:enabled
set to true
?http
or https
?my.keptn-dev.company.com
(without /api
)