Skip to content

Commit

Permalink
Merge pull request #31 from takutakahashi/add_aws_backend
Browse files Browse the repository at this point in the history
add omitempty
  • Loading branch information
takutakahashi committed May 13, 2020
2 parents 56f60ac + 8312ddd commit 9839389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/v1beta1/loadbalancer_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ type BackendStatus struct {
// +optional
Phase BackendPhase `json:"phase,omitempty"`
// +optional
Internal bool `json:"internal"`
Internal bool `json:"internal,omitempty"`
// +optional
Endpoint BackendEndpoint `json:"endpoint"`
Endpoint BackendEndpoint `json:"endpoint,omitempty"`
// +optional
Listeners []BackendListener `json:"listeners"`
Listeners []BackendListener `json:"listeners,omitempty"`
}

type BackendListener struct {
Expand Down

0 comments on commit 9839389

Please sign in to comment.