You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2021/10/13 08:56:05 UTC

[ignite] branch ignite-2.11 updated: IGNITE-15459 Expanded kubernetes examples examples to include full beans. (#9378)

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

ilyak pushed a commit to branch ignite-2.11
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.11 by this push:
     new f1f702d  IGNITE-15459 Expanded kubernetes examples examples to include full beans. (#9378)
f1f702d is described below

commit f1f702d1a8561139f235a3ba7fc52e0582b95709
Author: IgGusev <de...@mail.ru>
AuthorDate: Tue Sep 7 17:48:47 2021 +0300

    IGNITE-15459 Expanded kubernetes examples examples to include full beans. (#9378)
---
 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 562fb23..6be8a46 100644
--- a/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml
+++ b/docs/_docs/code-snippets/k8s/stateful/node-configuration.xml
@@ -15,12 +15,12 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
+<!-- tag::config-block[] -->
 <beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans.xsd">
 
-    <!-- tag::config-block[] -->
     <bean class="org.apache.ignite.configuration.IgniteConfiguration">
 
         <property name="workDirectory" value="/ignite/work"/>
@@ -55,5 +55,5 @@
         </property>
 
     </bean>
-    <!-- end::config-block[] -->
 </beans>
+<!-- end::config-block[] -->
diff --git a/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml b/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
index 3464595..ae2d484 100644
--- a/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
+++ b/docs/_docs/code-snippets/k8s/stateless/node-configuration.xml
@@ -15,13 +15,13 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
+<!-- tag::config-block[] -->
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="
         http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans.xsd">
 
-    <!-- tag::config-block[] -->
     <bean class="org.apache.ignite.configuration.IgniteConfiguration">
 
         <property name="discoverySpi">
@@ -39,5 +39,5 @@
             </bean>
         </property>
     </bean>
-    <!-- end::config-block[] -->
 </beans>
+<!-- end::config-block[] -->