@@ -23,13 +23,13 @@ per node models. Nodes in the cluster does not form full node-to-node mesh.
2323Users has to explicitly select this mode by specifying ` --nodes-full-mesh=false ` 
2424when launching kube-router. In this mode kube-router expects each node is
2525configured with an ASN number from the node's API object annoations. Kube-router
26- will use the node's ` io. kube-router.net. node.asn`  annotation value as the ASN
26+ will use the node's ` kube-router.io/ node.asn `  annotation value as the ASN
2727number for the node.
2828
2929Users can annotate node objects with the following command:
3030
3131``` 
32- kubectl annotate node <kube-node> "io. kube-router.net. node.asn=64512" 
32+ kubectl annotate node <kube-node> "kube-router.io/ node.asn=64512" 
3333``` 
3434
3535Only nodes with in same ASN form full mesh. Two nodes with different ASNs never
@@ -55,21 +55,21 @@ For example:
5555Alternativley, each node can be configured with one or more node specific BGP
5656peers. Information regarding node specific BGP peer is read from node API object
5757annotations:
58- -  ` io. kube-router.net. peer.ips` 
59- -  ` io. kube-router.net. peer.asns` 
58+ -  ` kube-router.io/ peer.ips ` 
59+ -  ` kube-router.io/ peer.asns ` 
6060
6161
6262For e.g users can annotate node object with below commands
6363``` 
64- kubectl annotate node <kube-node> "io. kube-router.net. peer.ips=192.168.1.99,192.168.1.100" 
65- kubectl annotate node <kube-node> "io. kube-router.net. peer.asns=65000,65000" 
64+ kubectl annotate node <kube-node> "kube-router.io/ peer.ips=192.168.1.99,192.168.1.100" 
65+ kubectl annotate node <kube-node> "kube-router.io/ peer.asns=65000,65000" 
6666``` 
6767
6868### BGP Peer Password Authentication  
6969
7070The examples above have assumed there is no password authentication with BGP
7171peer routers. If you need to use a password for peering, you can use the
72- ` --peer-router-passwords `  CLI flag or the ` io. kube-router.net. peer.passwords`  node
72+ ` --peer-router-passwords `  CLI flag or the ` kube-router.io/ peer.passwords `  node
7373annotation.
7474
7575#### Base64 Encoding Passwords  
@@ -97,7 +97,7 @@ Note the comma indicating the end of the first password.
9797
9898Now here's the same example but configured as node annotations:
9999``` 
100- kubectl annotate node <kube-node> "io. kube-router.net. peer.ips=192.168.1.99,192.168.1.100" 
101- kubectl annotate node <kube-node> "io. kube-router.net. peer.asns=65000,65000" 
102- kubectl annotate node <kube-node> "io. kube-router.net. peer.passwords=U2VjdXJlUGFzc3dvcmQK," 
100+ kubectl annotate node <kube-node> "kube-router.io/ peer.ips=192.168.1.99,192.168.1.100" 
101+ kubectl annotate node <kube-node> "kube-router.io/ peer.asns=65000,65000" 
102+ kubectl annotate node <kube-node> "kube-router.io/ peer.passwords=U2VjdXJlUGFzc3dvcmQK," 
103103``` 
0 commit comments