younsl opened a new pull request, #41073:
URL: https://github.com/apache/superset/pull/41073

   ### SUMMARY
   
   Adds an optional Gateway API HTTPRoute template to the Superset Helm chart 
so the application can be exposed through a Gateway as an alternative to the 
existing Ingress resource. This helps clusters that have standardized on 
Gateway API instead of the legacy Ingress API.
   
   The template is gated behind httproute.enabled, which defaults to false, so 
existing deployments are unaffected and nothing renders unless explicitly 
enabled. Backend traffic targets the existing Superset Service on the 
configured service port, reusing the chart standard naming and shared labels. 
The values expose parentRefs, hostnames, labels, annotations, and a rules list 
supporting matches, filters, and timeouts, defaulting to a single PathPrefix 
rule.
   
   The chart version is bumped from 0.16.0 to 0.17.0 for the new feature, in 
line with prior feature additions. The appVersion is unchanged since the 
Superset application is not affected. The README values table is regenerated 
via helm-docs.
   
   ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
   
   Not applicable.
   
   ### TESTING INSTRUCTIONS
   
   1. Install the Gateway API CRDs in the cluster.
   2. Render with the feature enabled and verify the HTTPRoute output:
   
   ```
   helm template t helm/superset \
     --set httproute.enabled=true \
     --set 'httproute.parentRefs[0].name=my-gateway' \
     --set 'httproute.hostnames[0]=superset.example.com' \
     --show-only templates/httproute.yaml
   ```
   
   3. Confirm that with the default values (httproute.enabled=false) no 
HTTPRoute is rendered.
   4. Run helm lint on the chart and confirm it passes.
   
   ### ADDITIONAL INFORMATION
   
   - [ ] Has associated issue:
   - [ ] Required feature flags:
   - [ ] Changes UI
   - [ ] Includes DB Migration (follow approval process in 
[SIP-59](https://github.com/apache/superset/issues/13351))
     - [ ] Migration is atomic, supports rollback & is backwards-compatible
     - [ ] Confirm DB migration upgrade and downgrade tested
     - [ ] Runtime estimates and downtime expectations provided
   - [x] Introduces new feature or API
   - [ ] Removes existing feature or API
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to