refactor: migrate from Kubernetes to Docker Compose deployment#2399
Closed
SatoryKono wants to merge 1 commit intomainfrom
Closed
refactor: migrate from Kubernetes to Docker Compose deployment#2399SatoryKono wants to merge 1 commit intomainfrom
SatoryKono wants to merge 1 commit intomainfrom
Conversation
- Rewrite scripts/deploy-bioetl.sh: remove all kubectl/k8s references, use Docker Compose to orchestrate app + infra + monitoring services - Add docker-compose.app.yml: BioETL application service definition using the multi-stage Dockerfile from docs/05-operations - Add Makefile targets: deploy, deploy-status, deploy-stop, deploy-update, deploy-teardown, deploy-logs for convenient deployment management - Add backup/restore, shell, and run-pipeline actions to deploy script - Aligns with ADR-010 (Local-Only Deployment model) https://claude.ai/code/session_01P4MZFVobVkix1c6FCXmu9g
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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
Migrate BioETL deployment infrastructure from Kubernetes to Docker Compose, implementing ADR-010 (Local-Only Deployment). This change simplifies the deployment model for development and staging environments while maintaining full feature parity with the previous Kubernetes setup.
Changes
scripts/deploy-bioetl.sh: Complete rewrite from Kubernetes-based deployment to Docker Compose orchestration
kubectlcommands withdocker composeequivalentsstart,stop,restart,shell,run-pipeline,backup,restorecommandsset -euo pipefailand prerequisite checksdocker-compose.app.yml: New file defining BioETL application service
.envfileMakefile: Added deployment convenience targets
deploy: Full stack deploymentdeploy-status: Service status checkdeploy-stop: Stop services (preserve data)deploy-update: Rebuild and restart app onlydeploy-teardown: Destructive cleanupdeploy-logs: Log streamingBenefits
shell,run-pipeline,backup/restoreimprove developer experienceChecklist
make lintpassesmake testpasses (no new tests required—deployment script is operational).envfile)Notes
k8s-*.yaml) are no longer used; can be archived or removed in follow-up.envfile is required; script copies from.env.exampleif missingdocker-compose.ymlanddocker-compose.monitoring.ymlare reusedstop/startcycles; onlyteardownis destructivehttps://claude.ai/code/session_01P4MZFVobVkix1c6FCXmu9g