Skip to content

Commit

Permalink
docs:revise vpc.md
Browse files Browse the repository at this point in the history
image, externalPort, internalPort must be quote
  • Loading branch information
bobz965 committed Oct 13, 2021
1 parent b568125 commit 0a53398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/vpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ metadata:
name: ovn-vpc-nat-gw-config
namespace: kube-system
data:
image: kubeovn/vpc-nat-gateway:v1.8.0 # Docker image for vpc nat gateway
image: 'kubeovn/vpc-nat-gateway:v1.8.0' # Docker image for vpc nat gateway
enable-vpc-nat-gw: true # 'true' for enable, 'false' for disable
nic: eth1 # The nic that connect to underlay network, use as the 'master' for macvlan
```
Expand Down Expand Up @@ -156,10 +156,10 @@ spec:
internalIp: 10.0.1.5
dnatRules:
- eip: 192.168.0.112
externalPort: 8888
externalPort: '8888'
protocol: tcp
internalIp: 10.0.1.10
internalPort: 80
internalPort: '80'
snatRules:
- eip: 192.168.0.112
internalCIDR: 10.0.1.0/24
Expand Down

0 comments on commit 0a53398

Please sign in to comment.