There are two forms of testing run on a pull request. Static analysis, run automatically, and operational testing, run when a maintainer flags a pull request as being ready. The operational testing is run on Kubernertes test infrastructure.
Static analysis is performed on every pull request and is run by CircleCI. The
configuration is stored in the .circleci/config.yml
file.
The static analysis currently:
- Performs
helm lint
on any changed charts to provide quick feedback
Operational testing allows deploying a Release for the changed Helm Chart to test it.
Pull requests testing is run via the Kubernetes Test Infrastructure.
The configuration of the Pull Request trigger is in the config.json.
This snippet tells Test Infra to run the test/e2e.sh when testing is triggered on a pull request. The e2e.sh script will use the Charts test image to run the ct lint-and-install command. This is the main logic for validation of a pull request. It intends to only test charts that have changed in this PR.
The testing logic has been extracted to the chart-testing project. A go library provides the required logic to lint, install, and test charts. It is provided as a Docker image and can be run by anyone on their own charts.
Testing charts with default values may not be suitable in all cases. For instance, charts may require some values to be set which should not be part of the chart's default values.yaml
(such as keys etc.). Furthermore, it is often desirable to test a chart with different configurations, reflecting different use cases (e.g. setting a password instead of using the default generated one, activating persistence instead of using the default emptyDir volume, etc.).
In order to enable custom test values, create a directory ci
in the chart's directory and add any number of *-values.yaml
files to this directory. Only files with a suffix -values.yaml
are considered. Instead of using the defaults, the chart is then installed and tested separately for each of these files using the --values
flag.
Please note that in order to test using the default values when using the ci
directory, an empty values file must be present in the directory.
For examples, you can take a look at existing tests in this repository (e.g. Kibana Chart).
Please also note that it is a different concept than "Helm Chart Test", although the Helm Chart test, if defined, will be run by this test tool for each test values.
In order for the tests to be kicked off one of the Kubernetes member must add the "ok-to-test" label. This can also be done by commenting "/ok-to-test" on the pull request.
This check is there to ensure that PRs are spot checked for any nefarious code. There are 2 things to check for:
- No changes have been made to file in the test folder that unnecessarily alter the testing procedures.
- The chart is not using images whose provenance is not traceable (usually done via the sources metadata field).
The syncing of charts to the stable and incubator repos happens from a Jenkins instance that is polling for changes to the master branch. On each change it will use the test/repo-sync.sh to update the public repositories. The procedure is as follows:
- Setup Helm
- Authenticate to Google Cloud so that we can upload to the Cloud Storage bucket that hosts the charts
- For the stable and incubator folders:
- Download the existing index.yaml from the repository
- Run
helm dep build
on all the charts in the current repository - Run
helm package
on each chart - Recreate the index using
helm repo index
- Upload the repository using
gsutil rsync
The Jenkins instance doing the syncing is running in a GCP project
kubernetes-charts-ci
in the default namespace of the GKE cluster named
jenkins in us-west1-a.
To access the Jenkins interface:
gcloud container clusters get-credentials --project kubernetes-charts-ci --zone us-west1-a jenkins
helm status sync