Skip to content

Commit

Permalink
Update cilium to v1.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rifelpet committed Sep 2, 2024
1 parent 801abbc commit 0087fb4
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 50 deletions.
4 changes: 2 additions & 2 deletions pkg/apis/kops/validation/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -1293,8 +1293,8 @@ func validateNetworkingCilium(cluster *kops.Cluster, v *kops.CiliumNetworkingSpe
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Could not parse as semantic version"))
}

if version.Minor != 15 {
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Only version 1.15 is supported"))
if version.Minor != 16 {
allErrs = append(allErrs, field.Invalid(versionFld, v.Version, "Only version 1.16 is supported"))
}

if v.Hubble != nil && fi.ValueOf(v.Hubble.Enabled) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/model/components/cilium.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (b *CiliumOptionsBuilder) BuildOptions(o *kops.Cluster) error {
}

if c.Version == "" {
c.Version = "v1.15.6"
c.Version = "v1.16.1"
}

if c.EnableEndpointHealthChecking == nil {
Expand Down
Loading

0 comments on commit 0087fb4

Please sign in to comment.