improvement(helm): added missing optional envvars to helm for whitelabeling#2711
Merged
waleedlatif1 merged 1 commit intostagingfrom Jan 7, 2026
Merged
improvement(helm): added missing optional envvars to helm for whitelabeling#2711waleedlatif1 merged 1 commit intostagingfrom
waleedlatif1 merged 1 commit intostagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryAdded four previously missing optional environment variables to the Helm chart for whitelabeling functionality: Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User as Helm User
participant Helm as Helm Chart
participant K8s as Kubernetes
participant App as Sim Application
participant Config as Environment Config
User->>Helm: helm install/upgrade with values.yaml
Note over Helm: values.yaml contains new optional envvars:<br/>NEXT_PUBLIC_BRAND_PRIMARY_COLOR<br/>NEXT_PUBLIC_BRAND_ACCENT_COLOR<br/>NEXT_PUBLIC_BRAND_BACKGROUND_COLOR<br/>DISABLE_REGISTRATION
Helm->>K8s: Generate deployment manifest
Note over K8s: deployment-app.yaml template<br/>iterates over app.env values
K8s->>App: Create/Update container with environment variables
App->>Config: Load environment variables (env.ts)
Note over Config: Validates color format with regex<br/>(#[0-9A-Fa-f]{6})<br/>Validates DISABLE_REGISTRATION as boolean
Config->>App: Provide validated configuration
App->>App: Apply branding theme (branding.ts, inject-theme.ts)
Note over App: Uses color values for CSS custom properties<br/>Controls registration based on flag
App->>User: Whitelabeled application ready
|
waleedlatif1
added a commit
that referenced
this pull request
Jan 8, 2026
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
Type of Change
Testing
Tested manually
Checklist