Skip to content

Commit d395beb

Browse files
Sanmeshclaude
authored andcommitted
chore(gateway_api_crd): default Gateway API CRDs to v1.5.1
Bump the gateway_api_crd module default from Gateway API v1.4.1 to v1.5.1 (channel stays experimental, install still uses kubectl apply --server-side). Extends the version enum with v1.5.1 and v1.5.0 while retaining the existing v1.4.x/v1.3.0/v1.2.0 entries. This is the prerequisite CRD bump for the companion NGINX Gateway Fabric 2.6.3 upgrade, since NGF 2.5.0+ requires Gateway API v1.5.x. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 212dd21 commit d395beb

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

modules/gateway_api_crd/k8s/1.0/facets.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ spec:
3333
- experimental
3434
version:
3535
type: string
36-
default: v1.4.1
36+
default: v1.5.1
3737
description: Gateway API version to install
3838
enum:
39+
- v1.5.1
40+
- v1.5.0
3941
- v1.4.1
4042
- v1.4.0
4143
- v1.3.0
@@ -47,4 +49,4 @@ sample:
4749
disabled: true
4850
spec:
4951
channel: experimental
50-
version: v1.4.1
52+
version: v1.5.1

modules/gateway_api_crd/k8s/1.0/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
locals {
22
name = lower(var.environment.namespace == "default" ? var.instance_name : "${var.environment.namespace}-${var.instance_name}")
33
namespace = var.environment.namespace
4-
version = lookup(var.instance.spec, "version", "v1.4.1")
4+
version = lookup(var.instance.spec, "version", "v1.5.1")
55
channel = lookup(var.instance.spec, "channel", "experimental")
66

77
# Build the install URL based on version and channel

0 commit comments

Comments
 (0)