Skip to content

Use Helm chart manifests in the e2e tests #366

Open
@mauriciopoppe

Description

@mauriciopoppe

So our e2e tests create a test cluster and install LVP using go code

setupLocalVolumeProvisioner(ctx, config, nil)

createProvisionerDaemonset(ctx, config)

And if you look at the implementation it's installing the same resources declared in the helm chart, to avoid duplicating the setup we could set up a helm go client and install the chart in helm/provisioner/ with some values defined in go code instead.

I think https://manuelmazzuola.dev/2021/03/28/deploy-helm-chart-go is good starting point to use helm programatically, another way to accomplish the same is to install the helm/kubectl binaries in the script that creates the cluster that way we can call helm debug | kubectl apply -f - from within the test

The starting point for the test runner is our Prow job in test-infra which calls make e2e -> hack/e2e.sh ->

go run $ROOT/hack/e2e.go -- "${kubetest_args[@]}" \
--deployment "$DEPLOYMENT" \
--up \
--down \
--test-cmd bash \
--test-cmd-args="$ROOT/hack/run-e2e.sh" \
"$@"

if you have a cluster already running make sure to update the above lines to only run the test and not create/delete a cluster, i.e. remove --up --down

Metadata

Metadata

Assignees

Labels

good first issueDenotes an issue ready for a new contributor, according to the "help wanted" guidelines.help wantedDenotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.lifecycle/frozenIndicates that an issue or PR should not be auto-closed due to staleness.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions