mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Signed-off-by: AadithyanRaju <aadithyan75@gmail.com> Signed-off-by: Aadithyan Raju <93834376+AadithyanRaju@users.noreply.github.com>
142 lines
3.8 KiB
Bash
Executable file
142 lines
3.8 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright IBM Corp All Rights Reserved
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
function kind_create() {
|
|
push_fn "Creating cluster \"${CLUSTER_NAME}\""
|
|
|
|
# prevent the next kind cluster from using the previous Fabric network's enrollments.
|
|
rm -rf $PWD/build
|
|
|
|
# todo: always delete? Maybe return no-op if the cluster already exists?
|
|
kind delete cluster --name $CLUSTER_NAME
|
|
|
|
local reg_name=${LOCAL_REGISTRY_NAME}
|
|
local reg_port=${LOCAL_REGISTRY_PORT}
|
|
local ingress_http_port=${NGINX_HTTP_PORT}
|
|
local ingress_https_port=${NGINX_HTTPS_PORT}
|
|
|
|
# the 'ipvs'proxy mode permits better HA abilities
|
|
|
|
cat <<EOF | kind create cluster --name $CLUSTER_NAME --config=-
|
|
---
|
|
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
nodes:
|
|
- role: control-plane
|
|
kubeadmConfigPatches:
|
|
- |
|
|
kind: InitConfiguration
|
|
nodeRegistration:
|
|
kubeletExtraArgs:
|
|
node-labels: "ingress-ready=true"
|
|
extraPortMappings:
|
|
- containerPort: 80
|
|
hostPort: ${ingress_http_port}
|
|
protocol: TCP
|
|
- containerPort: 443
|
|
hostPort: ${ingress_https_port}
|
|
protocol: TCP
|
|
#networking:
|
|
# kubeProxyMode: "ipvs"
|
|
|
|
# create a cluster with the local registry enabled in containerd
|
|
containerdConfigPatches:
|
|
- |-
|
|
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:${reg_port}"]
|
|
endpoint = ["http://${reg_name}:${reg_port}"]
|
|
|
|
EOF
|
|
|
|
# workaround for https://github.com/hyperledger/fabric-samples/issues/550 - pods can not resolve external DNS
|
|
for node in $(kind get nodes);
|
|
do
|
|
docker exec "$node" sysctl net.ipv4.conf.all.route_localnet=1;
|
|
done
|
|
|
|
pop_fn
|
|
}
|
|
|
|
function kind_load_docker_images() {
|
|
push_fn "Loading docker images to KIND control plane"
|
|
|
|
kind load docker-image ${FABRIC_CONTAINER_REGISTRY}/fabric-ca:$FABRIC_CA_VERSION
|
|
kind load docker-image ${FABRIC_CONTAINER_REGISTRY}/fabric-orderer:$FABRIC_VERSION
|
|
kind load docker-image ${FABRIC_PEER_IMAGE}
|
|
kind load docker-image couchdb:$COUCHDB_VERSION
|
|
|
|
kind load docker-image ghcr.io/hyperledger/fabric-rest-sample:latest
|
|
kind load docker-image redis:6.2.5
|
|
|
|
pop_fn
|
|
}
|
|
|
|
function launch_docker_registry() {
|
|
push_fn "Launching container registry \"${LOCAL_REGISTRY_NAME}\" at localhost:${LOCAL_REGISTRY_PORT}"
|
|
|
|
# create registry container unless it already exists
|
|
local reg_name=${LOCAL_REGISTRY_NAME}
|
|
local reg_port=${LOCAL_REGISTRY_PORT}
|
|
local reg_interface=${LOCAL_REGISTRY_INTERFACE}
|
|
|
|
running="$(docker inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || true)"
|
|
if [ "${running}" != 'true' ]; then
|
|
docker run \
|
|
--detach \
|
|
--restart always \
|
|
--name "${reg_name}" \
|
|
--publish "${reg_interface}:${reg_port}:5000" \
|
|
registry:2
|
|
fi
|
|
|
|
# connect the registry to the cluster network
|
|
# (the network may already be connected)
|
|
docker network connect "kind" "${reg_name}" || true
|
|
|
|
# Document the local registry
|
|
# https://github.com/kubernetes/enhancements/tree/master/keps/sig-cluster-lifecycle/generic/1755-communicating-a-local-registry
|
|
cat <<EOF | kubectl apply -f -
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: local-registry-hosting
|
|
namespace: kube-public
|
|
data:
|
|
localRegistryHosting.v1: |
|
|
host: "localhost:${reg_port}"
|
|
help: "https://kind.sigs.k8s.io/docs/user/local-registry/"
|
|
EOF
|
|
|
|
pop_fn
|
|
}
|
|
|
|
function stop_docker_registry() {
|
|
push_fn "Deleting container registry \"${LOCAL_REGISTRY_NAME}\" at localhost:${LOCAL_REGISTRY_PORT}"
|
|
|
|
docker kill kind-registry || true
|
|
docker rm kind-registry || true
|
|
|
|
pop_fn
|
|
}
|
|
|
|
function kind_delete() {
|
|
push_fn "Deleting KIND cluster ${CLUSTER_NAME}"
|
|
|
|
kind delete cluster --name $CLUSTER_NAME
|
|
|
|
pop_fn
|
|
}
|
|
|
|
function kind_init() {
|
|
kind_create
|
|
launch_docker_registry
|
|
}
|
|
|
|
function kind_unkind() {
|
|
kind_delete
|
|
stop_docker_registry
|
|
}
|