All Projects → kubernetes-sigs → Kubetest2

kubernetes-sigs / Kubetest2

Licence: apache-2.0
Kubetest2 is the framework for launching and running end-to-end tests on Kubernetes.

Programming Languages

go
31211 projects - #10 most used programming language

kubetest2

Kubetest2 is the framework for launching and running end-to-end tests on Kubernetes. It is intended to be the next significant iteration of kubetest.

Installation

To install core and all deployers and testers: GO111MODULE=on go get sigs.k8s.io/kubetest2/[email protected]

To install a specific deployer: GO111MODULE=on go get sigs.k8s.io/kubetest2/[email protected] (DEPLOYER can be gce, gke, etc.)

To install a sepcific tester: GO111MODULE=on go get sigs.k8s.io/kubetest2/[email protected] (TESTER can be ginkgo, exec, etc.)

Usage

An example run of the Ginkgo conformance suite against your local version of the k/k repo deployed to GCE looks as follows:

kubetest2 gce -v 2 \
  --repo-root $KK_REPO_ROOT \
  --gcp-project $YOUR_GCP_PROJECT \
  --legacy-mode \
  --build \
  --up \
  --down \
  --test=ginkgo \
  -- \
  --focus-regex='\[Conformance\]'

See READMEs specific to each deployer and tester for information about each. Usage (--help) should also be referenced.

Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the community page.

You can reach the maintainers of this project at:

Code of conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].