Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
adeleporte committed Mar 10, 2021
1 parent 88ee72d commit 30c999a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 25 deletions.
28 changes: 16 additions & 12 deletions docs/guides/lab.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ resource "hcx_network_profile" "net_management" {
name = "HCX-Management-RegionA01-profile"
mtu = 1500
start_address = "192.168.110.151"
end_address = "192.168.110.155"
ip_range {
start_address = "192.168.110.151"
end_address = "192.168.110.155"
}
gateway = "192.168.110.1"
prefix_length = 24
Expand All @@ -58,10 +60,10 @@ resource "hcx_network_profile" "net_uplink" {
name = "HCX-Uplink-RegionA01-profile"
mtu = 1600
start_address = "192.168.110.156"
end_address = "192.168.110.160"
ip_range {
start_address = "192.168.110.156"
end_address = "192.168.110.160"
}
gateway = "192.168.110.1"
prefix_length = 24
Expand All @@ -76,8 +78,10 @@ resource "hcx_network_profile" "net_vmotion" {
name = "HCX-vMotion-RegionA01-profile"
mtu = 1500
start_address = "10.10.30.151"
end_address = "10.10.30.155"
ip_range {
start_address = "10.10.30.151"
end_address = "10.10.30.155"
}
gateway = ""
Expand All @@ -95,10 +99,10 @@ resource "hcx_compute_profile" "compute_profile_1" {
cluster = "RegionA01-COMP01"
datastore = "RegionA01-ISCSI01-COMP01"
management_network = hcx_network_profile.net_management
replication_network = hcx_network_profile.net_management
uplink_network = hcx_network_profile.net_uplink
vmotion_network = hcx_network_profile.net_vmotion
management_network = hcx_network_profile.net_management.id
replication_network = hcx_network_profile.net_management.id
uplink_network = hcx_network_profile.net_uplink.id
vmotion_network = hcx_network_profile.net_vmotion.id
dvs = "RegionA01-vDS-COMP"
service {
Expand Down
29 changes: 16 additions & 13 deletions docs/guides/vmc.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ resource "hcx_network_profile" "net_management" {
name = "HCX-Management-RegionA01-profile"
mtu = 1500
start_address = "192.168.110.151"
end_address = "192.168.110.155"
ip_range {
start_address = "192.168.110.151"
end_address = "192.168.110.155"
}
gateway = "192.168.110.1"
prefix_length = 24
Expand All @@ -127,10 +129,10 @@ resource "hcx_network_profile" "net_uplink" {
name = "HCX-Uplink-RegionA01-profile"
mtu = 1600
start_address = "192.168.110.156"
end_address = "192.168.110.160"
ip_range {
start_address = "192.168.110.156"
end_address = "192.168.110.160"
}
gateway = "192.168.110.1"
prefix_length = 24
Expand All @@ -145,9 +147,10 @@ resource "hcx_network_profile" "net_vmotion" {
name = "HCX-vMotion-RegionA01-profile"
mtu = 1500
start_address = "10.10.30.151"
end_address = "10.10.30.155"
ip_range {
start_address = "10.10.30.151"
end_address = "10.10.30.155"
}
gateway = ""
prefix_length = 24
Expand All @@ -164,10 +167,10 @@ resource "hcx_compute_profile" "compute_profile_1" {
cluster = "RegionA01-COMP01"
datastore = "RegionA01-ISCSI01-COMP01"
management_network = hcx_network_profile.net_management
replication_network = hcx_network_profile.net_management
uplink_network = hcx_network_profile.net_uplink
vmotion_network = hcx_network_profile.net_vmotion
management_network = hcx_network_profile.net_management.id
replication_network = hcx_network_profile.net_management.id
uplink_network = hcx_network_profile.net_uplink.id
vmotion_network = hcx_network_profile.net_vmotion.id
dvs = "RegionA01-vDS-COMP"
service {
Expand Down

0 comments on commit 30c999a

Please sign in to comment.