chore: modernize stack tooling and add e2e tests#16
Merged
leocavalcante merged 2 commits intomainfrom Apr 10, 2026
Merged
Conversation
- Reverse compose detection order: docker compose V2 > V1 > podman Image upgrades: - postgres 17.4, pgadmin 9.2 - mysql 9.3 (remove deprecated auth flag) - redis 7.4, RedisInsight redislabs→redis/redisinsight:3.2.0 (port 5540) - mongo 8.0, mongo-express 1.0.2 - kafka bitnami→apache/kafka:3.9.0, kafbat/kafka-ui:v1.4.2 - rabbitmq 4.1-management-alpine - localstack 4.14.0 - hyperdx 2.23.2 - otel-collector 0.123.0, jaeger 1.76.0, prometheus v3.3.0, grafana 11.6.0 Compose improvements: - Drop deprecated `version: '3'` field - Add healthchecks + `service_healthy` dependencies across all services - Remove jaeger receiver from OTel config (deprecated) - Remove legacy Jaeger ports (14268, 6832) Docs: - Fix pgAdmin port (8039), remove defunct Jaeger rows, fix -d→-f typo Tests: - Add tests/lib.sh with shared helpers (wait_healthy, wait_http, wait_port, etc.) - Add e2e tests for all 10 stack components - Add tests/run-all.sh suite runner with pass/fail summary - Add `make test` target - Add .github/workflows/e2e.yml CI workflow Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…hecks Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Modernizes all Docker Compose components to current stable versions and adds a full e2e test suite.
Stack script
docker composeV2 first, then V1, then podmanImage upgrades
Compose improvements
version: '3'fieldservice_healthydependencies across all servicesKAFKA_CFG_*) to Apache Kafka env var schemajaegerreceiver; traces pipeline uses only[otlp]Tests
tests/lib.sh— shared helpers:wait_healthy,wait_http,wait_port,port_in_use,assert_contains,reporttests/run-all.sh— suite runner with pass/fail summarymake testtarget.github/workflows/e2e.yml— CI workflow on push/PR to main