rm unused flag param istio-ingressgateways

This commit is contained in:
Tariq Ibrahim 2020-06-26 17:13:26 -07:00
parent e3055f1498
commit 96cffaff93
No known key found for this signature in database
GPG Key ID: DFC94E4A008B908A
4 changed files with 0 additions and 5 deletions

View File

@ -112,7 +112,6 @@ func main() {
KubeConfig: cfg.KubeConfig,
KubeMaster: cfg.Master,
ServiceTypeFilter: cfg.ServiceTypeFilter,
IstioIngressGatewayServices: cfg.IstioIngressGatewayServices,
CFAPIEndpoint: cfg.CFAPIEndpoint,
CFUsername: cfg.CFUsername,
CFPassword: cfg.CFPassword,

View File

@ -41,7 +41,6 @@ type Config struct {
Master string
KubeConfig string
RequestTimeout time.Duration
IstioIngressGatewayServices []string
ContourLoadBalancerService string
SkipperRouteGroupVersion string
Sources []string
@ -148,7 +147,6 @@ var defaultConfig = &Config{
Master: "",
KubeConfig: "",
RequestTimeout: time.Second * 30,
IstioIngressGatewayServices: []string{"istio-system/istio-ingressgateway"},
ContourLoadBalancerService: "heptio-contour/contour",
SkipperRouteGroupVersion: "zalando.org/v1",
Sources: nil,

View File

@ -55,7 +55,6 @@ type Config struct {
KubeConfig string
KubeMaster string
ServiceTypeFilter []string
IstioIngressGatewayServices []string
CFAPIEndpoint string
CFUsername string
CFPassword string

View File

@ -155,6 +155,5 @@ func TestByNames(t *testing.T) {
}
var minimalConfig = &Config{
IstioIngressGatewayServices: []string{"istio-system/istio-ingressgateway"},
ContourLoadBalancerService: "heptio-contour/contour",
}