{"id":21228952,"url":"https://github.com/anthonycorletti/fullstack-kubernetes","last_synced_at":"2026-04-12T09:43:30.560Z","repository":{"id":115305366,"uuid":"265970925","full_name":"anthonycorletti/fullstack-kubernetes","owner":"anthonycorletti","description":"Deploy a fullstack app on kubernetes anywhere, UI to Secrets.","archived":false,"fork":false,"pushed_at":"2025-06-24T08:10:03.000Z","size":423,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-14T05:03:37.071Z","etag":null,"topics":["apache-pulsar","cloud-native","cockroachdb","docker","fullstack","kubernetes","python38","react-admin","reactjs","shell","vault"],"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/anthonycorletti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-05-21T23:11:51.000Z","updated_at":"2025-05-08T18:51:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"61dfbd0c-bebb-40b4-a679-917e0767d0f3","html_url":"https://github.com/anthonycorletti/fullstack-kubernetes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anthonycorletti/fullstack-kubernetes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonycorletti%2Ffullstack-kubernetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonycorletti%2Ffullstack-kubernetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonycorletti%2Ffullstack-kubernetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonycorletti%2Ffullstack-kubernetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthonycorletti","download_url":"https://codeload.github.com/anthonycorletti/fullstack-kubernetes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonycorletti%2Ffullstack-kubernetes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31710792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"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":["apache-pulsar","cloud-native","cockroachdb","docker","fullstack","kubernetes","python38","react-admin","reactjs","shell","vault"],"created_at":"2024-11-20T23:23:41.646Z","updated_at":"2026-04-12T09:43:30.531Z","avatar_url":"https://github.com/anthonycorletti.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fullstack-kubernetes\n\n\"Why?\", you ask?\n\n![Why not?](https://raw.githubusercontent.com/anthcor/gifs/master/whynot/why-not.gif)\n\nThis project configures and deploys a wicked-simple, full-stack web application\nthat runs entirely on kubernetes and can be deployed in any kubernetes\nenvironment.\n\nThis project uses [Google Cloud Platform's GKE](https://cloud.google.com/kubernetes-engine)\nfor kubernetes servicing, but should work on any managed, or self-managed\nkubernetes cluster with similar configurations as per the specs in the\n`gcloud container clusters create` CLI command.\n\n## what you'll need\n\n- `gcloud`\n- `kubectl`\n- `helm`\n- `docker`\n- `python3.8`\n- `node12`\n\n## what's included?\n\n- **UI**: [react-admin](https://github.com/marmelab/react-admin)\n- **API**: [FastAPI](https://github.com/tiangolo/fastapi)\n- **PubSub**: [Apache Pulsar](https://github.com/apache/pulsar)\n- **DB**: [Cockroach DB](https://github.com/cockroachdb/cockroach)\n- **Secrets**: [Vault](https://github.com/hashicorp/vault)\n\n## what does it do?\n\n- Stores secrets in Vault which are accessed by the restful API.\n- Provides a UI atop the restful API which persists data in Cockroach DB.\n  Why Cockroach DB? [I'll let them tell you](https://www.cockroachlabs.com/docs/stable/training/why-cockroachdb.html).\n- Sends and displays messages with Pulsar in the UI (message persistence is not\n  implemented).\n\n\n## instructions\n\n### create the stack\n```sh\ngit clone https://github.com/anthcor/fullstack-kubernetes\ncd fullstack-kubernetes\n./stackup\n\n⏳\n\nNGINX_CONTROLLER_INGRESS_IP=$(kubectl get services -l component=controller,app=nginx-ingress -o jsonpath=\"{.items[0].status.loadBalancer.ingress[0].ip}\")\ncurl -I -X GET \"http://$NGINX_CONTROLLER_INGRESS_IP/\"\ncurl -I -X GET \"http://$NGINX_CONTROLLER_INGRESS_IP/api/v1/healthcheck\"\n\n# visit the ui\nopen http://$NGINX_CONTROLLER_INGRESS_IP/\n# enter any username and password to interact with the ui\n\n# create an item\nhttp://$NGINX_CONTROLLER_INGRESS_IP/items\n\n# send a message via pulsar\nhttp://$NGINX_CONTROLLER_INGRESS_IP/messages\n\n```\n\n### delete the stack\n```sh\n./cleanup\n```\n\n## production\n\nThis is currently **not** an out-of-the-box, production-ready stack and should\nbe used for development, educational, and instructional purposes only.\n\nIn order for this to be production ready, the following would need to be done/\nadded (this is not an exhaustive list):\n- network encryption at each layer\n- a secured kubernetes cluster\n- user login authentication\n- each stack component would be secured appropriately (with tls, certs, etc)\n- place the api and ui in their own separate host space\n- proper rbac\n- nix helm if you arent prepared to maintain helm charts\n- make each component HA (highly-available)\n- add a backup system ([velero](https://github.com/vmware-tanzu/velero) is a great example)\n- database rollbacks\n- layer autoscaling\n- metrics, logging, and alerting\n- what about cicd and tests? yup that too! [drone](https://drone.io) would be great to have\n- less shell, more [terraform](https://terraform.io)\n\nThese may be added in future updates.\n\n\n## contributions \u0026 suggestions\n\nDid something not work correctly for you? Do you have a question or feature\nsuggestion? Want to add something cool?\n\nLet me know! [Pull requests](https://github.com/anthcor/fullstack-kubernetes/compare)\nand [issues](https://github.com/anthcor/fullstack-kubernetes/issues/new) are\n welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonycorletti%2Ffullstack-kubernetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanthonycorletti%2Ffullstack-kubernetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonycorletti%2Ffullstack-kubernetes/lists"}