fix: add 4 missing microservices and all infrastructure to K8s manifests - #87
Merged
Senthil455 merged 1 commit intoJun 17, 2026
Conversation
The K8s manifests were missing 4 microservices and all 6 infrastructure components defined in docker-compose.yml. Missing services added to k8s/deployments.yaml and k8s/services.yaml: - integration-service (port 8016) - employee-lifecycle-service (port 8020) - security-service (port 8050) - ai-service (port 8065) New k8s/infrastructure.yaml with StatefulSets/Deployments: - postgres (StatefulSet, 15-alpine, port 5432) - mongodb (StatefulSet, mongo:6, port 27017) - redis (Deployment, 7-alpine, port 6379) - rabbitmq (Deployment, 3-management-alpine, ports 5672/15672) - zookeeper (Deployment, cp-zookeeper:7.5.0, port 2181) - kafka (Deployment, cp-kafka:7.5.0, port 9092) New k8s/infrastructure-services.yaml with Services for all infrastructure. All deployments follow the existing pattern: security context, resource limits, health probes on /health (or tcpSocket for infrastructure), and envFrom with atlas-secrets secret reference.
Senthil455
reviewed
Jun 17, 2026
Senthil455
left a comment
Owner
There was a problem hiding this comment.
gh: Not Found (HTTP 404)
{"message":"Not Found","documentation_url":"https://docs.github.com/rest/issues/comments#get-an-issue-comment","status":"404"}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The K8s manifests were missing 4 microservices and all 6 infrastructure components defined in \docker-compose.yml, making it impossible to deploy the full system on Kubernetes (Fix : #56).
Changes
Missing services added to \k8s/deployments.yaml\ and \k8s/services.yaml\
New \k8s/infrastructure.yaml\
New \k8s/infrastructure-services.yaml\
Services for all 6 infrastructure components, matching the internal DNS names used by microservices (e.g., \postgres:5432, \kafka:9092,
edis:6379).
Design decisions
Verification