Skip to content

Commit 30e00e8

Browse files
committed
1 parent 52833b5 commit 30e00e8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/releases/1.33-NOTES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This is a document to gather the release notes prior to the release.
2626

2727
# Other changes of note
2828

29-
* TODO
29+
* Cilium has been upgraded to 1.17
3030

3131
# Breaking changes
3232

pkg/apis/kops/validation/validation.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1248,8 +1248,8 @@ func validateNetworkingCilium(cluster *kops.Cluster, v *kops.CiliumNetworkingSpe
12481248
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Could not parse as semantic version"))
12491249
}
12501250

1251-
if version.Minor != 16 {
1252-
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Only version 1.16 is supported"))
1251+
if version.Minor != 17 {
1252+
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Only version 1.17 is supported"))
12531253
}
12541254

12551255
if v.Hubble != nil && fi.ValueOf(v.Hubble.Enabled) {

pkg/apis/kops/validation/validation_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ func Test_Validate_Cilium(t *testing.T) {
12041204
},
12051205
{
12061206
Cilium: kops.CiliumNetworkingSpec{
1207-
Version: "v1.16.0",
1207+
Version: "v1.17.0",
12081208
Ingress: &kops.CiliumIngressSpec{
12091209
Enabled: fi.PtrTo(true),
12101210
DefaultLoadBalancerMode: "bad-value",
@@ -1214,7 +1214,7 @@ func Test_Validate_Cilium(t *testing.T) {
12141214
},
12151215
{
12161216
Cilium: kops.CiliumNetworkingSpec{
1217-
Version: "v1.16.0",
1217+
Version: "v1.17.0",
12181218
Ingress: &kops.CiliumIngressSpec{
12191219
Enabled: fi.PtrTo(true),
12201220
DefaultLoadBalancerMode: "dedicated",
@@ -1223,7 +1223,7 @@ func Test_Validate_Cilium(t *testing.T) {
12231223
},
12241224
{
12251225
Cilium: kops.CiliumNetworkingSpec{
1226-
Version: "v1.16.0",
1226+
Version: "v1.17.0",
12271227
Hubble: &kops.HubbleSpec{
12281228
Enabled: fi.PtrTo(true),
12291229
},

pkg/model/components/cilium.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (b *CiliumOptionsBuilder) BuildOptions(o *kops.Cluster) error {
4040
}
4141

4242
if c.Version == "" {
43-
c.Version = "v1.16.7"
43+
c.Version = "v1.17.1"
4444
}
4545

4646
if c.EnableEndpointHealthChecking == nil {

0 commit comments

Comments
 (0)