Merge pull request #16 from BenTheElder/eliminate-test-infra

eliminate test-infra from docker labels and hack scripts
This commit is contained in:
k8s-ci-robot
2018-09-19 22:47:07 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ cleanup() {
fi
}
# install kind to a tempdir GOPATH from this script's test-infra checkout
# install kind to a tempdir GOPATH from this script's kind checkout
install_kind() {
# install `kind` to tempdir
TMP_DIR=$(mktemp -d)

View File

@@ -160,7 +160,7 @@ func (c *BuildContext) populateBits(buildDir string) error {
}
// BuildContainerLabelKey is applied to each build container
const BuildContainerLabelKey = "io.k8s.test-infra.kind-build"
const BuildContainerLabelKey = "io.k8s.sigs.kind.build"
// private kube.InstallContext implementation, local to the image build
type installContext struct {

View File

@@ -33,7 +33,7 @@ import (
)
// ClusterLabelKey is applied to each "node" docker container for identification
const ClusterLabelKey = "io.k8s.test-infra.kind-cluster"
const ClusterLabelKey = "io.k8s.sigs.kind.cluster"
// Context is used to create / manipulate kubernetes-in-docker clusters
type Context struct {