Skip to content
Merged
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: 3 additions & 0 deletions crd/nodenetworkconfig/api/v1alpha/nodenetworkconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@ type NetworkContainer struct {
// +kubebuilder:default=vnet
Type NCType `json:"type,omitempty"`
PrimaryIP string `json:"primaryIP,omitempty"`
PrimaryIPV6 string `json:"primaryIPV6,omitempty"`
SubnetName string `json:"subnetName,omitempty"`
IPAssignments []IPAssignment `json:"ipAssignments,omitempty"`
DefaultGateway string `json:"defaultGateway,omitempty"`
DefaultGatewayV6 string `json:"defaultGatewayV6,omitempty"`
MacAddress string `json:"macAddress,omitempty"`
SubnetAddressSpace string `json:"subnetAddressSpace,omitempty"`
// +kubebuilder:default=0
// +kubebuilder:validation:Optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ spec:
type: string
defaultGateway:
type: string
defaultGatewayV6:
type: string
id:
type: string
ipAssignments:
Expand All @@ -122,10 +124,14 @@ spec:
type: string
type: object
type: array
macAddress:
type: string
nodeIP:
type: string
primaryIP:
type: string
primaryIPV6:
type: string
resourceGroupID:
type: string
status:
Expand Down
Loading