{"id":42942301,"url":"https://github.com/wechuli/kubernetes-the-hard-way","last_synced_at":"2026-01-30T20:10:26.015Z","repository":{"id":320604706,"uuid":"1081862904","full_name":"wechuli/kubernetes-the-hard-way","owner":"wechuli","description":"Bootstrap Kubernetes the hard way. No scripts.","archived":false,"fork":false,"pushed_at":"2025-10-30T11:58:45.000Z","size":775,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-13T02:52:16.589Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wechuli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":"COPYRIGHT.md","agents":null,"dco":null,"cla":null}},"created_at":"2025-10-23T11:55:36.000Z","updated_at":"2025-10-30T11:58:49.000Z","dependencies_parsed_at":"2025-10-24T19:33:59.133Z","dependency_job_id":null,"html_url":"https://github.com/wechuli/kubernetes-the-hard-way","commit_stats":null,"previous_names":["wechuli/kubernetes-the-hard-way"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wechuli/kubernetes-the-hard-way","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wechuli%2Fkubernetes-the-hard-way","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wechuli%2Fkubernetes-the-hard-way/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wechuli%2Fkubernetes-the-hard-way/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wechuli%2Fkubernetes-the-hard-way/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wechuli","download_url":"https://codeload.github.com/wechuli/kubernetes-the-hard-way/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wechuli%2Fkubernetes-the-hard-way/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28918235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T19:10:10.838Z","status":"ssl_error","status_checked_at":"2026-01-30T19:06:40.573Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-30T20:10:25.226Z","updated_at":"2026-01-30T20:10:26.004Z","avatar_url":"https://github.com/wechuli.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes The Hard Way\n\nThis tutorial walks you through setting up Kubernetes the hard way. This guide is not for someone looking for a fully automated tool to bring up a Kubernetes cluster. Kubernetes The Hard Way is optimized for learning, which means taking the long route to ensure you understand each task required to bootstrap a Kubernetes cluster.\n\n\u003e The results of this tutorial should not be viewed as production ready, and may receive limited support from the community, but don't let that stop you from learning!\n\n## Copyright\n\n\u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"\u003e\u003cimg alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png\" /\u003e\u003c/a\u003e\u003cbr /\u003eThis work is licensed under a \u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"\u003eCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International License\u003c/a\u003e.\n\n\n## Target Audience\n\nThe target audience for this tutorial is someone who wants to understand the fundamentals of Kubernetes and how the core components fit together.\n\n## Cluster Details\n\nKubernetes The Hard Way guides you through bootstrapping a basic Kubernetes cluster with all control plane components running on a single node, and two worker nodes, which is enough to learn the core concepts.\n\nComponent versions:\n\n* [kubernetes](https://github.com/kubernetes/kubernetes) v1.32.x\n* [containerd](https://github.com/containerd/containerd) v2.1.x\n* [cni](https://github.com/containernetworking/cni) v1.6.x\n* [etcd](https://github.com/etcd-io/etcd) v3.6.x\n\n## Labs\n\nThis tutorial requires four (4) ARM64 or AMD64 based virtual or physical machines connected to the same network.\n\n* [Prerequisites](docs/01-prerequisites.md)\n* [Setting up the Jumpbox](docs/02-jumpbox.md)\n* [Provisioning Compute Resources](docs/03-compute-resources.md)\n* [Provisioning the CA and Generating TLS Certificates](docs/04-certificate-authority.md)\n* [Generating Kubernetes Configuration Files for Authentication](docs/05-kubernetes-configuration-files.md)\n* [Generating the Data Encryption Config and Key](docs/06-data-encryption-keys.md)\n* [Bootstrapping the etcd Cluster](docs/07-bootstrapping-etcd.md)\n* [Bootstrapping the Kubernetes Control Plane](docs/08-bootstrapping-kubernetes-controllers.md)\n* [Bootstrapping the Kubernetes Worker Nodes](docs/09-bootstrapping-kubernetes-workers.md)\n* [Configuring kubectl for Remote Access](docs/10-configuring-kubectl.md)\n* [Provisioning Pod Network Routes](docs/11-pod-network-routes.md)\n* [Smoke Test](docs/12-smoke-test.md)\n* [Cleaning Up](docs/13-cleanup.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwechuli%2Fkubernetes-the-hard-way","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwechuli%2Fkubernetes-the-hard-way","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwechuli%2Fkubernetes-the-hard-way/lists"}