{"id":32714881,"url":"https://github.com/atulkamble/k8s-project","last_synced_at":"2026-05-15T11:37:03.193Z","repository":{"id":319621732,"uuid":"1061923885","full_name":"atulkamble/k8s-project","owner":"atulkamble","description":"23-09-2025 | kubernetes, kind, nginx","archived":false,"fork":false,"pushed_at":"2025-09-23T01:20:09.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-15T15:42:07.880Z","etag":null,"topics":["k8s","kind","nginx"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/atulkamble.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-22T15:09:14.000Z","updated_at":"2025-09-23T01:33:16.000Z","dependencies_parsed_at":"2025-10-19T19:31:30.552Z","dependency_job_id":null,"html_url":"https://github.com/atulkamble/k8s-project","commit_stats":null,"previous_names":["atulkamble/k8s-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/atulkamble/k8s-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atulkamble%2Fk8s-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atulkamble%2Fk8s-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atulkamble%2Fk8s-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atulkamble%2Fk8s-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atulkamble","download_url":"https://codeload.github.com/atulkamble/k8s-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atulkamble%2Fk8s-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33065719,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"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":["k8s","kind","nginx"],"created_at":"2025-11-02T13:00:50.292Z","updated_at":"2026-05-15T11:37:03.188Z","avatar_url":"https://github.com/atulkamble.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes Project Scaffold\n\nThis repository provides a minimal, production-ready Kubernetes scaffold using Kustomize with dev and prod overlays.\n\n- See docs: [Architecture](docs/architecture.md), [Theory](docs/theory.md)\n\n## Prerequisites\n- kubectl\n- kustomize (or kubectl \u003e= 1.14 which includes `-k`)\n- kind or a Kubernetes cluster\n- (AWS) awscli and eksctl with credentials configured\n\n## Structure\n```\nk8s-project/\n  LICENSE\n  Makefile\n  README.md\n  kind-config.yaml\n  eksctl-config.yaml\n  .github/\n    workflows/\n      ci.yml\n  base/\n    deployment.yaml\n    ingress.yaml\n    kustomization.yaml\n    namespace.yaml\n    service.yaml\n  overlays/\n    dev/\n      kustomization.yaml\n      patch-deployment.yaml\n      patch-ingress.yaml\n      patch-service.yaml\n    prod/\n      kustomization.yaml\n      patch-ingress.yaml\n      patch-service.yaml\n  scripts/\n    kind-up.sh\n    kind-down.sh\n    eks-up.sh\n    eks-down.sh\n  docs/\n    architecture.md\n    theory.md\n```\n\n## Quick start (kind)\n```bash\nmake kind-up\nmake apply-dev\nopen http://localhost:3000\n```\n\n## Quick start (AWS EKS 2-node)\n```bash\nmake eks-up                          # creates EKS in us-east-1 by default\nmake apply-prod\nkubectl get svc -n demo | grep web\n# copy the EXTERNAL-IP and open http://\u003cexternal-ip\u003e\n```\n\nTo customize:\n```bash\nmake eks-up EKS_CLUSTER_NAME=myproj EKS_REGION=us-west-2\n```\n\nTear down:\n```bash\nmake eks-down EKS_CLUSTER_NAME=myproj EKS_REGION=us-west-2\n```\n\n## Apply/delete\n```bash\nmake apply-dev     # apply dev overlay (NodePort 30080 -\u003e localhost:3000)\nmake delete-dev    # delete dev overlay\nmake apply-prod    # apply prod overlay (Service LoadBalancer)\nmake delete-prod   # delete prod overlay\n```\n\n## Other handy targets\n```bash\nmake help          # list all targets\nmake diff          # show server diff for current OVERLAY (default dev)\nmake build         # render manifests to build.yaml\nmake context       # show kubectl context and namespace\n```\n\n## Configuration\n- `OVERLAY` controls which overlay is used (default `dev`).\n- `NAMESPACE` optionally sets `kubectl -n` for commands.\n- `CLUSTER_NAME` and `KIND_CONFIG` customize Kind cluster creation.\n- `EKS_CLUSTER_NAME`, `EKS_REGION`, and `EKSCTL_CONFIG` customize EKS creation.\n\n## Notes\n- Base uses `nginx` as a placeholder app. Replace image and manifests as needed.\n- Ingress hostnames are placeholders. For Kind, use `http://localhost:3000`. For EKS, use the Service `EXTERNAL-IP` unless you configure an ALB Ingress Controller and DNS.\n\n## 👨‍💻 Author\n\n**Atul Kamble**\n\n- 💼 [LinkedIn](https://www.linkedin.com/in/atuljkamble)\n- 🐙 [GitHub](https://github.com/atulkamble)\n- 🐦 [X](https://x.com/Atul_Kamble)\n- 📷 [Instagram](https://www.instagram.com/atuljkamble)\n- 🌐 [Website](https://www.atulkamble.in)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatulkamble%2Fk8s-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatulkamble%2Fk8s-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatulkamble%2Fk8s-project/lists"}