Skip to content

Commit

Permalink
build: bump cilium to 1.16.7 gateway to 1.1.1, add update script (#1128)
Browse files Browse the repository at this point in the history
* bump gateway to 1.1.1

* bump cilium to v1.16.7
  • Loading branch information
eaudetcobello authored Mar 5, 2025
1 parent 7caf27f commit 1e5a8fc
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions build-scripts/hack/update-cilium-chart.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

VERSION="v1.16.7"
DIR=$(realpath $(dirname "${0}"))

CHARTS_PATH="$DIR/../../k8s/manifests/charts"

cd "$CHARTS_PATH" || exit

helm pull --repo https://helm.cilium.io cilium --version $VERSION
6 changes: 3 additions & 3 deletions build-scripts/hack/update-gateway-api-chart.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

VERSION="v1.1.0"
DIR=`realpath $(dirname "${0}")`
VERSION="v1.1.1"
DIR=$(realpath $(dirname "${0}"))

CHARTS_PATH="$DIR/../../k8s/components/charts"
CHARTS_PATH="$DIR/../../k8s/manifests/charts"

cd "$CHARTS_PATH"

Expand Down
Binary file removed k8s/manifests/charts/cilium-1.16.3.tgz
Binary file not shown.
Binary file added k8s/manifests/charts/cilium-1.16.7.tgz
Binary file not shown.
Binary file removed k8s/manifests/charts/gateway-api-1.1.0.tgz
Binary file not shown.
Binary file added k8s/manifests/charts/gateway-api-1.1.1.tgz
Binary file not shown.
8 changes: 4 additions & 4 deletions src/k8s/pkg/k8sd/features/cilium/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var (
ChartCilium = helm.InstallableChart{
Name: "ck-network",
Namespace: "kube-system",
ManifestPath: filepath.Join("charts", "cilium-1.16.3.tgz"),
ManifestPath: filepath.Join("charts", "cilium-1.16.7.tgz"),
}

// ChartCiliumLoadBalancer represents manifests to deploy Cilium LoadBalancer resources.
Expand All @@ -25,7 +25,7 @@ var (
chartGateway = helm.InstallableChart{
Name: "ck-gateway",
Namespace: "kube-system",
ManifestPath: filepath.Join("charts", "gateway-api-1.1.0.tgz"),
ManifestPath: filepath.Join("charts", "gateway-api-1.1.1.tgz"),
}

// chartGatewayClass represents a manifest to deploy a GatewayClass called ck-gateway.
Expand All @@ -39,11 +39,11 @@ var (
ciliumAgentImageRepo = "ghcr.io/canonical/cilium"

// CiliumAgentImageTag is the tag to use for the cilium-agent image.
CiliumAgentImageTag = "1.16.3-ck0"
CiliumAgentImageTag = "1.16.7-ck0"

// ciliumOperatorImageRepo is the image to use for cilium-operator.
ciliumOperatorImageRepo = "ghcr.io/canonical/cilium-operator"

// ciliumOperatorImageTag is the tag to use for the cilium-operator image.
ciliumOperatorImageTag = "1.16.3-ck0"
ciliumOperatorImageTag = "1.16.7-ck0"
)

0 comments on commit 1e5a8fc

Please sign in to comment.