fixed typo in gloo/v1/types.go

Signed-off-by: Keerthan Ekbote <keerthan.ekbote@solo.io>
This commit is contained in:
Keerthan Ekbote
2021-05-05 11:21:43 -04:00
parent f0f44c9d35
commit 99b3775926

View File

@@ -16,11 +16,11 @@ type Upstream struct {
}
type UpstreamSpec struct {
Kube KubeUpstream `json:"kube,omitempty""`
Kube KubeUpstream `json:"kube,omitempty"`
}
type KubeUpstream struct {
ServiceName string `json:"service_name,omitempty""`
ServiceName string `json:"service_name,omitempty"`
ServiceNamespace string `json:"service_namespace,omitempty"`
ServicePort int32 `json:"service_port,omitempty"`
Selector map[string]string `json:"selector,omitempty"`