Skip to content

Latest commit

 

History

History

test

Charts Testing

Pull Request Testing

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

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

Procedure

Pull requests testing is run via the Kuberentes 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 test/changed.sh script. This script is the main logic for validation of a pull request. It intends to only test charts that have changed in this PR.

The logic is as follows:

  1. Get credentials for the Kubernetes cluster used for testing.
  2. Install and initialize Helm
  3. For any charts that have changed:
    • Download dependent charts, if any, with helm dep build
    • Run helm install in a new namespace for this PR+build
    • Use the test/verify-release.sh to ensure that if any pods were launched that they get to the Running state
    • Run helm test on the release
    • Delete the release

Triggering

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:

  1. No changes have been made to file in the test folder that unnecessarily alter the testing procedures.
  2. The chart is not using images whose provenance is not traceable (usually done via the sources metadata field).

Repo syncing

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:

  1. Setup Helm
  2. Authenticate to Google Cloud so that we can upload to the Cloud Storage bucket that hosts the charts
  3. 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 repostory using gsutil rsync