[
https://issues.apache.org/jira/browse/IGNITE-15197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17472788#comment-17472788
]
Nikita A. Safonov commented on IGNITE-15197:
--------------------------------------------
The merged PR is here: https://github.com/apache/ignite/pull/9726
> Incorrect code snippet for Azure Kubernetes Deployment
> ------------------------------------------------------
>
> Key: IGNITE-15197
> URL: https://issues.apache.org/jira/browse/IGNITE-15197
> Project: Ignite
> Issue Type: Bug
> Components: documentation
> Reporter: Alexandr Shapkin
> Assignee: Nikita A. Safonov
> Priority: Major
> Labels: docuentation, documentation
>
> See the docs: [
> https://ignite.apache.org/docs/latest/installation/kubernetes/azure-deployment|https://ignite.apache.org/docs/latest/installation/kubernetes/azure-deployment]
>
> h3. Creating ConfigMap for Node Configuration File
>
> Two tabs: Configuration without persistence and Configuration with persistence
> Need to fix "node-configuration.xml" to be a valid XML file, like this one
> for "Configuration without persistence"
>
> {code:java}
> <?xml version="1.0" encoding="UTF-8"?>
> <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">
> <bean class="org.apache.ignite.configuration.IgniteConfiguration">
> <property name="discoverySpi">
> <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
> <property name="ipFinder">
> <bean
> class="org.apache.ignite.spi.discovery.tcp.ipfinder.kubernetes.TcpDiscoveryKubernetesIpFinder">
> <property name="namespace" value="degault"/>
> <property name="serviceName" value="ignite"/>
> </bean>
> </property>
> </bean>
> </property>
> </bean>
> </beans>
> {code}
> I.e. all code samples have to include
>
> {code:java}
> <?xml version="1.0" encoding="UTF-8"?> <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">
> ...
> </beans>{code}
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)