Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
chore: make cluster creation work with kind v0.7.0
Browse files Browse the repository at this point in the history
The command 'kind get kubeconfig-path' has been deprecated in kind
v0.6.0 and removed in v0.7.0 so the cluster creation script doesn't
work with the latter version. To account for this fact and other
changes (such as kind now respecting `KUBECONFIG` and falling back to
the same defaults that `kubectl` uses), I reworked some parts of the
script.

pre-commit now uses the kind imave v1.17.5 for tests.

Note: This change makes the scripts fail to work with
      kind version < v0.7.0.
  • Loading branch information
Max Jonas Werner committed May 4, 2020
1 parent d7b7b3c commit 27df67b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 40 deletions.
48 changes: 11 additions & 37 deletions scripts/create-clusters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,10 @@ CONFIGURE_INSECURE_REGISTRY_HOST="${CONFIGURE_INSECURE_REGISTRY_HOST:-}"
CONFIGURE_INSECURE_REGISTRY_CLUSTER="${CONFIGURE_INSECURE_REGISTRY_CLUSTER-y}"
CONTAINER_REGISTRY_HOST="${CONTAINER_REGISTRY_HOST:-172.17.0.1:5000}"
NUM_CLUSTERS="${NUM_CLUSTERS:-2}"
OVERWRITE_KUBECONFIG="${OVERWRITE_KUBECONFIG:-}"
KIND_IMAGE="${KIND_IMAGE:-}"
KIND_TAG="${KIND_TAG:-}"
docker_daemon_config="/etc/docker/daemon.json"
containerd_config="/etc/containerd/config.toml"
kubeconfig="${HOME}/.kube/config"
OS=`uname`

function create-insecure-registry() {
Expand Down Expand Up @@ -92,7 +90,7 @@ EOF
"
;;
$containerd_config)
echo "sed -i '/\[plugins.cri.registry.mirrors\]/a [plugins.cri.registry.mirrors."\"${CONTAINER_REGISTRY_HOST}\""]\nendpoint = ["\"http://${CONTAINER_REGISTRY_HOST}\""]' ${containerd_config}"
echo 'echo -e "[plugins.\"io.containerd.grpc.v1.cri\".registry.mirrors.\"'${CONTAINER_REGISTRY_HOST}'\"]\n endpoint = [\"http://'${CONTAINER_REGISTRY_HOST}'\"]\n" >> '${containerd_config}
;;
*)
echo "Sorry, config insecure registy is not supported for $config_file"
Expand Down Expand Up @@ -123,13 +121,6 @@ function create-clusters() {
echo "Waiting for clusters to be ready"
check-clusters-ready ${num_clusters}

# TODO(font): kind will create separate kubeconfig files for each cluster.
# Remove once https://github.com/kubernetes-sigs/kind/issues/113 is resolved.
if [[ "${OVERWRITE_KUBECONFIG}" ]]; then
kubectl config view --flatten > ${kubeconfig}
unset KUBECONFIG
fi

if [[ "${CONFIGURE_INSECURE_REGISTRY_CLUSTER}" ]]; then
# TODO(font): Configure insecure registry on kind host cluster. Remove once
# https://github.com/kubernetes-sigs/kind/issues/110 is resolved.
Expand All @@ -141,27 +132,23 @@ function create-clusters() {
function fixup-cluster() {
local i=${1} # cluster num

local kubeconfig_path="$(kind get kubeconfig-path --name cluster${i})"
export KUBECONFIG="${KUBECONFIG:-}:${kubeconfig_path}"

if [ "$OS" != "Darwin" ];then
# Set container IP address as kube API endpoint in order for clusters to reach kube API servers in other clusters.
kind get kubeconfig --name "cluster${i}" --internal >${kubeconfig_path}
OLD_KUBECONFIG=${KUBECONFIG:-}
export KUBECONFIG=$(mktemp)
kind get kubeconfig --name "cluster${i}" --internal > ${KUBECONFIG}
SERVER=$(kubectl config view -o jsonpath='{.clusters[0].cluster.server}')
rm ${KUBECONFIG}
KUBECONFIG=${OLD_KUBECONFIG}
kubectl config set-cluster kind-cluster${i} --server=${SERVER}
fi

# Simplify context name
kubectl config rename-context "kubernetes-admin@cluster${i}" "cluster${i}"

# TODO(font): Need to rename auth user name to avoid conflicts when using
# multiple cluster kubeconfigs. Remove once
# https://github.com/kubernetes-sigs/kind/issues/112 is resolved.
sed -i.bak "s/kubernetes-admin/kubernetes-cluster${i}-admin/" ${kubeconfig_path} && rm -rf ${kubeconfig_path}.bak
kubectl config rename-context "kind-cluster${i}" "cluster${i}"
}

function check-clusters-ready() {
for i in $(seq ${1}); do
local kubeconfig_path="$(kind get kubeconfig-path --name cluster${i})"
util::wait-for-condition 'ok' "kubectl --kubeconfig ${kubeconfig_path} --context cluster${i} get --raw=/healthz &> /dev/null" 120
util::wait-for-condition 'ok' "kubectl --context cluster${i} get --raw=/healthz &> /dev/null" 120
done
}

Expand All @@ -184,19 +171,6 @@ fi

echo "Creating ${NUM_CLUSTERS} clusters"
create-clusters ${NUM_CLUSTERS}
kubectl config use-context cluster1

echo "Complete"

if [[ ! "${OVERWRITE_KUBECONFIG}" ]]; then
echo <<EOF "OVERWRITE_KUBECONFIG was not set so ${kubeconfig} was not modified. \
You can access your clusters by setting your KUBECONFIG environment variable using:
export KUBECONFIG=\"${KUBECONFIG}\"
Then you can overwrite ${kubeconfig} if you prefer using:
kubectl config view --flatten > ${kubeconfig}
unset KUBECONFIG
"
EOF
fi
2 changes: 1 addition & 1 deletion scripts/download-e2e-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dest_dir="${root_dir}/bin"
mkdir -p "${dest_dir}"

# kind
kind_version="v0.4.0"
kind_version="v0.7.0"
kind_path="${dest_dir}/kind"
kind_url="https://github.com/kubernetes-sigs/kind/releases/download/${kind_version}/kind-linux-amd64"
curl -Lo "${kind_path}" "${kind_url}" && chmod +x "${kind_path}"
Expand Down
4 changes: 2 additions & 2 deletions scripts/pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ run-unit-tests
echo "Downloading e2e test dependencies"
./scripts/download-e2e-binaries.sh

CREATE_INSECURE_REGISTRY=y CONFIGURE_INSECURE_REGISTRY_HOST=y OVERWRITE_KUBECONFIG=y \
KIND_TAG="v1.15.0" ./scripts/create-clusters.sh
CREATE_INSECURE_REGISTRY=y CONFIGURE_INSECURE_REGISTRY_HOST=y \
KIND_TAG="v1.17.5" ./scripts/create-clusters.sh

# Initialize list of clusters to join
join-cluster-list > /dev/null
Expand Down

0 comments on commit 27df67b

Please sign in to comment.