{"id":24020833,"url":"https://github.com/kausalyanp/kubernates_installation","last_synced_at":"2026-03-06T14:02:06.248Z","repository":{"id":270574550,"uuid":"864505837","full_name":"kausalyanp/Kubernates_installation","owner":"kausalyanp","description":"Steps to install docker, minikube, microk8s","archived":false,"fork":false,"pushed_at":"2025-05-17T12:10:57.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T13:25:39.763Z","etag":null,"topics":["aws","bash","docker","installation","kubernetes","microk8s","minikube","shell","shell-script","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kausalyanp.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,"zenodo":null}},"created_at":"2024-09-28T11:59:15.000Z","updated_at":"2025-05-17T12:11:01.000Z","dependencies_parsed_at":"2025-05-17T13:21:44.973Z","dependency_job_id":"bc4c7adc-a913-4772-84f0-f738c9ebe09f","html_url":"https://github.com/kausalyanp/Kubernates_installation","commit_stats":null,"previous_names":["kausalyanp/kubernates_installation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kausalyanp/Kubernates_installation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausalyanp%2FKubernates_installation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausalyanp%2FKubernates_installation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausalyanp%2FKubernates_installation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausalyanp%2FKubernates_installation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kausalyanp","download_url":"https://codeload.github.com/kausalyanp/Kubernates_installation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausalyanp%2FKubernates_installation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273826885,"owners_count":25175234,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"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":["aws","bash","docker","installation","kubernetes","microk8s","minikube","shell","shell-script","ubuntu"],"created_at":"2025-01-08T12:18:58.537Z","updated_at":"2025-10-05T02:54:08.769Z","avatar_url":"https://github.com/kausalyanp.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernates Installation in Ubuntu on AWS Cloud\n\n## Steps to install docker, minikube, microk8s:\n\nRequirement:\n1. Instance type: t2.medium (AWS)\n2. Ubuntu 22.04 system\n3. 25 GiB free disk\n\n### Docker installation\n(create a file.sh enter below code there and install the docker on Ubuntu)\n\n```\n#!/bin/bash\n\n# Update the server and add the Docker official gpg keys:\n\nsudo apt-get update\nsudo apt install ca-certificates curl gnupg wget apt-transport-https -y\nsudo install -m 0755 -d /etc/apt/keyrings\ncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg\nsudo chmod a+r /etc/apt/keyrings/docker.gpg\n\n# Add the repository to Apt sources:\n\necho \\\n  \"deb [arch=\"$(dpkg --print-architecture)\" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \\\n  \"$(. /etc/os-release \u0026\u0026 echo \"$VERSION_CODENAME\")\" stable\" | \\\n  sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null\nsudo apt-get update\n\n# Install Latest docker and docker packages\n\nsudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin\n```\n\n### Ensure that curl is also installed:\n```\nsudo apt-get update \u0026\u0026 sudo apt-get install curl -y\n```\n\n### Install VirtualBox (if not already installed)\n```\nsudo apt-get update\nsudo apt-get install conntrack -y\nsudo apt-get install curl wget apt-transport-https -y\nsudo apt-get install virtualbox virtualbox-ext-pack -y\n```\nPress on right arrow key then enter to accept the acknowledgement\n\n### Install kubectl\n(create a file kube.sh and then enter below code and install the kubectl on ubuntu)\n```\n#!/bin/bash \nsudo apt-get update\n\n# apt-transport-https may be a dummy package; if so, you can skip that package\n\nsudo apt-get install -y apt-transport-https ca-certificates curl gnupg\n\n# If the folder `/etc/apt/keyrings` does not exist, it should be created before the curl command, read the note below.\n\nsudo mkdir -p -m 755 /etc/apt/keyrings\ncurl -fsSL https://pkgs.k8s.io/core:/stable:/v1.31/deb/Release.key | sudo gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg\nsudo chmod 644 /etc/apt/keyrings/kubernetes-apt-keyring.gpg # allow unprivileged APT programs to read this keyring\n\n# This overwrites any existing configuration in /etc/apt/sources.list.d/kubernetes.list\n\necho 'deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.31/deb/ /' | sudo tee /etc/apt/sources.list.d/kubernetes.list\nsudo chmod 644 /etc/apt/sources.list.d/kubernetes.list   # helps tools such as command-not-found to work correctly\n\nsudo apt-get update\nsudo apt-get install -y kubectl\n```\n\n### Install minikube\n```\ncurl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\nsudo install minikube-linux-amd64 /usr/local/bin/minikube\n```\nCheck the minikube version and if docker ir running:\n```\nminikube version\ndocker --version\n```\n\n### Add the Ubuntu permission to docker group, since the minikube does not run on root user.\n```\nsudo usermod -aG docker $USER \u0026\u0026 newgrp docker\necho $USER\n```\n\n### Once all dependencies are installed, you can start Minikube.Start Minikube:\n```\nminikube start --driver=docker\n```\n## Note:\n1. Try running commands to check the nodes.\n   ```\n   kubectl get nodes\n   ```\n2. Check minikube status:\n   ```\n   minikube status\n   ```\n   \n\u003e\u003e  Created By Kausalya N P\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkausalyanp%2Fkubernates_installation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkausalyanp%2Fkubernates_installation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkausalyanp%2Fkubernates_installation/lists"}