Add Docker and Kubernetes configurations for Responsible AI services #62
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.
reference issue#61
flowchart LR Dev["Developer (Local)"] Repo["GitHub Repository"] ENV["Central .env File"] subgraph DockerCompose [Local Environment - Docker Compose] Compose["docker-compose.yml"] Admin["Admin UI"] Backend["Backend API"] Fairness["Fairness Module"] Privacy["Privacy Module"] Moderation["Moderation Module"] Explain["Explainability Module"] Bench["Benchmarking Module"] end subgraph K8s [Local Cluster - Minikube / Kubernetes] Helm["Helm Charts / Manifests"] Services["Responsible AI Services Namespace"] end subgraph CICD [CI/CD Pipeline] Act["act (Local GitHub Actions Runner)"] GHA["GitHub Actions Workflows"] Registry["Container Registry"] Artifacts["Build Artifacts / Reports"] end Dev -->|"git push / PR"| Repo Dev -->|Run Compose locally| Compose ENV --> Compose ENV --> Helm Compose --> Admin Compose --> Backend Compose --> Fairness Compose --> Privacy Compose --> Moderation Compose --> Explain Compose --> Bench Helm --> Services Repo --> GHA Dev --> Act Act --> GHA GHA -->|Build & Push Images| Registry GHA -->|Upload| Artifacts GHA -->|Optional Deploy| Services Registry --> Compose Registry --> Services Artifacts --> Dev