Skip to content

Commit 403a71c

Browse files
authored
Bump Cilium to 1.17.2 (#1631)
1 parent 4e3366d commit 403a71c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

kubernetes/resources/gateway-routes/routes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: gateway.networking.k8s.io/v1alpha2
2+
apiVersion: gateway.networking.k8s.io/v1
33
kind: GRPCRoute
44
metadata:
55
name: nativelink-route

native-cli/components/cilium.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func (component *Cilium) Install(
2828
name string,
2929
) ([]pulumi.Resource, error) {
3030
gatewayAPI, err := yaml.NewConfigFile(ctx, name, &yaml.ConfigFileArgs{
31-
File: "https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/experimental-install.yaml",
31+
File: "https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/experimental-install.yaml",
3232
})
3333
if err != nil {
3434
return nil, fmt.Errorf("%w: %w", errPulumi, err)
@@ -188,7 +188,7 @@ func defaultPool(
188188
},
189189
OtherFields: map[string]interface{}{
190190
"spec": pulumi.Map{
191-
"cidrs": pulumi.Array{
191+
"blocks": pulumi.Array{
192192
pulumi.Map{
193193
"cidr": pulumi.String(ciliumIPCIDR),
194194
},

native-cli/programs/local.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func ProgramForLocalCluster(ctx *pulumi.Context) error {
2525
cilium, err := components.AddComponent(
2626
ctx,
2727
"cilium",
28-
&components.Cilium{Version: "1.16.0-pre.2"},
28+
&components.Cilium{Version: "1.17.2"},
2929
)
3030
if err != nil {
3131
log.Println(err)

0 commit comments

Comments
 (0)