Skip to content

Commit

Permalink
Bump default k0s version to v1.30.4
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Makhov <[email protected]>
  • Loading branch information
makhov committed Sep 12, 2024
1 parent 8549407 commit 36b993c
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion api/k0smotron.io/v1beta1/k0smotroncluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ type Mount struct {

const (
defaultK0SImage = "k0sproject/k0s"
defaultK0SVersion = "v1.27.9-k0s.0"
defaultK0SVersion = "v1.30.4-k0s.0"
defaultK0SSuffix = "k0s.0"
)

Expand Down
4 changes: 2 additions & 2 deletions api/k0smotron.io/v1beta1/k0smotroncluster_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestClusterSpec_GetImage(t *testing.T) {
{
name: "Nothing given",
spec: &ClusterSpec{},
want: "k0sproject/k0s:v1.27.9-k0s.0",
want: "k0sproject/k0s:v1.30.4-k0s.0",
},
{
name: "Only version given with suffix",
Expand All @@ -53,7 +53,7 @@ func TestClusterSpec_GetImage(t *testing.T) {
spec: &ClusterSpec{
Image: "foobar/k0s",
},
want: "foobar/k0s:v1.27.9-k0s.0",
want: "foobar/k0s:v1.30.4-k0s.0",
},
{
name: "Image and version given",
Expand Down
2 changes: 1 addition & 1 deletion inttest/Makefile.variables
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ alpine_version = 3.18
alpine_patch_version = $(alpine_version).2
golang_buildimage=docker.io/library/golang:$(go_version)-alpine$(alpine_version)
go_version = 1.22.6
kubernetes_version=1.27.2
kubernetes_version=1.30.4

smoketests := \
check-basic \
Expand Down
4 changes: 2 additions & 2 deletions inttest/capi-config-update-vm/capi_config_update_vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ metadata:
name: docker-test
spec:
replicas: 1
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
k0sConfigSpec:
k0s:
apiVersion: k0s.k0sproject.io/v1beta1
Expand Down Expand Up @@ -287,7 +287,7 @@ metadata:
name: docker-test
spec:
replicas: 1
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
k0sConfigSpec:
k0s:
apiVersion: k0s.k0sproject.io/v1beta1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ metadata:
name: docker-test
spec:
replicas: 1
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
k0sConfigSpec:
k0s:
apiVersion: k0s.k0sproject.io/v1beta1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ metadata:
name: docker-test
spec:
replicas: 3
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
k0sConfigSpec:
k0s:
apiVersion: k0s.k0sproject.io/v1beta1
Expand Down Expand Up @@ -282,7 +282,7 @@ metadata:
name: docker-test-worker-0
namespace: default
spec:
version: v1.27.1
version: v1.30.4
clusterName: docker-test-cluster
bootstrap:
configRef:
Expand All @@ -301,7 +301,7 @@ metadata:
namespace: default
spec:
# version is deliberately different to be able to verify we actually pick it up :)
version: v1.27.1+k0s.0
version: v1.30.4+k0s.0
args:
- --labels=k0sproject.io/foo=bar
preStartCommands:
Expand Down Expand Up @@ -330,6 +330,6 @@ metadata:
name: test-file-secret
namespace: default
type: Opaque
data:
data:
value: dGVzdA==
`
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ metadata:
spec:
topology:
class: k0smotron-cluster-class
version: v1.27.2
version: v1.30.4
workers:
machineDeployments:
- class: docker-test-default-worker
Expand Down Expand Up @@ -150,7 +150,7 @@ metadata:
spec:
template:
spec:
version: v1.27.2-k0s.0
version: v1.30.4-k0s.0
persistence:
type: emptyDir
service:
Expand All @@ -164,7 +164,7 @@ metadata:
spec:
template:
spec:
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
---
apiVersion: cluster.x-k8s.io/v1beta1
kind: ClusterClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ metadata:
spec:
topology:
class: k0smotron-clusterclass
version: v1.27.2
version: v1.30.4
workers:
machineDeployments:
- class: docker-test-default-worker
Expand Down Expand Up @@ -320,7 +320,7 @@ metadata:
spec:
template:
spec:
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
---
apiVersion: cluster.x-k8s.io/v1beta1
kind: ClusterClass
Expand Down
8 changes: 4 additions & 4 deletions inttest/capi-docker/capi_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (s *CAPIDockerSuite) TestCAPIDocker() {
s.Require().NoError(util.WaitForNodeReadyStatus(s.ctx, kmcKC, "docker-test-0", corev1.ConditionTrue))
node, err := kmcKC.CoreV1().Nodes().Get(s.ctx, "docker-test-0", metav1.GetOptions{})
s.Require().NoError(err)
s.Require().Equal("v1.27.1+k0s", node.Status.NodeInfo.KubeletVersion)
s.Require().Equal("v1.30.3+k0s", node.Status.NodeInfo.KubeletVersion)
fooLabel, ok := node.Labels["k0sproject.io/foo"]
s.Require().True(ok)
s.Require().Equal("bar", fooLabel)
Expand Down Expand Up @@ -233,7 +233,7 @@ kind: K0smotronControlPlane
metadata:
name: docker-test-cp
spec:
version: v1.27.2-k0s.0
version: v1.30.4-k0s.0
certificateRefs:
- name: docker-test-ca
type: ca
Expand Down Expand Up @@ -274,7 +274,7 @@ metadata:
name: docker-test-0
namespace: default
spec:
version: v1.27.1
version: v1.30.4
clusterName: docker-test
bootstrap:
configRef:
Expand All @@ -293,7 +293,7 @@ metadata:
namespace: default
spec:
# version is deliberately different to be able to verify we actually pick it up :)
version: v1.27.1+k0s.0
version: v1.30.3+k0s.0
args:
- --labels=k0sproject.io/foo=bar
preStartCommands:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ metadata:
name: remote-test
namespace: default
spec:
version: v1.27.2-k0s.0
version: v1.30.4-k0s.0
persistence:
type: emptyDir
service:
Expand Down Expand Up @@ -309,7 +309,7 @@ metadata:
name: remote-test-0
namespace: default
spec:
version: v1.27.2+k0s.0
version: v1.30.4+k0s.0
---
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: RemoteMachine
Expand Down
2 changes: 1 addition & 1 deletion inttest/footloose-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ RUN curl -Lo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-re
ENV KUBECONFIG=/var/lib/k0s/pki/admin.conf

# Install latest k0s
RUN curl -sSLf https://get.k0s.sh | K0S_VERSION=v1.27.2+k0s.0 sh
RUN curl -sSLf https://get.k0s.sh | K0S_VERSION=v1.30.4+k0s.0 sh

0 comments on commit 36b993c

Please sign in to comment.