From 2693543ceb3753557635c20715641720617984f5 Mon Sep 17 00:00:00 2001 From: Tatu Lund Date: Mon, 9 Jun 2025 11:38:15 +0300 Subject: [PATCH 1/2] Add note about Kubernetes Kit not being compatible with Spring Session See: https://github.com/vaadin/flow/issues/17799 --- articles/tools/kubernetes/getting-started.adoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/articles/tools/kubernetes/getting-started.adoc b/articles/tools/kubernetes/getting-started.adoc index bf92125408..8fc2f9300f 100644 --- a/articles/tools/kubernetes/getting-started.adoc +++ b/articles/tools/kubernetes/getting-started.adoc @@ -70,6 +70,21 @@ You'll need to add the Hazelcast dependency to the project: ---- +.Spring Session should not be used +[NOTE] +==== +Verify that you do not have this dependency, it is not compatible wiht Kubernetes Kit. + +.`pom.xml` +[source,xml] +---- + + org.springframework.session + spring-session-hazelcast + +---- +==== + Then add the following property to the application configuration file: .application.properties From 9be6b4006fb2936e243f1dfc473ea27beb2a95bd Mon Sep 17 00:00:00 2001 From: Tatu Lund Date: Mon, 9 Jun 2025 11:39:50 +0300 Subject: [PATCH 2/2] fix typo --- articles/tools/kubernetes/getting-started.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/tools/kubernetes/getting-started.adoc b/articles/tools/kubernetes/getting-started.adoc index 8fc2f9300f..0b69a2e976 100644 --- a/articles/tools/kubernetes/getting-started.adoc +++ b/articles/tools/kubernetes/getting-started.adoc @@ -73,7 +73,7 @@ You'll need to add the Hazelcast dependency to the project: .Spring Session should not be used [NOTE] ==== -Verify that you do not have this dependency, it is not compatible wiht Kubernetes Kit. +Verify that you do not have this dependency, it is not compatible with Kubernetes Kit. .`pom.xml` [source,xml]