-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathcreate-kind-cluster.sh
executable file
·79 lines (67 loc) · 2.54 KB
/
create-kind-cluster.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/sh
#
# This script creates a kind cluster and configures it to use an insecure registry
# running on the host OS.
#
# USAGE: ./hack/create-kind-cluster.sh [cluster_name]
#
# Adapted from: https://github.com/kubernetes-sigs/kind/blob/master/site/static/examples/kind-with-registry.sh
set -o errexit
cluster_name="${1:-hive}"
# Discover podman and docker binaries, if they exist.
PODMAN="${PODMAN:-$(which podman 2> /dev/null || true)}"
DOCKER="${DOCKER:-$(which docker 2> /dev/null || true)}"
# Fail when neither podman nor docker are found.
if [ "${PODMAN}" == "" -a "${DOCKER}" == "" ]; then
echo "Unable to find podman or docker."
exit 1;
fi
# Prefer podman and fallthrough to docker.
container_cmd="${PODMAN:-${DOCKER}}"
echo "Using ${container_cmd}"
reg_name='kind-registry'
reg_port='5000'
# Podman containers should default to the podman network.
if [ "${container_cmd}" == "${PODMAN}" ]; then
reg_network_param="--network ${reg_network:-podman}"
fi
# Create registry container unless it already exists
running="$(${container_cmd} inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || true)"
if [ "${running}" != 'true' ]; then
${container_cmd} run \
-d --restart=always \
-p "${reg_port}:5000" \
--name "${reg_name}" \
${reg_network_param} \
registry:2
else
echo "Registry ${reg_name} already exists."
fi
# Determine the local registry endpoint parameter
endpoint="http://${reg_name}:${reg_port}"
if [ "${container_cmd}" == "${PODMAN}" ]; then
# Grab the registry IP, between containers we will use this, but dev user can push to localhost, and specify localhost
# in your pod manifests thanks to the endpoint override below
reg_ip="$(${container_cmd} inspect ${reg_name} -f '{{.NetworkSettings.IPAddress}}')"
endpoint="http://${reg_ip}:${reg_port}"
fi
# Configure kind to use podman experimental provider
if [ "${container_cmd}" == "${PODMAN}" ]; then
export KIND_EXPERIMENTAL_PROVIDER="podman"
fi
# Create a cluster with the local registry enabled in containerd
cat <<EOF | kind create cluster --name ${cluster_name} \
--kubeconfig ${HOME}/.kube/kind-${cluster_name}.kubeconfig \
--config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
containerdConfigPatches:
- |-
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:${reg_port}"]
endpoint = ["${endpoint}"]
EOF
if [ "${container_cmd}" == "${DOCKER}" ]; then
# connect the registry to the cluster network
${container_cmd} network disconnect "kind" "${reg_name}" 2> /dev/null || true
${container_cmd} network connect "kind" "${reg_name}"
fi