From daa1c81eecff2683038bdecd40933ed5c16444fd Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Fri, 1 May 2020 10:19:44 -0700 Subject: [PATCH] simplify script for v0.8 --- site/static/examples/kind-with-registry.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/site/static/examples/kind-with-registry.sh b/site/static/examples/kind-with-registry.sh index 06c16aba1c..b2945a55b7 100755 --- a/site/static/examples/kind-with-registry.sh +++ b/site/static/examples/kind-with-registry.sh @@ -1,9 +1,6 @@ #!/bin/sh set -o errexit -# desired cluster name; default is "kind" -KIND_CLUSTER_NAME="${KIND_CLUSTER_NAME:-kind}" - # create registry container unless it already exists reg_name='kind-registry' reg_port='5000' @@ -15,10 +12,10 @@ if [ "${running}" != 'true' ]; then fi # create a cluster with the local registry enabled in containerd -cat <