-
Notifications
You must be signed in to change notification settings - Fork 0
fix: remove helm service dependency and fix mongo image reference #560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR removes the external helm-service dependency and inlines the component templates directly into the chart. The database configuration is updated to reference a custom-built database image instead of directly using the external mongo image.
Changes:
- Removed helm-service dependency from Chart.yaml and deleted Chart.lock
- Inlined Helm templates for api, frontend, and database components (previously sourced from external component chart)
- Updated database image references to use project-specific database image with global registry/repository configuration
- Added defensive
default ""wrapper for optional powerBIURL secret value - Updated CI/CD workflows to build, deploy, and cleanup the database package alongside api and frontend
Reviewed changes
Copilot reviewed 22 out of 23 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| charts/pubcode/Chart.yaml | Removed external component chart dependencies |
| charts/pubcode/Chart.lock | Deleted lock file for removed dependencies |
| charts/pubcode/values.yaml | Changed database image from external mongo to project-specific database image using global registry/repository pattern |
| charts/pubcode/templates/secret.yaml | Added defensive default empty string for optional powerBIURL |
| charts/pubcode/templates/frontend/templates/*.yaml | Added inlined frontend component templates (service, pdb, ingress, hpa, deployment) |
| charts/pubcode/templates/frontend/templates/_helpers.tpl | Added frontend template helper functions |
| charts/pubcode/templates/database/templates/*.yml | Added inlined database component templates (sfs, service, pvc) |
| charts/pubcode/templates/database/templates/_helpers.tpl | Added database template helper functions with compatibility aliases |
| charts/pubcode/templates/api/templates/*.yml | Added inlined api component templates (service, pdb, ingress, hpa, deployment) |
| charts/pubcode/templates/api/templates/_helpers.tpl | Added api template helper functions |
| .github/workflows/pr-open.yml | Added database to build matrix and deployment parameters |
| .github/workflows/pr-close.yml | Added database to cleanup packages list |
| .github/workflows/merge.yml | Added database to retag matrix and deployment parameters for test and prod environments |
Thanks for the PR!
Any successful deployments (not always required) will be available below.
API available
Frontend available
Once merged, code will be promoted and handed off to following workflow run.
Main Merge Workflow