{"id":24678936,"url":"https://github.com/isodevmate/kubernetes","last_synced_at":"2026-02-09T20:40:12.219Z","repository":{"id":262445068,"uuid":"858908450","full_name":"IsoDevMate/kubernetes","owner":"IsoDevMate","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-12T12:55:37.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T00:30:17.105Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/IsoDevMate.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-09-17T18:34:23.000Z","updated_at":"2024-11-12T12:55:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"53e55baf-5bc5-4c4f-ba2a-d48f9886122d","html_url":"https://github.com/IsoDevMate/kubernetes","commit_stats":null,"previous_names":["isodevmate/kubernetes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IsoDevMate/kubernetes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IsoDevMate%2Fkubernetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IsoDevMate%2Fkubernetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IsoDevMate%2Fkubernetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IsoDevMate%2Fkubernetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IsoDevMate","download_url":"https://codeload.github.com/IsoDevMate/kubernetes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IsoDevMate%2Fkubernetes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29280428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T19:05:41.198Z","status":"ssl_error","status_checked_at":"2026-02-09T19:05:37.449Z","response_time":56,"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":[],"created_at":"2025-01-26T13:19:32.073Z","updated_at":"2026-02-09T20:40:12.205Z","avatar_url":"https://github.com/IsoDevMate.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes Application Documentation\n\nThis repository contains Kubernetes configurations for deploying a MongoDB database with a web application. The setup includes secrets management, deployments, and services.\n\n## Repository Structure\n\n├── mongo-secret.yml    # MongoDB credentials\n├── configmap.yml       # MongoDB configuration\n├── mongo.yaml          # MongoDB deployment and service\n└── webapp.yml          # Web application deployment and service\n\n\n ### Components Overview\n1. Secret Configuration (mongo-secret.yml)\n    - Contains encoded credentials for MongoDB authentication.\n    - Base64 encoded username and password.\n\n2. MongoDB Deployment (mongo.yaml)\n    - Single replica deployment.\n    - Windows Server Core-based MongoDB container.\n    - Secret integration for authentication.\n    - Internal service exposure.\n    - Key features:\n      - Image: mongo:windowsservercore-ltsc2022\n      - Port: 27017 (MongoDB default)\n      - Environment variables sourced from secrets.\n      - ClusterIP service type for internal access.\n\n3. Web Application Deployment (webapp.yml)\n    - Single replica deployment.\n    - Integration with MongoDB using ConfigMap and Secrets.\n    - NodePort service for external access.\n    - Key features:\n      - Image: nanajanashia/k8s-demo-app:v1.0\n      - Port: 3000 (application port)\n      - NodePort: 30008 (external access)\n      - Environment variables:\n         - DB_URL (from ConfigMap)\n         - USER_NAME (from Secret)\n         - USER_PWD (from Secret)\n\n### Services\n- MongoDB Service (mongo-service)\n  - Type: ClusterIP\n  - Port: 8080\n  - Target Port: 27017\n\n- Web Application Service (webapp-service)\n  - Type: NodePort\n  - Port: 8080\n  - Target Port: 3000\n  - Node Port: 30008\n\nDeployment Instructions\n1. Apply the secret first:\n    ```bash\n    kubectl apply -f mongo-secret.yml\n    ```\n\n2. Apply the ConfigMap:\n    ```bash\n    kubectl apply -f configmap.yml\n    ```\n\n3. Deploy MongoDB:\n    ```bash\n    kubectl apply -f mongo.yaml\n    ```\n\n4. Deploy the web application:\n    ```bash\n    kubectl apply -f webapp.yml\n    ```\n\n### Security Notes\n- Secrets are base64 encoded but should be handled securely.\n- MongoDB credentials are managed through Kubernetes Secrets.\n- Internal communication is handled through ClusterIP service.\n- External access is only available to the web application through NodePort 30008.\n\n### Dependencies\n- Kubernetes cluster\n- kubectl CLI tool\n- Access to specified container images:\n  - mongo:windowsservercore-ltsc2022\n  - nanajanashia/k8s-demo-app:v1.0\n\n### Network Architecture\n- MongoDB runs on port 27017 (internal).\n- Web application runs on port 3000 (internal).\n- External access available on node port 30008.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisodevmate%2Fkubernetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisodevmate%2Fkubernetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisodevmate%2Fkubernetes/lists"}