ci: scaffold e2e testing framework infrastructure #763
+388
−6
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.
ℹ️ NO GH ISSUE
This commit establishes the foundational infrastructure for end-to-end testing of the workspaces components. This is an intermediate step that sets up the testing framework; no actual test execution is implemented yet and will be added in subsequent work.
Changes include:
Add new
testing/directory with Makefile and setup scripts:setup-kind.sh: Automated Kind cluster creation and configurationsetup-cert-manager.sh: Cert-manager installation (v1.12.13 LTS)setup-istio.sh: Istio service mesh installationAdd GitHub Actions workflow (
.github/workflows/ws-e2e-test.yml):Update workspace Makefiles (backend, controller, frontend):
.output/directories for kustomize operations, preventing modification of source manifestsUpdate .gitignore files:
.output/directories to prevent committing generated kustomize artifactsThe framework enables automated deployment of all three components (controller, backend, frontend) to a Kind cluster with cert-manager and Istio pre-configured, providing the foundation for comprehensive e2e test scenarios in future commits.