Skip to content

Commit 7afd3b2

Browse files
committed
workaround
Signed-off-by: Takeshi Yoneda <[email protected]>
1 parent b2eb538 commit 7afd3b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/provider/kubernetes/controller_offline.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ func NewOfflineGatewayAPIController(
7676
mergeGateways: sets.New[string](),
7777
extServerPolicies: extServerPoliciesGVKs,
7878
// We assume all CRDs are available in offline mode.
79-
backendCRDExists: true,
8079
bTLSPolicyCRDExists: true,
8180
btpCRDExists: true,
8281
ctpCRDExists: true,
@@ -90,6 +89,9 @@ func NewOfflineGatewayAPIController(
9089
tcpRouteCRDExists: true,
9190
tlsRouteCRDExists: true,
9291
udpRouteCRDExists: true,
92+
// TODO: enable this for consistency after the foundamental fix is available https://github.com/envoyproxy/gateway/pull/6021.
93+
// In practice, this won't affect any user-facing reconciliation logic for now but it might in the future.
94+
backendCRDExists: false,
9395
}
9496

9597
r.log.Info("created offline gatewayapi controller")

0 commit comments

Comments
 (0)