Skip to content

Commit 080cda2

Browse files
authored
[release/v2.27] Bump KKP version and dependencies for KKP patch release v2.27.9 (#7701)
* [release/v2.27] Bump KKP version and dependencies for KKP patch release v2.27.9 Signed-off-by: Archana Sawant <[email protected]> * Fix api tests Signed-off-by: Archana Sawant <[email protected]> --------- Signed-off-by: Archana Sawant <[email protected]>
1 parent 882a102 commit 080cda2

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL = /bin/bash -eu -o pipefail
22
export KUBERMATIC_EDITION ?= ee
3-
KUBERMATIC_VERSION?=v2.27.8
3+
KUBERMATIC_VERSION?=v2.27.9
44
DOCKER_REPO ?= quay.io/kubermatic
55
REPO = $(DOCKER_REPO)/dashboard$(shell [[ "$(KUBERMATIC_EDITION)" != "ce" ]] && printf -- '-%s' ${KUBERMATIC_EDITION})
66
IMAGE_TAG=$(shell echo $$(git rev-parse HEAD)|tr -d '\n')

modules/api/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL = /bin/bash -eu -o pipefail
22
export KUBERMATIC_EDITION ?= ee
3-
KUBERMATIC_VERSION?=v2.27.8
3+
KUBERMATIC_VERSION?=v2.27.9
44
DOCKER_REPO ?= quay.io/kubermatic
55
REPO = $(DOCKER_REPO)/dashboard$(shell [[ "$(KUBERMATIC_EDITION)" != "ce" ]] && printf -- '-%s' ${KUBERMATIC_EDITION})
66
IMAGE_TAG=$(shell echo $$(git rev-parse HEAD)|tr -d '\n')

modules/api/cmd/kubermatic-api/swagger.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12106,6 +12106,13 @@
1210612106
],
1210712107
"operationId": "listAWSSizesNoCredentialsV2",
1210812108
"parameters": [
12109+
{
12110+
"type": "string",
12111+
"x-go-name": "Architecture",
12112+
"description": "architecture query parameter. Supports: arm64 and x64 types.",
12113+
"name": "architecture",
12114+
"in": "query"
12115+
},
1210912116
{
1211012117
"type": "string",
1211112118
"x-go-name": "ProjectID",
@@ -12119,13 +12126,6 @@
1211912126
"name": "cluster_id",
1212012127
"in": "path",
1212112128
"required": true
12122-
},
12123-
{
12124-
"type": "string",
12125-
"x-go-name": "Architecture",
12126-
"description": "architecture query parameter. Supports: arm64 and x64 types.",
12127-
"name": "architecture",
12128-
"in": "query"
1212912129
}
1213012130
],
1213112131
"responses": {
@@ -12766,6 +12766,12 @@
1276612766
"summary": "List Subnets for a VPC associated with a cluster.",
1276712767
"operationId": "listKubeVirtSubnetsNoCredentials",
1276812768
"parameters": [
12769+
{
12770+
"type": "string",
12771+
"x-go-name": "StorageClassName",
12772+
"name": "storageClassName",
12773+
"in": "query"
12774+
},
1276912775
{
1277012776
"type": "string",
1277112777
"x-go-name": "ProjectID",
@@ -12779,12 +12785,6 @@
1277912785
"name": "cluster_id",
1278012786
"in": "path",
1278112787
"required": true
12782-
},
12783-
{
12784-
"type": "string",
12785-
"x-go-name": "StorageClassName",
12786-
"name": "storageClassName",
12787-
"in": "query"
1278812788
}
1278912789
],
1279012790
"responses": {

modules/api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require (
7272
google.golang.org/api v0.209.0
7373
gopkg.in/yaml.v3 v3.0.1
7474
k8c.io/kubeone v1.7.3
75-
k8c.io/kubermatic/v2 v2.27.8-0.20250915172803-b8e92fc1cbdf
75+
k8c.io/kubermatic/v2 v2.27.9-0.20251118073547-c2ce57f27429
7676
k8c.io/machine-controller v1.61.4
7777
k8c.io/operating-system-manager v1.6.9
7878
k8c.io/reconciler v0.5.0

modules/api/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,8 +1153,8 @@ honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWh
11531153
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
11541154
k8c.io/kubeone v1.7.2 h1:uLH19VEp1S5j4f3UwQP4CLHErJ23UiJM2MnbufNWDgI=
11551155
k8c.io/kubeone v1.7.2/go.mod h1:9v2VFz/+l36cW65kd5YufEYHunbKlJ6P8SBakj05xgM=
1156-
k8c.io/kubermatic/v2 v2.27.8-0.20250915172803-b8e92fc1cbdf h1:m0vS0c9o9Jy/nRsMO0ttd+IXL9ndKrGxQw/b8QbIW0M=
1157-
k8c.io/kubermatic/v2 v2.27.8-0.20250915172803-b8e92fc1cbdf/go.mod h1:m2fxbGs2jxXYcZJHt+8ZRX8J7XdiQRfOcsUBjof5PKQ=
1156+
k8c.io/kubermatic/v2 v2.27.9-0.20251118073547-c2ce57f27429 h1:ijY98nu8hy6mEXzYKloNKB+udEjj5p5uSosZ5f5EokM=
1157+
k8c.io/kubermatic/v2 v2.27.9-0.20251118073547-c2ce57f27429/go.mod h1:m2fxbGs2jxXYcZJHt+8ZRX8J7XdiQRfOcsUBjof5PKQ=
11581158
k8c.io/machine-controller v1.61.4 h1:wp+4nKMJmCW4zy0bkQVDc2ry76xj6dOCcKNMzgMiIyY=
11591159
k8c.io/machine-controller v1.61.4/go.mod h1:ZGDFyUeEp66RHcNB5Ki/OJyFdZFgo9dkHJ9s6YJWPcg=
11601160
k8c.io/operating-system-manager v1.6.9 h1:TdzgPmP/whJ1vxDlgqQd8snNdNyWNJxqyjxsewcDPm0=

modules/api/pkg/handler/v2/cluster_default/cluster_default_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func TestGetEndpoint(t *testing.T) {
5050
),
5151
ExistingAPIUser: test.GenDefaultAPIUser(),
5252
ExpectedHTTPStatusCode: http.StatusOK,
53-
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","aws":{}},"version":"v1.31.13","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
53+
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","aws":{}},"version":"v1.31.14","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
5454
},
5555
{
5656
Name: "Default cluster for Azure",
@@ -61,7 +61,7 @@ func TestGetEndpoint(t *testing.T) {
6161
),
6262
ExistingAPIUser: test.GenDefaultAPIUser(),
6363
ExpectedHTTPStatusCode: http.StatusOK,
64-
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","azure":{"assignAvailabilitySet":null}},"version":"v1.31.13","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
64+
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","azure":{"assignAvailabilitySet":null}},"version":"v1.31.14","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
6565
},
6666
{
6767
Name: "Default cluster for vSphere",
@@ -72,7 +72,7 @@ func TestGetEndpoint(t *testing.T) {
7272
),
7373
ExistingAPIUser: test.GenDefaultAPIUser(),
7474
ExpectedHTTPStatusCode: http.StatusOK,
75-
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","vsphere":{}},"version":"v1.31.13","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
75+
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","vsphere":{}},"version":"v1.31.14","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
7676
},
7777
{
7878
Name: "Default cluster for GCP",
@@ -83,7 +83,7 @@ func TestGetEndpoint(t *testing.T) {
8383
),
8484
ExistingAPIUser: test.GenDefaultAPIUser(),
8585
ExpectedHTTPStatusCode: http.StatusOK,
86-
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","gcp":{}},"version":"v1.31.13","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
86+
ExpectedResponse: `{"name":"","creationTimestamp":"0001-01-01T00:00:00Z","type":"kubernetes","spec":{"cloud":{"dc":"fake-dc","gcp":{}},"version":"v1.31.14","oidc":{},"enableUserSSHKeyAgent":true,"kubernetesDashboard":{"enabled":true},"containerRuntime":"containerd","clusterNetwork":{"ipFamily":"IPv4","services":{"cidrBlocks":["10.240.16.0/20","fd02::/120"]},"pods":{"cidrBlocks":["172.25.0.0/16","fd01::/48"]},"nodeCidrMaskSizeIPv4":24,"nodeCidrMaskSizeIPv6":64,"dnsDomain":"cluster.local","proxyMode":"ipvs","ipvs":{"strictArp":true},"nodeLocalDNSCacheEnabled":true},"cniPlugin":{"type":"cilium","version":"1.16.9"},"exposeStrategy":"NodePort"},"status":{"version":"","url":"","externalCCMMigration":""}}`,
8787
},
8888
}
8989

modules/api/pkg/handler/v2/external_cluster/external_cluster_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ func TestListClusters(t *testing.T) {
306306
ID: "clusterAbcID",
307307
},
308308
Spec: apiv1.ClusterSpec{
309-
Version: "v1.31.13",
309+
Version: "v1.31.14",
310310
},
311311
Labels: map[string]string{kubermaticv1.ProjectIDLabelKey: test.GenDefaultProject().Name},
312312
},
@@ -316,7 +316,7 @@ func TestListClusters(t *testing.T) {
316316
ID: "clusterDefID",
317317
},
318318
Spec: apiv1.ClusterSpec{
319-
Version: "v1.31.13",
319+
Version: "v1.31.14",
320320
},
321321
Labels: map[string]string{kubermaticv1.ProjectIDLabelKey: test.GenDefaultProject().Name},
322322
},
@@ -339,7 +339,7 @@ func TestListClusters(t *testing.T) {
339339
ID: "clusterAbcID",
340340
},
341341
Spec: apiv1.ClusterSpec{
342-
Version: "v1.31.13",
342+
Version: "v1.31.14",
343343
},
344344
Labels: map[string]string{kubermaticv1.ProjectIDLabelKey: test.GenDefaultProject().Name},
345345
},
@@ -349,7 +349,7 @@ func TestListClusters(t *testing.T) {
349349
ID: "clusterDefID",
350350
},
351351
Spec: apiv1.ClusterSpec{
352-
Version: "v1.31.13",
352+
Version: "v1.31.14",
353353
},
354354
Labels: map[string]string{kubermaticv1.ProjectIDLabelKey: test.GenDefaultProject().Name},
355355
},

modules/web/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL = /bin/bash -eu -o pipefail
22
export KUBERMATIC_EDITION ?= ee
3-
KUBERMATIC_VERSION?=v2.27.8
3+
KUBERMATIC_VERSION?=v2.27.9
44
CC=npm
55
GOOS ?= $(shell go env GOOS)
66
export GOOS

modules/web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kubermatic-dashboard",
33
"description": "Kubermatic Dashboard",
4-
"version": "2.27.8",
4+
"version": "2.27.9",
55
"type": "module",
66
"license": "proprietary",
77
"repository": "https://github.com/kubermatic/dashboard",

0 commit comments

Comments
 (0)