{"id":20817216,"url":"https://github.com/kgoksal/microservice-web-application","last_synced_at":"2026-04-21T05:35:07.597Z","repository":{"id":237536989,"uuid":"794671347","full_name":"KGoksal/Microservice-Web-Application","owner":"KGoksal","description":"This project utilizes Docker and Kubernetes to orchestrate a web application with MySQL Database. The application comprises frontend and backend services managed by Kubernetes deployments.","archived":false,"fork":false,"pushed_at":"2024-05-04T20:10:17.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T05:42:26.256Z","etag":null,"topics":["dockerfile","helm","helm-chart","horizontal-pod-autoscaler","kubernetes","kubernetes-cluster","kubernetes-deployment","mysql","persistent-volume","pvc","webserver"],"latest_commit_sha":null,"homepage":"","language":null,"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/KGoksal.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}},"created_at":"2024-05-01T17:52:33.000Z","updated_at":"2024-07-21T15:38:59.000Z","dependencies_parsed_at":"2024-05-04T20:42:10.466Z","dependency_job_id":"dcf34fdd-5631-4ed1-a8ba-1035a30fc685","html_url":"https://github.com/KGoksal/Microservice-Web-Application","commit_stats":null,"previous_names":["abdulkadirgoksal/mygithubrepo","kgoksal/mygithubrepo","kgoksal/microservice-web-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KGoksal/Microservice-Web-Application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KGoksal%2FMicroservice-Web-Application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KGoksal%2FMicroservice-Web-Application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KGoksal%2FMicroservice-Web-Application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KGoksal%2FMicroservice-Web-Application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KGoksal","download_url":"https://codeload.github.com/KGoksal/Microservice-Web-Application/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KGoksal%2FMicroservice-Web-Application/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266473051,"owners_count":23934476,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["dockerfile","helm","helm-chart","horizontal-pod-autoscaler","kubernetes","kubernetes-cluster","kubernetes-deployment","mysql","persistent-volume","pvc","webserver"],"created_at":"2024-11-17T21:39:56.529Z","updated_at":"2026-04-21T05:35:07.556Z","avatar_url":"https://github.com/KGoksal.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Phonebook Microservice Web Application\n\nThe Phonebook Microservice Web Application is designed to provide students with a practical understanding of Microservice architecture by implementing a web application with MySQL Database using Docker and Kubernetes. The project encompasses frontend and backend services interacting with a database service, each managed by Kubernetes deployments. The backend service acts as a gateway, facilitating create, delete, and update operations, while the frontend service enables read operations through a search page. To ensure data persistence, concepts such as persistent volume and persistent volume claim are employed.\n\n## Project Structure\n\n```\nKubernetes-Microservice-Phonebook/\n│\n├── Initial files/\n│   ├── README.md\n│   ├── Image_for_web_server/\n│   │   ├── app.py      \n│   │   ├── requirements.txt              \n│   │   └── templates/\n│   │       ├── index.html\n│   │       ├── add-update.html\n│   │       └── delete.html\n│   └── image_for_result_server/\n│       ├── app.py           \n│       ├── requirements.txt              \n│       └── templates/\n│           └── index.html\n│\n├── ADD_DELETE_UPDATE/\n│   ├── Dockerfile\n│   ├── web_server_deployment.yml\n│   └── web_server_service.yaml\n│\n├── SEARCH/\n│   ├── Dockerfile\n│   ├── result_server_deployment.yml\n│   └── result_server_service.yaml\n│\n├── DATABASE/\n│   ├── mysql_deployement.yml\n│   ├── mysql_service.yaml\n│   ├── persistent_volume.yaml\n│   └── persistent_volume_claim.yaml\n│\n└── SECRETS_CONFIGMAP/\n    ├── mysql-secret.yaml\n    ├── database_configmap.yaml\n    └── servers_configmap.yaml\n```\n\n## Kubernetes Objects\n\n### ADD/DELETE/UPDATE Deployment and Service\n- **Dockerfile:** Docker configuration for the backend service.\n- **web_server_deployment.yml:** Deployment configuration for the backend service.\n- **web_server_service.yaml:** Service configuration for the backend service.\n\n### SEARCH Deployment and Service\n- **Dockerfile:** Docker configuration for the frontend service.\n- **result_server_deployment.yml:** Deployment configuration for the frontend service.\n- **result_server_service.yaml:** Service configuration for the frontend service.\n\n### DATABASE Deployment and Service\n- **mysql_deployement.yml:** Deployment configuration for the MySQL database.\n- **mysql_service.yaml:** Service configuration for the MySQL database.\n- **persistent_volume.yaml:** Definition for persistent volume to ensure data persistence.\n- **persistent_volume_claim.yaml:** Configuration for persistent volume claim.\n\n### Secrets and ConfigMap\n- **mysql-secret.yaml:** Definition for MySQL database credentials.\n- **database_configmap.yaml:** Configuration for database settings.\n- **servers_configmap.yaml:** Configuration for server settings.\n\n### Horizontal Pod Autoscale\nHorizontal pod autoscale for both web server and result server is implemented.\n\nPlease feel free to adjust and expand upon this README as needed for your project documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkgoksal%2Fmicroservice-web-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkgoksal%2Fmicroservice-web-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkgoksal%2Fmicroservice-web-application/lists"}