Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
labels:
replicated.com/disaster-recovery: infra
replicated.com/disaster-recovery-chart: embedded-cluster-operator
Expand Down Expand Up @@ -297,7 +297,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
labels:
replicated.com/disaster-recovery: ec-install
name: installations.embeddedcluster.replicated.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
name: configs.embeddedcluster.replicated.com
spec:
group: embeddedcluster.replicated.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
name: installations.embeddedcluster.replicated.com
spec:
group: embeddedcluster.replicated.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
name: kubernetesinstallations.embeddedcluster.replicated.com
spec:
group: embeddedcluster.replicated.com
Expand Down
4 changes: 2 additions & 2 deletions pkg/crds/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
labels:
replicated.com/disaster-recovery: infra
replicated.com/disaster-recovery-chart: embedded-cluster-operator
Expand Down Expand Up @@ -297,7 +297,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
controller-gen.kubebuilder.io/version: v0.20.0
labels:
replicated.com/disaster-recovery: ec-install
name: installations.embeddedcluster.replicated.com
Expand Down
6 changes: 3 additions & 3 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ K0S_MINOR_VERSION ?= 33
# K0S Versions
K0S_VERSION_1_33 = v1.33.6+k0s.0
K0S_VERSION_1_32 = v1.32.10+k0s.0
K0S_VERSION_1_31 = v1.31.12+k0s.0
K0S_VERSION_1_31 = v1.31.14+k0s.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: K0s version override and check incompatible with update

The K0S_VERSION_1_31 was updated from v1.31.12+k0s.0 to v1.31.14+k0s.0, but the override logic and validation checks at the bottom of versions.mk still reference the old version. The check-k0s-version target will fail because it expects any v1.31 version to be exactly v1.31.12+k0s.0-ec.0. The ifeq conditions on lines 43 and 51 that trigger the EC override and binary source will also no longer match, making builds with K0S_MINOR_VERSION=31 fail.

Additional Locations (2)

Fix in Cursor Fix in Web

K0S_VERSION_1_30 = v1.30.14+k0s.0
K0S_VERSION_1_29 = v1.29.15+k0s.0

Expand All @@ -20,13 +20,13 @@ K0S_GO_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))
TROUBLESHOOT_VERSION = v0.123.16

# Helm Version
HELM_VERSION = v3.19.2
HELM_VERSION = v3.19.4

# FIO Version (for performance testing)
FIO_VERSION = 3.41

# Kubernetes Development Tool Versions
CONTROLLER_TOOLS_VERSION = v0.19.0
CONTROLLER_TOOLS_VERSION = v0.20.0
KUSTOMIZE_VERSION = v5.8.0

### Overrides ###
Expand Down
Loading