Integration tests for machine-controller-manager-provider-{provider-name}
can be executed manually by following below steps.
- Clone the repository
machine-controller-manager-provider-{provider-name}
on the local system. - Navigate to
machine-controller-manager-provider-{provider-name}
directory and create adev
sub-directory in it. - Copy the kubeconfig of Control Cluster from into
dev/control-kubeconfig.yaml
. - (optional) Copy the kubeconfig of Target Cluster into
dev/target-kubeconfig.yaml
and update theMakefile
variableTARGET_KUBECONFIG
to point todev/target-kubeconfig.yaml
. - If the tags on instances & associated resources on the provider are of
String
type (for example, GCP tags on its instances are of typeString
and not key-value pair) then addTAGS_ARE_STRINGS := true
in theMakefile
and export it. - Atleast, one of the two controllers' container images must be set in the
Makefile
variablesMCM_IMAGE_TAG
andMC_IMAGE_TAG
for the controllers to run in the Control Cluster . These images will be used along withkubernetes/deployment.yaml
to deploy/update controllers in the Control Cluster . If the intention is to run the controllers locally then unset the variablesMCM_IMAGE_TAG
andMC_IMAGE_TAG
and set variableMACHINE_CONTROLLER_MANAGER_DEPLOYMENT_NAME := machine-controller-manager
in theMakefile
. - In order to apply the CRDs when the Control Cluster is a Gardener Shoot or if none of the controller images are specified,
machine-controller-manager
repository will be cloned automatically. Incase, this repository already exists in local system, then create a softlink as below which helps to test changes inmachine-controller-manager
quickly.ln -sf <path-for-machine-controller-manager-repo> dev/mcm
If the Control Cluster is a Gardener Shoot cluster then,
- Deploy a
Secret
namedtest-mc-secret
(that contains the provider secret and cloud-config) in thedefault
namespace of the Control Cluster. - Create a
dev/machineclassv1.yaml
file in the cloned repository. The name of theMachineClass
itself should betest-mc-v1
. The value ofproviderSpec.secretRef.name
should betest-mc-secret
. - (Optional) Create an additional
dev/machineclassv2.yaml
file similar to above but with a bigger machine type and update theMakefile
variableMACHINECLASS_V2
to point todev/machineclassv2.yaml
.
If the Control Cluster is a Gardener SEED cluster then, the suite ideally employs the already existing MachineClass
and Secrets. However,
- (Optional) User can employ a custom
MachineClass
for the tests using below steps:- Deploy a
Secret
namedtest-mc-secret
(that contains the provider secret and cloud-config) in the shoot namespace of the Control Cluster. That is, the value ofmetadata.namespace
should betechnicalID
of the Shoot and it will be of the patternshoot--<project>--<shoot-name>
. - Create a
dev/machineclassv1.yaml
file.providerSpec.secretRef.name
should refer the secret created in the previous step.metadata.namespace
andproviderSpec.secretRef.namespace
should betechnicalID
(shoot--<project>--<shoot-name>
) of the shoot.- The name of the
MachineClass
itself should betest-mc-v1
.
- Deploy a
- There is a rule
test-integration
in theMakefile
, which can be used to start the integration test:$ make test-integration Starting integration tests... Running Suite: Controller Suite ===============================
- The controllers log files (
mcm_process.log
andmc_process.log
) are stored in.ci/controllers-test/logs
repo and can be used later.
For a new provider, Running Integration tests works with no changes. But for the orphan resource test cases to work correctly, the provider-specific API calls and the Resource Tracker Interface (RTI) should be implemented. Please check machine-controller-manager-provider-aws
for reference.
- Update ControllerTests to be extend the testcases for all providers. Common testcases for machine|machineDeployment creation|deletion|scaling are packaged into ControllerTests.
- To extend the provider specfic test cases, the changes should be done in the
machine-controller-manager-provider-{provider-name}
repository. For example, to extended the testcases formachine-controller-manager-provider-aws
, make changes totest/integration/controller/controller_test.go
inside themachine-controller-manager-provider-aws
repository.commons
contains theCluster
andClientset
objects that makes it easy to extend the tests.