Skip to content
Snippets Groups Projects
Commit 7ed4dae9 authored by kaiyou's avatar kaiyou
Browse files

Fix the docs about running a 'full' node

parent d199cb8c
No related branches found
No related tags found
No related merge requests found
...@@ -44,9 +44,9 @@ master (apiserver, controller manager, etc.) and a kubelet in a single process. ...@@ -44,9 +44,9 @@ master (apiserver, controller manager, etc.) and a kubelet in a single process.
source env source env
hepto \ hepto \
# The node name, data will be stored in /var/lib/mycluster/mymaster # The node name, data will be stored in /var/lib/mycluster/mymaster
-name mymaster \ -name myfull \
# The role, here a master only # The role, here a master only
-role master \ -role full \
# The host main network interface # The host main network interface
-iface eth0 -iface eth0
# Optional, IPv6 for the insance, will autoconfigure based on RA if unset # Optional, IPv6 for the insance, will autoconfigure based on RA if unset
...@@ -77,14 +77,14 @@ required when bootstraping nodes). ...@@ -77,14 +77,14 @@ required when bootstraping nodes).
Start by running a master node anywhere: Start by running a master node anywhere:
``` ```
source env source ./env
hepto -name mymaster -role master -iface eth0 -ip 2a00::dead:beef/64 hepto -name mymaster -role master -iface eth0 -ip 2a00::dead:beef/64
``` ```
Then on every other node, use the anchor IP address for discovery: Then on every other node, use the anchor IP address for discovery:
``` ```
source env source ./env
hepto -name mynode1 -role node -iface eth0 -anchor 2a00::dead:beef hepto -name mynode1 -role node -iface eth0 -anchor 2a00::dead:beef
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment