nailo2c commented on code in PR #69945: URL: https://github.com/apache/airflow/pull/69945#discussion_r3627729616
########## chart/values.yaml: ########## @@ -2327,6 +2327,54 @@ flower: # If True, and using CeleryExecutor, will deploy flower app. enabled: false + # Kubernetes Gateway API (HTTPRoute) configuration for Flower. + # Requires the Gateway API CRDs to be installed in the cluster + # (https://gateway-api.sigs.k8s.io/guides/#installing-gateway-api). + # The HTTPRoute references an externally managed Gateway via `parentRefs`. + # This is an alternative to the Flower Ingress (`ingress.flower`); + # the two are mutually exclusive and enabling both will fail rendering. + httpRoute: + # Enable Flower HTTPRoute resource. + # Mutually exclusive with `ingress.flower.enabled`; enable only one of them. + enabled: false + + # Extra labels for the Flower HTTPRoute + labels: {} + + # Annotations for the Flower HTTPRoute + annotations: {} + + # List of parent Gateway references this HTTPRoute attaches to. Required when enabled. + # Defaults to `~` (null) so the schema's `minItems: 1` fails fast on an explicitly + # empty list (`[]`); a still-null value while enabled is caught by the template guard. Review Comment: done -- 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]
