{"id":15151601,"url":"https://github.com/pasiol/edunetes","last_synced_at":"2026-01-20T13:01:35.727Z","repository":{"id":252515329,"uuid":"840657444","full_name":"pasiol/edunetes","owner":"pasiol","description":"Kubernetes self-study environment for the Ubuntu 22.04","archived":false,"fork":false,"pushed_at":"2024-10-23T18:28:20.000Z","size":130,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-23T21:44:25.847Z","etag":null,"topics":["ansible","kubernetes","kvm-hypervisor","ubuntu2204"],"latest_commit_sha":null,"homepage":"","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pasiol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2024-08-10T09:33:58.000Z","updated_at":"2024-10-23T18:22:57.000Z","dependencies_parsed_at":"2024-10-25T21:23:09.549Z","dependency_job_id":null,"html_url":"https://github.com/pasiol/edunetes","commit_stats":{"total_commits":26,"total_committers":1,"mean_commits":26.0,"dds":0.0,"last_synced_commit":"54430b6fa1a4d88f066f3506bfcdbf6aa252687c"},"previous_names":["pasiol/edunetes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pasiol/edunetes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pasiol%2Fedunetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pasiol%2Fedunetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pasiol%2Fedunetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pasiol%2Fedunetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pasiol","download_url":"https://codeload.github.com/pasiol/edunetes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pasiol%2Fedunetes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"last_error":"SSL_read: 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":["ansible","kubernetes","kvm-hypervisor","ubuntu2204"],"created_at":"2024-09-26T15:04:28.533Z","updated_at":"2026-01-20T13:01:35.711Z","avatar_url":"https://github.com/pasiol.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Edunetes - Kubernetes self-study environment on the Ubuntu 22.04 laptop\n\nA light-weight Kubernetes distribution for educational purposes. Run the latest Vanilla Kubernetes on a single workstation or laptop.\n\n## Features\n\n- Vanilla Kubernetes from pkgs.k8s.io repository\n- Flannel or Calico CNI plugin\n- MetalLB loadbalander\n- one control plane and multiple worker nodes\n\n### Options\n\n- Headlamp\n- ArgoCD\n\n## Requirements\n\n- KVM host on Ubuntu 22.04\n- Python 3.10 virtual environment\n- modern multithread computer 16gb memory for 2 nodes, 32gb memory for 4 nodes\n\n[Setting up KVM host and installing Terraform](docs/SET-UP-KMV-HOST-UBUNTU-22.04.md)\n\n## Cluster configuration files\n\n[Configuration](group_vars/all/main.yaml)\n[Configuration](group_vars/all/nodes.yaml)\n\n## Nodes (Ubuntu 22.04)\n\nAnsible playbook which creates KVM-based Ubuntu 22.04 nodes\n\n    ansible-playbook playbook-cluster-create.yaml -c local -K\n\n## Cluster configuration\n\nConfigure a Kubernetes cluster with following playbooks.\n\n    ansible-playbook playbook-cluster-nodes-prepare.yaml --private-key=.ssh/id_edunetes -u kubeadmin\n    ansible-playbook playbook-cluster-nodes-control-node-set-up.yaml --private-key=.ssh/id_edunetes -u kubeadmin\n    ansible-playbook playbook-cluster-nodes-workers-join.yaml --private-key=.ssh/id_edunetes -u kubeadmin\n    ansible-playbook playbook-cluster-finalize.yaml --private-key=.ssh/id_edunetes -u kubeadmin\n\nAfter configuration, you can check the status of the cluster and pods with the following commands.\n\n    kubectl get nodes -o wide\n    NAME                             STATUS   ROLES           AGE     VERSION   INTERNAL-IP     EXTERNAL-IP   OS-IMAGE             KERNEL-VERSION       CONTAINER-RUNTIME\n    control-plane01.edunetes.local   Ready    control-plane   5m52s   v1.31.2   172.16.254.11   \u003cnone\u003e        Ubuntu 22.04.5 LTS   5.15.0-119-generic   containerd://1.7.12\n    worker01.edunetes.local          Ready    \u003cnone\u003e          5m3s    v1.31.2   172.16.254.21   \u003cnone\u003e        Ubuntu 22.04.5 LTS   5.15.0-119-generic   containerd://1.7.12\n    worker02.edunetes.local          Ready    \u003cnone\u003e          5m4s    v1.31.2   172.16.254.22   \u003cnone\u003e        Ubuntu 22.04.5 LTS   5.15.0-119-generic   containerd://1.7.12\n    worker03.edunetes.local          Ready    \u003cnone\u003e          5m3s    v1.31.2   172.16.254.23   \u003cnone\u003e        Ubuntu 22.04.5 LTS   5.15.0-119-generic   containerd://1.7.12\n\n    kubectl get pods -A -o wide\n    NAMESPACE            NAME                                                     READY   STATUS    RESTARTS        AGE     IP              NODE                             NOMINATED NODE   READINESS GATES\n    kube-flannel         kube-flannel-ds-4bghc                                    1/1     Running   0               6m24s   172.16.254.23   worker03.edunetes.local          \u003cnone\u003e           \u003cnone\u003e\n    kube-flannel         kube-flannel-ds-b4k2d                                    1/1     Running   0               7m5s    172.16.254.11   control-plane01.edunetes.local   \u003cnone\u003e           \u003cnone\u003e\n    kube-flannel         kube-flannel-ds-hcq86                                    1/1     Running   0               6m24s   172.16.254.21   worker01.edunetes.local          \u003cnone\u003e           \u003cnone\u003e\n    ...\n\n## Removing cluster\n\n    ansible-playbook -i inventory.yaml playbook-cluster-destroy.yaml -K\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpasiol%2Fedunetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpasiol%2Fedunetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpasiol%2Fedunetes/lists"}