Home / Keptn v1 Docs / Release 0.8.7 / 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:
keptn install --endpoint-service-type=[LoadBalancer, NodePort, ClusterIP]
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.8.7 at Assets > helm-service-0.8.7.tgz
jmeter-service
: GitHub Release for 0.8.7 at Assets > jmeter-service-0.8.7.tgz
Download the values.yaml
from the release branch, e.g., for the jmeter-service:
wget https://raw.githubusercontent.com/keptn/keptn/release-0.8.7/jmeter-service/chart/values.yaml
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):
remoteControlPlane:
enabled: true # < (1) set to true
api:
protocol: "http" # < (2) set protocol: http or https
hostname: "" # < (3) set Keptn endpoint (without /api)
apiValidateTls: true # < (4 - optional) option to skip TLS verification
token: "" # < (5) set Keptn API token
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:
distributor:
projectFilter: "" # set the project, e.g., "sockshop" to get events for this project.
stageFilter: "hardening" # set the stage, e.g., "hardening" to get events for the stage.
serviceFilter: "" # set the service, e.g., "carts" to get events for the service.
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
:
helm install jmeter-service https://github.com/keptn/keptn/releases/download/0.8.7/jmeter-service-0.8.7.tgz -n keptn-exec --create-namespace --values=values.yaml
Test connection to Keptn control plane using:
helm test jmeter-service -n keptn-exec
Pod jmeter-service-test-api-connection pending
Pod jmeter-service-test-api-connection succeeded
NAME: jmeter-service
LAST DEPLOYED: Thu Feb 25 15:55:24 2021
NAMESPACE: keptn-exec
STATUS: deployed
REVISION: 1
TEST SUITE: jmeter-service-test-api-connection
Last Started: Thu Feb 25 15:55:40 2021
Last Completed: Thu Feb 25 15:55:42 2021
Phase: Succeeded
To uninstall an execution plane service, e.g., jmeter-service, just execute:
helm uninstall jmeter-service -n keptn-exec
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
* The expected outcome should be:
```console
Pod jmeter-service-test-api-connection pending
Pod jmeter-service-test-api-connection succeeded
NAME: jmeter-service
LAST DEPLOYED: Thu Feb 25 15:55:24 2021
NAMESPACE: keptn-exec
STATUS: deployed
REVISION: 1
TEST SUITE: jmeter-service-test-api-connection
Last Started: Thu Feb 25 15:55:40 2021
Last Completed: Thu Feb 25 15:55:42 2021
Phase: Succeeded
Help:
values.yaml
:remoteControlPlane:
enabled: true # < (1) set to true
api:
protocol: "http" # < (2) set protocol: http or https
hostname: "" # < (3) set Keptn hostname (without /api)
apiValidateTls: true # < (4 - optional) option to skip TLS verification
token: "" # < (5) set Keptn API token
enabled
set to true
?http
or https
?my.keptn-dev.company.com
(without /api
)