{"id":23513199,"url":"https://github.com/abousselmi/k8s-kind","last_synced_at":"2026-04-20T10:32:15.415Z","repository":{"id":146047113,"uuid":"254102754","full_name":"abousselmi/k8s-kind","owner":"abousselmi","description":"A simple script to bootstrap a kubernetes cluster (single or multi node) based on kind and docker","archived":false,"fork":false,"pushed_at":"2020-08-31T15:58:00.000Z","size":26,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-13T20:32:23.364Z","etag":null,"topics":["bash","development-environment","kind","kubernetes","kubernetes-cluster"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abousselmi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-08T13:55:58.000Z","updated_at":"2022-09-13T19:45:06.000Z","dependencies_parsed_at":"2023-04-21T15:34:29.694Z","dependency_job_id":null,"html_url":"https://github.com/abousselmi/k8s-kind","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abousselmi/k8s-kind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abousselmi%2Fk8s-kind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abousselmi%2Fk8s-kind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abousselmi%2Fk8s-kind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abousselmi%2Fk8s-kind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abousselmi","download_url":"https://codeload.github.com/abousselmi/k8s-kind/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abousselmi%2Fk8s-kind/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32043011,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","development-environment","kind","kubernetes","kubernetes-cluster"],"created_at":"2024-12-25T13:43:10.841Z","updated_at":"2026-04-20T10:32:15.398Z","avatar_url":"https://github.com/abousselmi.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes: the simple way\n\nA simple script to bootstrap a kubernetes cluster based on kind and docker.\n\n## Prerequisites\n\nKind uses **Docker** to create cluster nodes. To install docker, please refer to: https://docs.docker.com/get-docker/\n\n## Usage\n\n```shell\n$ git clone https://github.com/abousselmi/k8s-kind.git\n$ cd k8s-kind\n$ sudo ./k8s-kind.sh -m start\n```\n\n```shell\nUsage: ./k8s-kind.sh OPTION COMMAND\n\nOptions:\n  -m      bootstrap a multi node cluster\n  -s      bootstrap a single node cluster\n\nCommands:\n  start   setup kubernetes cluster\n  stop    remove the current cluster\n  help    print usage\n\nExample:\n  To bootstrap a multi node ckuster, you can do:\n  sudo ./k8s-kind.sh -m start\n```\n\n## Sample output\n\n```shell\n🔥 07:14:21 PM[INFO] start bootstrapping.. \n🔥 07:14:21 PM[INFO] check dependencies.. \n🔥 07:14:21 PM[INFO] 'curl' is installed, continue.. \n🔥 07:14:21 PM[INFO] 'docker' is installed, continue.. \n🔥 07:14:21 PM[INFO] 'kind' is already installed, continue.. \n🔥 07:14:21 PM[INFO] 'kubectl' is already installed, continue.. \n🔥 07:14:21 PM[INFO] enable 'kubectl' autocompletion \n🔥 07:14:21 PM[INFO] create kubernetes cluster 'k8s' \nCreating cluster \"k8s\" ...\n ✓ Ensuring node image (kindest/node:v1.17.0) 🖼\n ✓ Preparing nodes 📦 📦 📦  \n ✓ Writing configuration 📜 \n ✓ Starting control-plane 🕹️ \n ✓ Installing CNI 🔌 \n ✓ Installing StorageClass 💾 \n ✓ Joining worker nodes 🚜 \nSet kubectl context to \"kind-k8s\"\nYou can now use your cluster with:\n\nkubectl cluster-info --context kind-k8s\n\nHave a question, bug, or feature request? Let us know! https://kind.sigs.k8s.io/#community 🙂\n🔥 07:15:15 PM[INFO] specify the cluster 'k8s' as the current context for kubectl \nKubernetes master is running at https://127.0.0.1:32771\nKubeDNS is running at https://127.0.0.1:32771/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy\n\nTo further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.\n🔥 07:15:16 PM[INFO] Update kubernetes config ownership \n🔥 07:15:16 PM[INFO] finished in 55 seconds.\n```\n\n## Licence\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabousselmi%2Fk8s-kind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabousselmi%2Fk8s-kind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabousselmi%2Fk8s-kind/lists"}