feat(ilf-interledger-app): support for app v1.9.0#431
Merged
Conversation
RaulBR
approved these changes
Apr 17, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Interledger App Helm charts to target application release v1.9.0 and adds new backend configuration values (email/SendGrid, Persona base URL override, signup agreement IDs) with corresponding helm-unittest coverage.
Changes:
- Bump
appVersiontov1.9.0for interledger-app frontend, backend, and admin charts. - Add new backend config values and wire them into the backend ConfigMap environment variables.
- Extend backend helm-unittest suite to assert new ConfigMap keys/defaults and overrides.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| charts/interledger-app/frontend/Chart.yaml | Updates chart appVersion to v1.9.0. |
| charts/interledger-app/backend/values.yaml | Adds new backend config values and maps them into the generated ConfigMap env vars. |
| charts/interledger-app/backend/tests/deployment.server.configmaps_test.yaml | Adds helm-unittest assertions for new ConfigMap keys and override behavior. |
| charts/interledger-app/backend/Chart.yaml | Updates chart appVersion to v1.9.0. |
| charts/interledger-app/admin/Chart.yaml | Updates chart appVersion to v1.9.0. |
github-actions Bot
added a commit
that referenced
this pull request
Apr 17, 2026
Automated chart versioning after merge of PR #431. This PR updates Chart.yaml versions, packages updated charts into docs/interledger, and regenerates the Helm index. Co-authored-by: bosbaber <1615407+bosbaber@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.
This pull request updates the Helm charts for the Interledger app, introducing new configuration options for email, Persona API, and signup agreements, as well as updating the app version across all components. The changes improve flexibility and control over backend configuration, especially for email and user onboarding flows.
Chart version updates:
appVersionfromv1.7.9tov1.9.0inadmin,backend, andfrontendHelm charts, ensuring all components reference the latest application version. [1] [2] [3]Backend configuration enhancements:
values.yamlfor email (enable/disable, SendGrid sender details, template ID), Persona API base URL override, and required signup agreement IDs. [1] [2] [3]EMAIL_ENABLED,SENDGRID_FROM_NAME,SENDGRID_FROM_EMAIL,SENDGRID_ONE_TEMPLATE_ID,PERSONA_BASE_URL, andSIGNUP_AGREEMENT_IDS.Testing improvements: