The controller processes HTTPRoute resources attached to managed Gateways
and sets conditions on .status.parents entries with
.controllerName: cloudflare-gateway-controller.io/controller.
This document covers only the conditions set by this controller. For the full HTTPRoute spec, see the Gateway API documentation.
The following example shows an HTTPRoute that routes traffic for
app.example.com to a backend Service:
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: my-route
namespace: default
spec:
parentRefs:
- name: my-gateway
hostnames:
- "app.example.com"
rules:
- backendRefs:
- name: my-backend
port: 80When DNS is configured in the CloudflareGatewayParameters, the controller creates CNAME records for each hostname in the HTTPRoute.
The controller validates each HTTPRoute on every reconciliation. If any
validation fails, the HTTPRoute is rejected with Accepted=False/UnsupportedValue.
The following fields are not supported and must not be set:
spec.parentRefs[*].portspec.rules[*].filtersspec.rules[*].timeoutsspec.rules[*].retryspec.rules[*].backendRefs[*].filters
- Only
coreServicebackends are supported. Othergroup/kindcombinations (e.g. custom backend resources) are rejected. - Multiple
backendRefsin a single rule are supported. The embedded reverse proxy distributes requests across backends according to theirweightfields (traffic splitting). - Cross-namespace
backendRefsmust be allowed by aReferenceGrant. Without one, the HTTPRoute is accepted but the conditionResolvedRefs=False/RefNotPermittedis set.
- Only
PathPrefixmatch type is supported. Other path match types (Exact,RegularExpression) are rejected. - Header matches (
spec.rules[*].matches[*].headers) are not supported. - Query parameter matches (
spec.rules[*].matches[*].queryParams) are not supported. - Method matches (
spec.rules[*].matches[*].method) are not supported.
Session persistence pins a client to the same backend across requests.
Cookie-based (default): The proxy sets a cookie on the first response. Subsequent requests with that cookie are routed to the same backend.
rules:
- sessionPersistence:
type: Cookie
sessionName: my-session # optional, default "cgw-session"
absoluteTimeout: 1h # optional
idleTimeout: 10m # optional
cookieConfig:
lifetimeType: Permanent # "Session" (default) or "Permanent"
backendRefs:
- name: svc-a
port: 80
weight: 50
- name: svc-b
port: 80
weight: 50Header-based: The client supplies a header with the backend ID. No cookie is set by the proxy.
rules:
- sessionPersistence:
type: Header
sessionName: X-My-Session # optional, default "X-Cgw-Session"
backendRefs:
- name: svc-a
port: 80Cookie lifetime types:
Session(default): Browser session cookie (noMax-Age). IfabsoluteTimeoutis set, the proxy enforces it server-side by checking the timestamp encoded in the cookie value.Permanent: SetsMax-Ageon the cookie. When onlyabsoluteTimeoutis set,Max-AgeequalsabsoluteTimeout. When onlyidleTimeoutis set,Max-AgeequalsidleTimeout. When both are set,Max-Ageis the minimum of the remaining absolute timeout andidleTimeout.
Idle timeout (idleTimeout): Supported for cookie-based sessions only. When
configured, the proxy re-issues the cookie on every response with an updated
last-activity timestamp. If the time since the last activity exceeds
idleTimeout, the session expires and a new backend is selected. When both
absoluteTimeout and idleTimeout are set, both are enforced independently —
the session expires if either timeout is exceeded.
idleTimeout is not supported for header-based sessions (no mechanism to
push updated timestamps to the client) and is rejected if configured with
type: Header.
The HTTPRoute must be in a namespace allowed by the Gateway's listener
allowedRoutes configuration. Routes from disallowed namespaces are
rejected with Accepted=False/NotAllowedByListeners.
An HTTPRoute enters various states during its lifecycle, reflected as Kubernetes
Conditions on each .status.parents entry. It can be
accepted, have its
references resolved,
have DNS records applied, or be
ready.
Standard Gateway API condition. The controller marks an HTTPRoute as accepted when it passes validation.
When the HTTPRoute is accepted:
type: Acceptedstatus: "True"reason: Accepted
When the HTTPRoute is not accepted:
type: Acceptedstatus: "False"reason: NotAllowedByListeners | UnsupportedValue
Reasons for rejection:
NotAllowedByListeners: The HTTPRoute is in a namespace not allowed by the Gateway's listenerallowedRoutes.UnsupportedValue: The HTTPRoute uses unsupported features (e.g. unsupported match types, filters, or backendRef kinds), has hostname/path conflicts with another route on the same Gateway, or has a managed DNS hostname whose CNAME already points to another Gateway's tunnel.
Standard Gateway API condition. The controller reports whether all backendRef
references could be resolved.
When all references are resolved:
type: ResolvedRefsstatus: "True"reason: ResolvedRefs
When a reference cannot be resolved:
type: ResolvedRefsstatus: "False"reason: RefNotPermitted
The RefNotPermitted reason indicates a cross-namespace backendRef is not
permitted by a ReferenceGrant.
Custom condition, not part of the Gateway API spec. Reports whether DNS CNAME records have been applied for the route's hostnames. This condition is only present when DNS management is enabled (see CloudflareGatewayParameters for configuration details).
When DNS records are applied successfully:
type: DNSRecordsAppliedstatus: "True"reason: ReconciliationSucceeded
In all-hostnames mode (default), the message lists all applied hostnames. In
specific-zones mode, the message lists applied and skipped hostnames.
When DNS record creation or update fails:
type: DNSRecordsAppliedstatus: "Unknown"reason: ProgressingWithRetry
This condition is removed from the status when DNS is disabled.
Custom condition, not part of the Gateway API spec.
kstatus-compatible
condition. This condition starts from the parent Gateway's Ready value but may
be downgraded to Unknown/ProgressingWithRetry when the Gateway is ready but
a DNS error occurred for this route's hostnames.
When the Gateway is ready and DNS records (if configured) applied successfully:
type: Readystatus: "True"reason: ReconciliationSucceeded
When the Gateway has a terminal failure:
type: Readystatus: "False"reason: ReconciliationFailed
When the Gateway is waiting for the Deployment:
type: Readystatus: "Unknown"reason: Progressing
When the Gateway is retrying after transient errors, or the Gateway is ready but a DNS error occurred for this route:
type: Readystatus: "Unknown"reason: ProgressingWithRetry