Skip to content

Commit 60775ef

Browse files
committed
address review comments and cosmetic fixes.
Signed-off-by: Tomoya Fujita <[email protected]>
1 parent cb8a8aa commit 60775ef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/advanced/debug.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sidebar_position: 3
2626
echo $CLOUDCOREIPS
2727
```
2828

29-
3. Generate the certificates for **CloudStream** on the cloud node. The generation file is not in `/etc/kubeedge/`, so it needs to be copied from the repository cloned from GitHub.
29+
3. Generate the certificates for **CloudStream** on the cloud node. Since the generation file is not located in `/etc/kubeedge/`, copy it from the cloned GitHub repository.
3030

3131
Switch to the root user:
3232

@@ -52,7 +52,7 @@ sidebar_position: 3
5252
/etc/kubeedge/certgen.sh stream
5353
```
5454

55-
4. It is needed to set iptables on the host. (This command should be executed on every apiserver deployed node.)(In this case, this the master node, and execute this command by root.) Run the following command on the host where each apiserver runs:
55+
4. It is needed to set iptables on the host. (This procedure should be executed on every node where an api-server is deployed. In this case, it is the control-plane node. Execute those commands as the root user.)
5656

5757
**Note:** First, get the configmap containing all the CloudCore IPs and tunnel ports:
5858

@@ -68,7 +68,7 @@ sidebar_position: 3
6868
...
6969
```
7070

71-
Then set all the iptables for multiple CloudCore instances to every node where apiserver runs. The cloudcore ips and tunnel ports should be obtained from the configmap above.
71+
Then set all the iptables for multiple CloudCore instances to every node where the api-server runs. The CloudCore IPs and tunnel ports should be obtained from the configmap above.
7272

7373
```bash
7474
iptables -t nat -A OUTPUT -p tcp --dport $YOUR-TUNNEL-PORT -j DNAT --to $YOUR-CLOUDCORE-IP:10003
@@ -105,7 +105,7 @@ sidebar_position: 3
105105
Update `edgecore` configuration to enable **edgeStream**.
106106
107107
This modification needs to be done all edge system where `edgecore` runs to update `/etc/kubeedge/config/edgecore.yaml`.
108-
Make sure the `server` IP address to the cloudcore IP (the same as $CLOUDCOREIPS).
108+
Make sure the `server` IP address to the CloudCore IP (the same as $CLOUDCOREIPS).
109109
110110
```yaml
111111
edgeStream:
@@ -119,7 +119,7 @@ sidebar_position: 3
119119
writeDeadline: 15
120120
```
121121
122-
6. Restart all the cloudcore and edgecore to apply the **Stream** configuration.
122+
6. Restart all the CloudCore and EdgeCore to apply the **Stream** configuration.
123123
124124
```shell
125125
sudo su
@@ -138,7 +138,7 @@ sidebar_position: 3
138138
kubectl -n kubeedge rollout restart deployment cloudcore
139139
```
140140
141-
EdgeCore:
141+
Restart the EdgeCore:
142142
143143
```shell
144144
systemctl restart edgecore.service

0 commit comments

Comments
 (0)