Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine NetworkInfo CR VPCState.LoadBalancerIPAddresses description #1005

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions build/yaml/crd/vpc/crd.nsx.vmware.com_networkinfos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ spec:
description: Default SNAT IP for Private Subnets.
type: string
loadBalancerIPAddresses:
description: LoadBalancerIPAddresses (AVI SE Subnet CIDR or NSX
LB SNAT IPs).
description: LoadBalancerIPAddresses (AVI SE Subnet CIDR).
type: string
name:
description: VPC name.
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/vpc/v1alpha1/networkinfo_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type VPCState struct {
Name string `json:"name"`
// Default SNAT IP for Private Subnets.
DefaultSNATIP string `json:"defaultSNATIP"`
// LoadBalancerIPAddresses (AVI SE Subnet CIDR or NSX LB SNAT IPs).
// LoadBalancerIPAddresses (AVI SE Subnet CIDR).
LoadBalancerIPAddresses string `json:"loadBalancerIPAddresses,omitempty"`
// Private CIDRs used for the VPC.
PrivateIPs []string `json:"privateIPs,omitempty"`
Expand Down
Loading