You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2021/11/02 17:59:49 UTC

[ignite] branch master updated: IGNITE-15862 Fix kubernetes ConfigMap docs on site (#9549)

This is an automated email from the ASF dual-hosted git repository.

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new d9ced43  IGNITE-15862 Fix kubernetes ConfigMap docs on site (#9549)
d9ced43 is described below

commit d9ced434ad000d21a97a62c920c18b70fdba082c
Author: Nikita Safonov <73...@users.noreply.github.com>
AuthorDate: Tue Nov 2 20:59:28 2021 +0300

    IGNITE-15862 Fix kubernetes ConfigMap docs on site (#9549)
---
 docs/_docs/code-snippets/k8s/stateful/node-configuration.xml  | 4 ++--
 docs/_docs/code-snippets/k8s/stateless/node-configuration.xml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml b/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml
index 6be8a46..e36765d 100644
--- a/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml
+++ b/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml
@@ -45,8 +45,8 @@
                     <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.kubernetes.TcpDiscoveryKubernetesIpFinder">
                         <constructor-arg>
                             <bean class="org.apache.ignite.kubernetes.configuration.KubernetesConnectionConfiguration">
-                                <property name="namespace" value="default" />
-                                <property name="serviceName" value="ignite" />
+                                <property name="namespace" value="ignite" />
+                                <property name="serviceName" value="ignite-service" />
                             </bean>
                         </constructor-arg>
                     </bean>
diff --git a/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml b/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
index ae2d484..a694f28 100644
--- a/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
+++ b/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
@@ -30,8 +30,8 @@
                     <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.kubernetes.TcpDiscoveryKubernetesIpFinder">
                         <constructor-arg>
                             <bean class="org.apache.ignite.kubernetes.configuration.KubernetesConnectionConfiguration">
-                                <property name="namespace" value="default" />
-                                <property name="serviceName" value="ignite" />
+                                <property name="namespace" value="ignite" />
+                                <property name="serviceName" value="ignite-service" />
                             </bean>
                         </constructor-arg>
                     </bean>