kubernetes/cluster/images/conformance
2019-12-12 21:05:28 -05:00
..
go-runner Clean up conformance tar test data 2019-12-12 21:05:28 -05:00
BUILD Adds an optional golang runner to the conformance test image 2019-07-01 16:26:13 -05:00
conformance-e2e.sh Stop waiting on conformance image pod when it fails 2019-03-07 11:03:05 -05:00
conformance-e2e.yaml Enable API operation log on conformance job 2019-06-03 20:47:15 +00:00
Dockerfile Adds an optional golang runner to the conformance test image 2019-07-01 16:26:13 -05:00
Makefile Adds an optional golang runner to the conformance test image 2019-07-01 16:26:13 -05:00
OWNERS Expand reviewers/approvers and add labels for conformance image 2019-03-02 13:46:27 -05:00
README.md Adds an optional golang runner to the conformance test image 2019-07-01 16:26:13 -05:00
run_e2e.sh Ensure script saves results even when tests fail 2019-10-21 15:16:11 -05:00

conformance

conformance is a standalone container to launch Kubernetes end-to-end tests, for the purposes of conformance testing. conformance is built for multiple architectures and the image is pushed automatically on every release.

How to release by hand

# First, build the binaries by running make from the root directory
$ make WHAT="test/e2e/e2e.test vendor/github.com/onsi/ginkgo/ginkgo cmd/kubectl cluster/images/conformance/go-runner"

# Build for linux/amd64 (default)
# export REGISTRY=$HOST/$ORG to switch from k8s.gcr.io

$ make push VERSION={target_version} ARCH=amd64
# ---> k8s.gcr.io/conformance-amd64:VERSION
# ---> k8s.gcr.io/conformance:VERSION (image with backwards-compatible naming)

$ make push VERSION={target_version} ARCH=arm
# ---> k8s.gcr.io/conformance-arm:VERSION

$ make push VERSION={target_version} ARCH=arm64
# ---> k8s.gcr.io/conformance-arm64:VERSION

$ make push VERSION={target_version} ARCH=ppc64le
# ---> k8s.gcr.io/conformance-ppc64le:VERSION

$ make push VERSION={target_version} ARCH=s390x
# ---> k8s.gcr.io/conformance-s390x:VERSION

If you don't want to push the images, run make or make build instead

How to run tests

kubectl create -f conformance-e2e.yaml

Analytics