Skip to content

Commit

Permalink
go lint
Browse files Browse the repository at this point in the history
Signed-off-by: abaguas <[email protected]>
  • Loading branch information
abaguas committed Jun 13, 2024
1 parent b5a4d6a commit 2bfca90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/v1beta1/gslb_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ type GslbSpec struct {
// LoadBalancer holds the GSLB's load balancer configuration
// +k8s:openapi-gen=true
type LoadBalancer struct {
// ExposedIPs on the local Load Balancer. This information is extracted automatically from the 'ingress' or 'resourceRef' configuration (optional)
// ExposedIPs on the local Load Balancer
ExposedIPs []string `json:"exposedIps,omitempty"`
}

// Servers holds the GSLB's servers' configuration
// +k8s:openapi-gen=true
type Server struct {
// Hostname exposed by the GSLB. This information is extracted automatically from the 'ingress' or 'resourceRef' configuration (optional)
// Hostname exposed by the GSLB
Host string `json:"host,omitempty"`
// Kubernetes Services backing the load balanced application under the hostname. This information is extracted automatically from the 'ingress' or 'resourceRef' configuration (optional)
// Kubernetes Services backing the load balanced application
Services []*NamespacedName `json:"services,omitempty"`
}

Expand Down

0 comments on commit 2bfca90

Please sign in to comment.