eliminate test-infra from docker labels and hack scripts

This commit is contained in:
Benjamin Elder
2018-09-19 20:27:10 -07:00
parent 3328f13384
commit a39ed84938
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 {