istio / old_issues_repo

Deprecated issue-tracking repo, please post new issues or feature requests to istio/istio instead.
37 stars 9 forks source link

ingress running on non standard ports: authority/port matching issue (for gRPC host based routing for instance) #60

Closed maruina closed 6 years ago

maruina commented 7 years ago

Bug: Y

What Version of Istio and Kubernetes are you using, where did you get Istio from, Installation details This is istio on minikube

$ minikube version
minikube version: v0.22.2

$ istioctl version
Version: 0.2.2
GitRevision: 4d3e5b5dac116dfc840e21b9620b43e6c5f051a8
GitBranch: master
User: root@0926058fbc6f
GolangVersion: go1.8.3

$ kubectl version
Client Version: version.Info{Major:"1", Minor:"7", GitVersion:"v1.7.6", GitCommit:"4bc5e7f9a6c25dc4c03d4d656f2cefd21540e28c", GitTreeState:"clean", BuildDate:"2017-09-15T08:51:09Z", GoVersion:"go1.9", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"7", GitVersion:"v1.7.4", GitCommit:"793658f2d7ca7f064d2bdf606519f9fe1229c381", GitTreeState:"dirty", BuildDate:"2017-08-25T10:31:26Z", GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}

What happened: I have a service exposing 2 ports: one is gRPC, the other is HTTP. I created an ingress rule to talk to the service

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: testbedservicev1
  annotations:
    kubernetes.io/ingress.class: "istio"
spec:
  rules:
  - host: testbedservicev1
    http:
      paths:
      - backend:
          serviceName: testbedservicev1
          servicePort: grpc-grpc
  - host: testbedservicev1-rest
    http:
      paths:
      - backend:
          serviceName: testbedservicev1
          servicePort: 5000
$ kubectl describe ingress testbedservicev1
Name:           testbedservicev1
Namespace:      default
Address:
Default backend:    default-http-backend:80 (<none>)
Rules:
  Host          Path    Backends
  ----          ----    --------
  testbedservicev1
                    testbedservicev1:grpc-grpc (<none>)
  testbedservicev1-rest
                    testbedservicev1:5000 (<none>)
Annotations:
Events: <none>

but when I send a request to it, I get a 404 from Envoy at the ingress level. If I try to do a request over HTTP, it works.

$ curl -H 'Host: testbedservicev1-rest' http://$MINIKUBE_IP_PORT
Congratulations! You have successfully launched dw-testbed-service%

This is the gRPC client request with the Envoy response

----------------OUTBOUND--------------------
[id: 0x24f5f21a, L:/172.17.0.2:58686 - R:testbedservicev1/192.168.64.8:32452] HEADERS: streamId=3, headers=GrpcHttp2OutboundHeaders[:authority: testbedservicev1:32452, :path: /net.skyscanner.mshell.dwtestbedservice.grpc.TestbedServiceV1/SayHello, :method: POST, :scheme: http, content-type: application/grpc, te: trailers, user-agent: grpc-java-netty, grpc-accept-encoding: gzip], streamDependency=0, weight=16, exclusive=false, padding=0, endStream=false
------------------------------------
DEBUG [2017-09-20 13:57:39,479] io.grpc.netty.NettyClientHandler:
----------------OUTBOUND--------------------
[id: 0x24f5f21a, L:/172.17.0.2:58686 - R:testbedservicev1/192.168.64.8:32452] DATA: streamId=3, padding=0, endStream=true, length=5, bytes=0000000000
------------------------------------
DEBUG [2017-09-20 13:57:39,569] io.grpc.netty.NettyClientHandler:
----------------INBOUND--------------------
[id: 0x24f5f21a, L:/172.17.0.2:58686 - R:testbedservicev1/192.168.64.8:32452] HEADERS: streamId=3, headers=GrpcHttp2ResponseHeaders[:status: 404, date: Wed, 20 Sep 2017 13:07:50 GMT, server: envoy], padding=0, endStream=true
------------------------------------

and this is the istio-ingress log

[2017-09-20T13:07:50.005Z] "GET / HTTP/1.1" 200 - 0 66 114 65 "172.17.0.1" "curl/7.55.1" "90d9dfd2-40c6-9e0d-9b50-f528917634e7" "testbedservicev1-rest" "172.17.0.10:5000"
[2017-09-20T13:07:51.005Z] "POST /net.skyscanner.mshell.dwtestbedservice.grpc.TestbedServiceV1/SayHello HTTP/2" 404 NR 0 0 0 - "172.17.0.1" "grpc-java-netty" "5ccb2fab-0c7a-9d04-9989-c24906e824f0" "testbedservicev1:32452" "-"

If I change the ingress rule to be path based

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: testbedservicev1
  annotations:
    kubernetes.io/ingress.class: "istio"
spec:
  rules:
  - http:
        paths:
        - path: /.*
          backend:
            serviceName: testbedservicev1
            servicePort: grpc-grpc
  - host: testbedservicev1-rest
    http:
      paths:
      - backend:
          serviceName: testbedservicev1
          servicePort: 5000
---
$ kubectl describe ingress testbedservicev1
Name:           testbedservicev1
Namespace:      default
Address:
Default backend:    default-http-backend:80 (<none>)
Rules:
  Host          Path    Backends
  ----          ----    --------
  *
                /.*     testbedservicev1:grpc-grpc (<none>)
  testbedservicev1-rest
                    testbedservicev1:5000 (<none>)
Annotations:
Events: <none>

then gRPC works.

[2017-09-20T13:17:25.860Z] "POST /net.skyscanner.mshell.dwtestbedservice.grpc.TestbedServiceV1/SayHello HTTP/2" 200 - 5 13 125 100 "172.17.0.1" "grpc-java-netty" "bce052c2-350d-9445-a618-a76e1aa78c20" "testbedservicev1:32452" "172.17.0.10:5002"
[2017-09-20T13:17:26.203Z] "POST /net.skyscanner.mshell.dwtestbedservice.grpc.TestbedServiceV1/StreamHellos HTTP/2" 200 - 5 150 87 39 "172.17.0.1" "grpc-java-netty" "0e6a61c0-d0c1-94eb-ac71-b8c4139d65cb" "testbedservicev1:32452" "172.17.0.10:5002"

Because of this I think there might be something wrong while parsing the HTTP2 authority header and maybe the pilot is not stripping the port number from it. Minikube IP and PORT for ingress

$ kubectl get svc istio-ingress --namespace=istio-system -o 'jsonpath={.spec.ports[0].nodePort}'
32452%
$ kubectl get po --namespace=istio-system -l istio=ingress -o 'jsonpath={.items[0].status.hostIP}'
192.168.64.8%

What you expected to happen: The gRPC call should work using the host header rule.

How to reproduce it: See above. Unfortunately I cannot share the docker containers we're using.

rshriram commented 7 years ago

Thank you for this report. @debianmaster faced the same issue and its recorded in #57 . Its not about HTTP2. I think its got something to do with the way we generate Envoy configurations. Can you do the following?

  1. kubectl logs You should see Pilot printing out the command used to start Envoy /usr/local/bin/envoy -c .. --service-node <istio~ingres~...>

Take the value of service-node.

  1. From the istio ingress pod (exec into it), run the following
    curl  http://istio-pilot:8080/v1/routes/80/istio-proxy/<service-node-value>

This should dump the virtual host configuration that Pilot is serving to Envoy. I have a feeling that virtual hosts are not getting through, even though, looking at our Ingress code, I don't see the issue yet.

rshriram commented 7 years ago

I might have spoken too soon, as this appears to be a different issue. The dump from pilot would help!

maruina commented 7 years ago
$ kubectl logs istio-pilot-3995879092-39pbt

I0920 08:38:11.958003       1 main.go:90] mesh configuration (*istio_proxy_v1_config.MeshConfig)(0xc4203c0090)(egress_proxy_address:"istio-egress.istio-system:80" mixer_address:"istio-mixer.istio-system:9091" proxy_listen_port:15001 connect_timeout:<seconds:1 > ingress_class:"istio" ingress_service:"istio-ingress.istio-system" ingress_controller_mode:STRICT rds_refresh_delay:<seconds:30 > enable_tracing:true access_log_file:"/dev/stdout" default_config:<config_path:"/etc/istio/proxy" binary_path:"/usr/local/bin/envoy" service_cluster:"istio-proxy" drain_duration:<seconds:45 > parent_shutdown_duration:<seconds:60 > discovery_address:"istio-pilot.istio-system:8080" discovery_refresh_delay:<seconds:30 > zipkin_address:"zipkin.istio-system:9411" connect_timeout:<seconds:10 > statsd_udp_address:"istio-mixer.istio-system:9125" proxy_admin_port:15000 > )
I0920 08:38:11.961385       1 main.go:91] version root@0926058fbc6f-0.2.2-4d3e5b5dac116dfc840e21b9620b43e6c5f051a8
I0920 08:38:11.962583       1 main.go:92] flags (main.args) {
 kubeconfig: (string) "",
 meshconfig: (string) (len=22) "/etc/istio/config/mesh",
 controllerOptions: (kube.ControllerOptions) {
  Namespace: (string) "",
  WatchedNamespace: (string) "",
  ResyncPeriod: (time.Duration) 1m0s,
  DomainSuffix: (string) (len=13) "cluster.local"
 },
 discoveryOptions: (envoy.DiscoveryServiceOptions) {
  Port: (int) 8080,
  EnableProfiling: (bool) true,
  EnableCaching: (bool) true
 },
 registries: ([]string) (len=1 cap=1) {
  (string) (len=10) "Kubernetes"
 },
 consul: (main.consulArgs) {
  config: (string) "",
  serverURL: (string) ""
 },
 eureka: (main.eurekaArgs) {
  serverURL: (string) ""
 },
 admissionArgs: (admit.ControllerOptions) {
  Descriptor: (model.ConfigDescriptor) <nil>,
  ExternalAdmissionWebhookName: (string) (len=22) "pilot-webhook.istio.io",
  ServiceName: (string) (len=20) "istio-pilot-external",
  ServiceNamespace: (string) "",
  ValidateNamespaces: ([]string) <nil>,
  DomainSuffix: (string) "",
  SecretName: (string) (len=13) "pilot-webhook",
  Port: (int) 443,
  RegistrationDelay: (time.Duration) 5s
 }
}
W0920 08:38:11.962688       1 client_config.go:529] Neither --kubeconfig nor --master was specified.  Using the inClusterConfig.  This might not work.
I0920 08:38:11.964337       1 client.go:167] registering CRD "routerules.config.istio.io"
I0920 08:38:11.995929       1 client.go:167] registering CRD "egressrules.config.istio.io"
I0920 08:38:12.017355       1 client.go:167] registering CRD "destinationpolicies.config.istio.io"
I0920 08:38:12.866618       1 client.go:187] established CRD "routerules.config.istio.io"
I0920 08:38:12.948561       1 client.go:187] established CRD "egressrules.config.istio.io"
I0920 08:38:13.006037       1 client.go:187] established CRD "destinationpolicies.config.istio.io"
I0920 08:38:13.045674       1 controller.go:52] CRD controller running in namespace istio-system, watching app namespaces 
I0920 08:38:13.128645       1 main.go:127] Adding Kubernetes registry adapter
I0920 08:38:13.128707       1 controller.go:80] New kube controller running in namespace istio-system, watching namespace 
I0920 08:38:13.128735       1 controller.go:60] Ingress controller running in namespace istio-system, watching namespaces 
I0920 08:38:13.128780       1 status.go:74] INGRESS STATUS publishService istio-system/istio-ingress.istio-system
I0920 08:38:13.184814       1 leaderelection.go:174] attempting to acquire leader lease...
I0920 08:38:13.190442       1 status.go:152] skipping Ingress status update (I am not the current leader)
I0920 08:38:13.226696       1 leaderelection.go:184] successfully acquired lease istio-system/istio-ingress-controller-leader-istio
I0920 08:38:13.229094       1 status.go:171] new leader elected (istio-pilot-3995879092-39pbt)
I0920 08:38:13.229286       1 status.go:173] I am the new status update leader
I0920 08:38:13.229326       1 discovery.go:297] Starting discovery service at :8080
E0920 08:38:13.284390       1 admit.go:211] cannot find ca.crt in extension-apiserver-authentication: ConfigMap.Data is map[string]string{"client-ca-file":"-----BEGIN CERTIFICATE-----\nMIIC5zCCAc+gAwIBAgIBATANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwptaW5p\na3ViZUNBMB4XDTE3MDkxOTA4MjA1MFoXDTI3MDkxNzA4MjA1MFowFTETMBEGA1UE\nAxMKbWluaWt1YmVDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMeV\n4Fv3BglSbUlZMj0YHkj6k+Srwv+zNSVNo6iVsxaUvGmI/K6qlBXa5WkimqsZNrn0\nFQwf04cWdU2LmM7xmOf+sQj1qEOcIIbLzcAnL/jylivsz5OlVpptkTMmgn00CUWc\noZl9dRw2Z336Hdtn3FDSkskxdOZXRk3IAcQZhq1zhtkzjSiCt+gwFZjki0BKcHT8\nVZ/uEH1AZY1GvJK5SwiixaXGdmsbtoPQoCwi9PjEB0JKXx3tYRa6ofFDdSwRCBtF\nNg2ikPojx0XhmtxihpMTCjXRca27P5Io6Jb2BaHr6dUwQPqkO38epXiqNf4fFcD5\njrSyvijju4lh8jHT14kCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgKkMB0GA1UdJQQW\nMBQGCCsGAQUFBwMCBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3\nDQEBCwUAA4IBAQCkLGlkbUIlJTy5Ff6XgUsNtUJv6LVcSq59jcYwiCre3wbHG/DP\nU8fRZUHsYpunzur5XS8gvbxQOhMQde7yywnCJ52LiD5eCi2rBOuyQhSxFx/A3G9Y\n4/924FAZbKS7Wjt3cYPecWhu2LIPgrgZKfM4p5dMloQrUpcSPKjiOH1RPXNNpGte\n0VqQq2UgDRJ/iOmK+gyO8VHhR2a+cjXQcbxJZSh3fYNwsIoaozbJmVJ15S+moRbK\n827SQvjkWhO19dEv/79amJ9n0dfO+/ZEcCZa0ssR8442EgcSWn5vhFdPn5WyJEgk\n5fI86+zxzgpCCQbkUUHIRpDqgPdcJ6S4gtFd\n-----END CERTIFICATE-----\n"}
I0920 08:38:14.141238       1 controller.go:436] Handle service istio-ingress in namespace istio-system
I0920 08:38:14.141293       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:14.230447       1 controller.go:436] Handle service istio-egress in namespace istio-system
I0920 08:38:14.231408       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:14.331557       1 controller.go:436] Handle service kubernetes in namespace default
I0920 08:38:14.331702       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:14.630478       1 controller.go:436] Handle service istio-mixer in namespace istio-system
I0920 08:38:14.630643       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:14.746870       1 controller.go:436] Handle service istio-pilot in namespace istio-system
I0920 08:38:14.786530       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:14.849048       1 controller.go:456] Handle endpoint kubernetes in namespace default
I0920 08:38:14.849083       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:15.033300       1 controller.go:456] Handle endpoint istio-mixer in namespace istio-system
I0920 08:38:15.044466       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:15.136406       1 controller.go:456] Handle endpoint istio-pilot in namespace istio-system
I0920 08:38:15.136545       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:15.231070       1 controller.go:456] Handle endpoint istio-egress in namespace istio-system
I0920 08:38:15.231241       1 discovery.go:332] Cleared discovery service cache
I0920 08:38:15.631622       1 controller.go:456] Handle endpoint istio-ingress in namespace istio-system
I0920 08:38:15.631674       1 discovery.go:332] Cleared discovery service cache
W0920 08:38:43.470770       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:43.483882       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:43.599994       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:43.645174       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:43.731593       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:43.923420       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:44.091235       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:44.426177       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:45.634368       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:46.920993       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:49.490554       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:38:54.615985       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:39:04.865233       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:39:13.198894       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:39:25.352139       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:39:43.195190       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:40:13.243964       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:40:43.202388       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:40:47.296829       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:41:13.300136       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:41:43.229683       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:42:13.311359       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:42:43.303353       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:43:13.269576       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:43:43.298958       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:43:44.131591       1 controller.go:456] Handle endpoint istio-ingress in namespace istio-system
I0920 08:43:44.131643       1 discovery.go:332] Cleared discovery service cache
I0920 08:43:46.540947       1 controller.go:456] Handle endpoint istio-egress in namespace istio-system
I0920 08:43:46.540983       1 discovery.go:332] Cleared discovery service cache
W0920 08:44:13.280334       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:44:43.272019       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:45:13.360916       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:45:43.287267       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:46:12.334166       1 controller.go:456] Handle endpoint istio-mixer in namespace istio-system
I0920 08:46:12.334601       1 discovery.go:332] Cleared discovery service cache
W0920 08:46:13.484526       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:46:43.477942       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:47:13.398680       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:47:43.399356       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:48:13.761607       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:48:43.736207       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:49:13.774390       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:49:44.013808       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:49:54.931022       1 controller.go:436] Handle service testbedservicev1 in namespace default
I0920 08:49:54.931071       1 discovery.go:332] Cleared discovery service cache
I0920 08:49:55.031567       1 controller.go:456] Handle endpoint testbedservicev1 in namespace default
I0920 08:49:55.031623       1 discovery.go:332] Cleared discovery service cache
I0920 08:49:55.730430       1 controller.go:456] Handle endpoint testbedservicev1 in namespace default
I0920 08:49:55.730521       1 discovery.go:332] Cleared discovery service cache
W0920 08:50:14.012014       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:50:44.009116       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:50:47.131607       1 controller.go:436] Handle service foo in namespace default
I0920 08:50:47.131656       1 discovery.go:332] Cleared discovery service cache
I0920 08:50:47.239074       1 controller.go:456] Handle endpoint foo in namespace default
I0920 08:50:47.239111       1 discovery.go:332] Cleared discovery service cache
I0920 08:50:47.830647       1 controller.go:456] Handle endpoint foo in namespace default
I0920 08:50:47.830752       1 discovery.go:332] Cleared discovery service cache
I0920 08:50:50.942657       1 controller.go:95] ingress event add for default/foo
I0920 08:50:50.953464       1 discovery.go:332] Cleared discovery service cache
W0920 08:51:14.062977       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:51:44.013219       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:52:14.270911       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:52:44.022420       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:53:00.330541       1 controller.go:456] Handle endpoint foo in namespace default
I0920 08:53:00.330579       1 discovery.go:332] Cleared discovery service cache
I0920 08:53:03.430579       1 controller.go:456] Handle endpoint testbedservicev1 in namespace default
I0920 08:53:03.430611       1 discovery.go:332] Cleared discovery service cache
I0920 08:53:11.131471       1 controller.go:456] Handle endpoint foo in namespace default
I0920 08:53:11.131583       1 discovery.go:332] Cleared discovery service cache
W0920 08:53:14.224916       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 08:53:16.131418       1 controller.go:456] Handle endpoint testbedservicev1 in namespace default
I0920 08:53:16.131450       1 discovery.go:332] Cleared discovery service cache
W0920 08:53:18.951607       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:18.951697       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.555677       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.555744       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.899353       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.900265       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.902879       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.902963       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.904577       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.904655       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.909861       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.916298       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.915761       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:19.916194       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.950280       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:53:19.952893       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:53:44.075296       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:54:14.352208       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:54:44.319894       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:55:14.321514       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:55:32.566169       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:32.566329       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 08:55:32.631782       1 controller.go:456] Handle endpoint foo in namespace default
I0920 08:55:32.631937       1 discovery.go:332] Cleared discovery service cache
W0920 08:55:33.412809       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.413099       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.735659       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.735751       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.736948       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.743700       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.743588       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.744277       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.744592       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.744746       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.736688       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:33.745764       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.744412       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:33.746358       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:34.645140       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:34.646921       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:34.719609       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:34.721162       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:34.941381       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:34.941444       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:39.255371       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:39.255518       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:44.320881       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:55:51.388098       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:51.388165       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:51.594740       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:55:51.594832       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:57.317237       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:55:57.321395       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:56:07.234656       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:56:07.234711       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:56:08.614864       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 08:56:08.614947       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 08:56:14.534673       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:56:44.422225       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:57:14.552036       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:57:27.309770       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:57:44.426595       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:58:14.434305       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:58:44.434672       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:59:14.448444       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 08:59:44.519073       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:00:14.548833       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:00:44.456935       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:01:14.596232       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 09:01:21.131476       1 controller.go:456] Handle endpoint testbedservicev1 in namespace default
I0920 09:01:21.131541       1 discovery.go:332] Cleared discovery service cache
W0920 09:01:22.251695       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:22.251929       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:25.537274       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:25.539180       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:28.298349       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:28.299009       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:32.771876       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:32.771939       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:34.314653       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:34.332269       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:35.776416       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:35.778871       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:39.025613       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:39.026174       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:40.876043       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:40.877113       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:43.257128       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:43.257710       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:44.626937       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:01:45.903770       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:45.941706       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:46.489466       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:46.490265       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:49.817804       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:49.817995       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:52.139486       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:01:52.139999       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:56.416597       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:01:56.420474       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:02:02.776229       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:02:02.776376       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:02:14.609250       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:02:18.317588       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:02:18.317831       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:02:44.633041       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:03:14.618322       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:03:44.618033       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:04:14.644445       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:04:44.644158       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:05:14.641536       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:05:44.633215       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:06:14.729696       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:06:44.656745       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 09:06:53.835225       1 controller.go:95] ingress event add for default/testbedservicev1
I0920 09:06:53.835312       1 discovery.go:332] Cleared discovery service cache
W0920 09:06:54.014382       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 09:06:54.759124       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 09:06:56.297349       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 09:07:01.195802       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:01.195867       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:01.868415       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:01.868637       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:03.303252       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:03.303401       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:07.115707       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:07.115761       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:10.601625       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:10.601809       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:14.022707       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:14.023053       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:14.633912       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:07:15.742018       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:15.742113       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:18.581668       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:18.584184       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:20.703643       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:20.703763       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:23.822344       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:23.822516       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:23.871813       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:23.871902       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:26.360274       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:26.360342       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:34.123243       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:34.123299       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:39.306165       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:39.306232       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:40.498996       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:07:40.499070       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:44.635110       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:07:46.651060       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:07:46.657018       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:08:14.679459       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:08:44.645620       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:09:14.657721       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:09:44.647188       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:10:14.723352       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:10:44.651907       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:11:14.655503       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:11:44.654696       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:12:14.663803       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:12:44.659758       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:13:14.667520       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:13:44.682858       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:14:07.313336       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:14:14.697344       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:14:44.929433       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:15:14.701658       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:15:44.736344       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:16:14.757003       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:16:44.724739       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:17:14.754384       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:17:44.796192       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:18:14.762209       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:18:44.741702       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:19:14.745454       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:19:44.750133       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:20:14.762103       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:20:44.747840       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:21:14.759788       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:21:44.758575       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:22:14.967230       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:22:44.946328       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:23:15.012877       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:23:44.955327       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:24:15.010090       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:24:45.009909       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:25:15.008580       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:25:45.011561       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:26:15.015667       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:26:45.018419       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:27:15.019597       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:27:45.022296       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:28:15.017943       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:28:45.028487       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:29:15.092268       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:29:45.063756       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:30:15.050427       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:30:45.040394       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:30:47.320695       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:31:15.043030       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:31:45.041927       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:32:15.094426       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:32:45.091999       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:33:15.089617       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:33:45.092992       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:34:15.109290       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:34:45.096669       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:35:15.089464       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:35:45.092735       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:36:15.095551       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:36:45.092623       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:37:15.148724       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:37:45.091733       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:38:15.101441       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:38:45.092217       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:39:15.094559       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:39:45.122105       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:40:15.100572       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:40:45.102578       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:41:15.384622       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:41:45.243298       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:42:15.243460       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:42:45.237819       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:43:15.313490       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:43:45.309541       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:44:15.336133       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:44:45.329358       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:45:15.350508       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:45:45.333164       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:46:15.344056       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:46:45.346468       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:47:15.645113       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:47:27.353104       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:47:45.590107       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:48:15.554226       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:48:45.554825       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:49:15.616210       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:49:45.607268       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:50:15.624412       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:50:45.625247       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:51:15.666731       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:51:45.667578       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:52:15.648589       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:52:45.647613       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:53:15.695824       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:53:45.694688       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:54:15.737272       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:54:45.735943       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:55:15.785093       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:55:45.757949       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:56:15.756353       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:56:45.750045       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:57:15.875752       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:57:45.853302       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 09:58:13.134697       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 09:58:13.134902       1 discovery.go:332] Cleared discovery service cache
I0920 09:58:13.134930       1 discovery.go:332] Cleared discovery service cache
W0920 09:58:13.546567       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:13.546676       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:13.637262       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:13.637643       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:15.543463       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:15.549306       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:15.846244       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:58:17.926962       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:17.927084       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:18.298887       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:18.299023       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:19.883004       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:19.883173       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:20.717757       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:20.718911       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:24.371452       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:24.371601       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:25.029392       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:25.029447       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:32.813026       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:32.813353       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:33.787496       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:33.787658       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:33.821554       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:33.841772       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:45.835492       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:58:46.714054       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:46.714340       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:47.331352       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:47.331468       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:49.876841       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:58:49.876905       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:53.757292       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 09:58:53.757630       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 09:59:15.851142       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 09:59:45.850311       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:00:15.871283       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:00:45.860405       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:01:15.856810       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:01:45.856859       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:02:15.857653       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:02:45.863235       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:03:15.994063       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:03:45.988786       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:04:07.357249       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:04:16.005781       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:04:45.994468       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:05:16.009739       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:05:46.009367       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:06:16.072699       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:06:46.059904       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:07:16.044394       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:07:46.046121       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:08:16.058352       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:08:46.045617       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:09:16.045528       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:09:46.049751       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:10:16.049598       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:10:46.050489       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:11:16.055412       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:11:46.050314       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:12:16.052166       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:12:46.051893       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:13:16.053360       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:13:46.052878       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:14:16.055741       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:14:46.070288       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:15:16.097453       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:15:46.083571       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:16:16.091982       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:16:46.090682       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:17:16.090222       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:17:46.090141       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:18:16.118471       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:18:46.110853       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:19:16.126582       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:19:46.112561       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:20:16.115787       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:20:46.115203       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:20:47.366787       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:21:16.116756       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:21:46.116349       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:22:16.130061       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:22:46.128716       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:23:16.179645       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 10:23:31.435001       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 10:23:31.435088       1 discovery.go:332] Cleared discovery service cache
I0920 10:23:31.435109       1 discovery.go:332] Cleared discovery service cache
W0920 10:23:31.512606       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:31.512700       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:31.852301       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 10:23:32.058823       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 10:23:37.670171       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:37.670234       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:39.495388       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:39.495508       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:40.035019       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:40.035058       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:40.493698       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:40.493776       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:43.625738       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:43.625819       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:46.136749       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:23:46.837531       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:46.837589       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:49.346368       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:49.346432       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:51.545698       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:51.545762       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:53.400738       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:53.400802       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:56.675216       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:56.675328       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:23:57.881367       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:23:57.881454       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:24:00.745751       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:24:00.745821       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:24:01.148676       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find port "grpc" in "testbedservicev1.default.svc.cluster.local"
W0920 10:24:06.892178       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:24:06.892221       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:24:16.133448       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:24:25.187470       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:24:25.187541       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:24:26.204668       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:24:26.204717       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:24:46.130996       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:25:16.202067       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:25:46.143282       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:26:16.147051       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:26:46.142885       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:27:16.144288       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:27:46.147009       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:28:16.160377       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:28:46.150191       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:29:16.441425       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:29:46.360725       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:30:16.342886       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:30:46.329807       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:31:16.329674       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:31:46.331310       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:32:16.343449       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:32:46.335875       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:33:16.339980       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:33:46.338823       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:34:16.342255       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:34:46.352426       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:35:16.356266       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:35:46.342876       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:36:16.448764       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:36:46.541515       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:37:16.583455       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:37:27.371899       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:37:46.410234       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:38:16.415476       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:38:46.415583       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:39:16.417023       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:39:46.417915       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:40:16.430283       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:40:46.421891       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:41:16.427140       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:41:46.432122       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:42:16.766293       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:42:46.542646       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:43:16.578513       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:43:46.560175       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:44:16.557445       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:44:46.557786       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:45:16.554820       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:45:46.554885       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:46:16.625522       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:46:46.603642       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:47:16.617374       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:47:46.607595       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:48:17.158480       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:48:46.816316       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:49:16.845411       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:49:46.836345       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:50:16.838231       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:50:46.842443       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:51:16.888774       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:51:46.922736       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:52:16.861492       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:52:46.863591       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:53:16.864625       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:53:46.870256       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:54:07.392948       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:54:16.973181       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:54:46.897267       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:55:16.897884       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:55:46.882818       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 10:55:49.505367       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 10:55:49.505514       1 discovery.go:332] Cleared discovery service cache
I0920 10:55:49.505551       1 discovery.go:332] Cleared discovery service cache
W0920 10:55:51.881116       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:55:51.881386       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:55:57.233327       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:55:57.233385       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:05.829400       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:05.829524       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:09.027785       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:09.028736       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:10.858744       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:10.858828       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:11.663112       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:11.663202       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:14.150792       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:14.150933       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:15.079786       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:15.079850       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:16.901534       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:56:17.498247       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:17.498315       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:18.034536       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:18.035139       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:19.299370       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:19.299448       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:20.647008       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:20.647516       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:20.648951       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:20.649008       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:24.651759       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:24.651824       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:24.690612       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:24.690920       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:30.984865       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 10:56:30.984927       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 10:56:46.890196       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:57:16.889934       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:57:46.895639       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:58:16.946666       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:58:46.889454       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:59:16.899190       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 10:59:46.890955       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:00:16.972150       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:00:46.943399       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:01:18.005557       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:01:26.893721       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:01:26.893806       1 discovery.go:332] Cleared discovery service cache
I0920 11:01:26.893828       1 discovery.go:332] Cleared discovery service cache
W0920 11:01:28.605003       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:28.605056       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:29.434760       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:29.434892       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:31.426395       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:31.426525       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:35.268172       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:35.268480       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:40.550615       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:40.550795       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:40.552537       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:40.552618       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:41.451002       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:41.451098       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:42.410839       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:42.410956       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:43.002921       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:43.003020       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:45.165004       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:45.165314       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:45.456502       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:01:45.456561       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:47.512672       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:01:51.540354       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:01:51.540427       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:02:01.085796       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:02:01.085874       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:02:01.152639       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:02:01.152981       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:02:03.701688       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:02:03.701813       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:02:12.457646       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:02:12.457703       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:02:17.536980       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:02:48.010627       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:03:17.702027       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:03:47.690689       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:04:17.696369       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:04:47.692447       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:05:17.702898       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:05:47.740935       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:06:17.699256       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:06:47.699634       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:07:17.728730       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:07:47.730954       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:08:17.734271       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:08:47.727008       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:09:17.799031       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:09:47.762118       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:10:17.768351       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:10:47.400701       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:10:47.751551       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:11:17.929986       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:11:47.901312       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:12:17.899360       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:12:48.086018       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:13:17.966464       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:13:47.972120       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:14:18.096032       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:14:48.096007       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:15:19.427433       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:15:48.394807       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:15:48.795456       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:15:48.795599       1 discovery.go:332] Cleared discovery service cache
I0920 11:15:48.795631       1 discovery.go:332] Cleared discovery service cache
W0920 11:15:49.424334       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find service "hello.default.svc.cluster.local"
W0920 11:15:50.184562       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find service "hello.default.svc.cluster.local"
W0920 11:15:55.192414       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:15:55.192487       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:00.077753       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:00.077813       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:01.655407       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:01.655524       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:02.663510       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:02.663605       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:06.071874       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:06.071961       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:18.342979       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:18.343080       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:18.386889       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:16:18.796042       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:18.796169       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:22.314909       1 ingress.go:65] Error constructing Envoy route from ingress rule: cannot find service "hello.default.svc.cluster.local"
W0920 11:16:25.436706       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:25.436781       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:25.526481       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:25.528000       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:26.344691       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:26.344804       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:27.998479       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:27.998572       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:28.694746       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:28.705721       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:33.052127       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:33.052166       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:33.349378       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:33.349466       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:35.421489       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:35.421587       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:43.281879       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:16:43.281987       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:16:48.375923       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:17:18.471657       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:17:48.427592       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:18:18.654783       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:18:48.635550       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:19:18.774243       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:19:48.661902       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:20:20.929136       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:20:50.848788       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:21:20.904372       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:21:50.874551       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:22:20.881947       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:22:50.877300       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:23:23.122517       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:23:51.486971       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:24:22.320647       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:24:52.014182       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:25:22.022594       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:25:52.027968       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:26:22.043421       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:26:52.020347       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:27:22.070985       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:27:27.542431       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:27:52.037344       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:28:22.042053       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:28:52.158234       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:29:22.083526       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:29:52.081361       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:30:22.406845       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:30:52.085249       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:31:22.243693       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:31:36.041321       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:31:36.041400       1 discovery.go:332] Cleared discovery service cache
I0920 11:31:36.041418       1 discovery.go:332] Cleared discovery service cache
W0920 11:31:40.879530       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:40.879599       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:41.009396       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:41.009457       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:44.068615       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:44.068750       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:44.646142       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:44.646192       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:47.309244       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:47.309314       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:50.891743       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:50.891853       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:52.123008       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:31:56.004648       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:56.004753       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:57.090565       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:57.090634       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:58.157391       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:58.157461       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:31:58.902622       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:31:58.902681       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:02.553628       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:02.553695       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:07.905669       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:07.905821       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:11.111087       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:11.111172       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:12.990708       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:12.990779       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:14.881719       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:14.881791       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:22.126731       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:32:22.680187       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:32:22.680703       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:32:52.119179       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:33:22.128007       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:33:52.121621       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:34:22.156913       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:34:52.186470       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:35:19.639600       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:35:19.639768       1 discovery.go:332] Cleared discovery service cache
I0920 11:35:19.640636       1 discovery.go:332] Cleared discovery service cache
W0920 11:35:19.845490       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:19.845564       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:22.170489       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:35:22.281778       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:22.281817       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:24.223839       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:24.223882       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:25.641396       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:25.641541       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:31.350296       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:31.350429       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:34.483726       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:34.483775       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:34.844146       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:34.844237       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:37.372341       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:37.372382       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:39.591288       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:39.591375       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:40.568228       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:40.568308       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:40.653425       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:40.653491       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:44.665726       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:44.666052       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:51.947368       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:51.947581       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:52.165796       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:35:55.640557       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:55.640614       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:35:56.824715       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:35:56.824780       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:01.259004       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:01.259081       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
I0920 11:36:21.537503       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:36:21.537584       1 discovery.go:332] Cleared discovery service cache
I0920 11:36:21.537604       1 discovery.go:332] Cleared discovery service cache
W0920 11:36:21.943385       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:21.943460       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:22.158380       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:36:22.574666       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:36:23.289490       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:36:24.436223       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:24.438234       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:24.659674       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:24.660322       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:26.507749       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:26.508544       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:27.101341       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:27.101472       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:33.471107       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:33.474466       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:33.947241       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:33.947280       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:35.379399       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:35.380251       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:36.588375       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:36.588482       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:39.428380       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:39.428450       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:42.223927       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:42.224013       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:42.373400       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:42.373470       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:42.902527       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:36:42.904967       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:48.339370       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:36:52.159271       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:36:55.269169       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:36:55.269250       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:37:00.674196       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:37:00.674348       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:37:16.556102       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:37:16.556155       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:37:22.169983       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:37:52.210033       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:38:22.305864       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:38:29.553192       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:38:29.553369       1 discovery.go:332] Cleared discovery service cache
I0920 11:38:29.553412       1 discovery.go:332] Cleared discovery service cache
W0920 11:38:30.192933       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:38:30.697361       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:38:32.761337       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:32.761401       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:33.966409       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:33.966798       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:38.678002       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:38:39.283686       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:39.283812       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
I0920 11:38:42.013590       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:38:42.013654       1 discovery.go:332] Cleared discovery service cache
I0920 11:38:42.013675       1 discovery.go:332] Cleared discovery service cache
W0920 11:38:42.528750       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:38:42.761535       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:38:44.066102       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:44.066354       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:44.670383       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:44.670437       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:45.039383       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:45.039466       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:47.310093       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:47.310214       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:50.698864       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:50.698934       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:52.205424       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:52.205528       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:38:52.225318       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:38:56.708962       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:38:56.709374       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:01.379257       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:01.379328       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:08.480227       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:08.480308       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:11.174989       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:11.175132       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:14.173838       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:14.173924       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:14.839483       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:14.839552       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:21.674951       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:21.675026       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:21.898391       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:21.898462       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:22.212517       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:39:23.478894       1 ingress.go:65] Error constructing Envoy route from ingress rule: header matches in ingress rule not supported
W0920 11:39:32.712016       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:32.712127       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:37.094625       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:39:37.094674       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:39:52.228838       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:39:59.534968       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:39:59.535182       1 discovery.go:332] Cleared discovery service cache
I0920 11:39:59.535215       1 discovery.go:332] Cleared discovery service cache
W0920 11:40:04.128269       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:04.128388       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:08.507811       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:08.507895       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:11.141053       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:11.141243       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:12.996670       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:12.996848       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:20.115375       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:20.115441       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:21.117988       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:21.118315       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:21.333799       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:21.334371       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:21.627533       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:21.627673       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:22.275557       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:40:23.051943       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:23.052040       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:23.338071       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:23.338355       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:25.542887       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:25.543014       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:35.789974       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:35.790118       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:37.183274       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:37.183339       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:45.035229       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:45.035438       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:49.378841       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:49.378942       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:40:52.269445       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:40:52.686432       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:40:52.686517       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:41:22.283234       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:41:52.289111       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:42:23.185475       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:42:52.587569       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:43:22.381757       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:43:52.383784       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:44:08.169397       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:44:22.385245       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:44:52.994144       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:45:22.666653       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:45:52.666730       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:46:22.673978       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:46:52.668656       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:47:22.729964       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:47:52.677830       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:48:22.680646       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:48:52.685784       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:49:22.702879       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:49:52.683321       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:50:22.682265       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:50:52.687089       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:51:22.684921       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:51:52.684358       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:52:22.685077       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:52:52.687264       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:53:22.685836       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:53:52.685566       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:54:22.686802       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:54:52.686954       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:55:22.687355       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:55:52.688306       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:56:22.688178       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 11:56:38.834752       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 11:56:38.835277       1 discovery.go:332] Cleared discovery service cache
I0920 11:56:38.835362       1 discovery.go:332] Cleared discovery service cache
W0920 11:56:41.983908       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:41.984106       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:44.861164       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:44.861257       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:46.276874       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:46.276933       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:49.811871       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:49.811918       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:50.531336       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:50.531404       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:51.718647       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:51.718694       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:52.689334       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:56:58.913270       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:58.913413       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:56:59.983297       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:56:59.983392       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:02.291929       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:02.291983       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:02.630978       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:02.631095       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:04.283624       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:04.283676       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:11.498118       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:11.498166       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:15.744409       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:15.744611       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:22.688771       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:57:24.153443       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:24.153527       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:24.287183       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:24.287265       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:26.366511       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 11:57:26.366596       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 11:57:52.688568       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:58:22.689571       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:58:52.689629       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:59:22.691159       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 11:59:52.692561       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:00:22.691327       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:00:48.188937       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:00:52.693676       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:01:22.693152       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:01:52.692631       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:02:22.692642       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:02:52.694167       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:03:22.693278       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:03:52.707159       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:04:22.694858       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:04:52.724256       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:05:22.716572       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:05:52.695614       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:06:22.701637       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:06:52.696617       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:07:22.696459       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:07:52.696853       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:08:22.697499       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:08:52.697606       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:09:22.699394       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:09:52.698168       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:10:22.707246       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:10:52.700432       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:11:22.699686       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:11:52.700342       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:12:22.704514       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:12:52.730208       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:13:22.703144       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:13:52.701662       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:14:22.703538       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:14:52.713027       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:15:22.705657       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:15:52.706073       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:16:22.706874       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:16:52.709076       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:17:22.706441       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:17:28.193577       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:17:52.707004       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:18:22.716936       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:18:52.710315       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:19:22.710216       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:19:52.710646       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:20:22.712030       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:20:52.712766       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:21:22.712608       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:21:52.713757       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:22:22.714529       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:22:52.714641       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:23:22.715123       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:23:52.716649       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:24:22.717711       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:24:52.746840       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:25:22.718497       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:25:52.717523       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:26:22.717540       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:26:52.718687       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:27:22.718509       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:27:52.718706       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:28:22.720397       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:28:52.719124       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:29:22.719684       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:29:52.719765       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:30:22.721719       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:30:52.720852       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:31:22.720724       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:31:52.722571       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:32:22.721365       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:32:52.722461       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:33:22.722856       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:33:52.723753       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:34:08.197600       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:34:22.751414       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:34:52.737934       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:35:22.734344       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:35:52.734965       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:36:22.775292       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:36:52.771400       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:37:22.759647       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:37:52.762218       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:38:22.771916       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:38:52.775539       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:39:22.771961       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:39:52.772570       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:40:22.770618       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:40:52.786524       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:41:22.776632       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:41:52.772285       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:42:22.774853       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:42:52.773971       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:43:22.775720       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:43:52.782828       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:44:22.777823       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:44:52.784649       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:45:22.778629       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:45:52.785873       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:46:22.782204       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:46:52.782082       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:47:22.783173       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:47:52.806389       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:48:22.782952       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:48:52.781987       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:49:22.786397       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:49:52.783954       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:50:22.788198       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:50:48.204134       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:50:52.946427       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:51:22.787087       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:51:52.793129       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:52:22.786791       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:52:52.789697       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:53:22.788019       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:53:52.790289       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:54:22.804527       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:54:52.789831       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:55:22.793624       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:55:52.792951       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:56:22.796187       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:56:52.794415       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:57:22.796148       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:57:52.798010       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:58:22.798874       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:58:52.798924       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:59:22.796737       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 12:59:52.798264       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:00:22.798024       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:00:52.812323       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:01:22.803144       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:01:52.805341       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:02:22.820724       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:02:52.808734       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:03:22.803265       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:03:52.804152       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:04:22.802241       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:04:52.807087       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:05:22.817699       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:05:52.810818       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:06:22.808960       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:06:52.817115       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:07:22.808288       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:07:28.215462       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:07:52.808384       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:08:22.811610       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:08:52.810698       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:09:22.811911       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:09:53.127498       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:10:23.125628       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:10:53.124785       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:11:23.126326       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:11:53.132895       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:12:23.167790       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 13:12:51.838052       1 controller.go:95] ingress event update for default/testbedservicev1
I0920 13:12:51.838149       1 discovery.go:332] Cleared discovery service cache
I0920 13:12:51.838181       1 discovery.go:332] Cleared discovery service cache
W0920 13:12:53.135482       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:12:54.769199       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:12:54.769260       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:12:58.257022       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:12:58.257154       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:12:58.775690       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:12:58.776101       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:02.844828       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:02.844961       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:07.399502       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:07.399539       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:09.923313       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:09.923462       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:14.267704       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:14.267778       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:20.102781       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:20.103671       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:20.952753       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:20.952801       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:22.405921       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:22.405992       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:23.148835       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:13:24.485375       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:24.485521       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:25.213799       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:25.213924       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:33.152663       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:33.152756       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:33.234571       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:33.234648       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:37.570404       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:37.570511       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:42.672305       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:13:42.672353       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:13:53.145135       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:14:23.150310       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:14:53.150267       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:15:23.157410       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:15:53.152226       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:16:23.214220       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:16:53.479640       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:17:23.168048       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:17:53.191132       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:18:23.178030       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:18:53.181795       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:19:23.210191       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:19:53.183795       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:20:23.200441       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:20:53.182484       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:21:23.264298       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:21:53.207860       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:22:23.194665       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:22:53.195835       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:23:23.404836       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:23:53.210668       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:24:08.223240       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:24:23.209126       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:24:53.230967       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:25:23.209627       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:25:53.227017       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:26:23.226950       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:26:53.225340       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:27:23.219485       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:27:53.219262       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:28:23.218237       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:28:53.221998       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:29:23.221490       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:29:53.310973       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:30:23.490826       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:30:53.339201       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:31:23.341510       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:31:53.341191       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:32:23.339606       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:32:53.418980       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:33:23.456235       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:33:53.430594       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:34:23.662276       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:34:55.572027       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:35:23.721250       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:35:53.749879       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:36:23.832960       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:36:53.762029       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:37:26.099011       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:37:55.442252       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:38:32.146948       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:38:56.063263       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:39:25.486991       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:39:55.528512       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:40:25.496456       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:40:48.247166       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:40:55.609920       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:41:25.570613       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:41:55.585879       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:42:25.571787       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:42:55.605845       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:43:25.609196       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 13:43:37.730542       1 controller.go:436] Handle service world in namespace default
I0920 13:43:37.730588       1 discovery.go:332] Cleared discovery service cache
W0920 13:43:38.171929       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:38.172129       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
I0920 13:43:38.237273       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:43:38.237328       1 discovery.go:332] Cleared discovery service cache
I0920 13:43:38.630566       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:43:38.632188       1 discovery.go:332] Cleared discovery service cache
W0920 13:43:41.946495       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:41.946742       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:45.185587       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:45.185696       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 13:43:45.842675       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:43:45.842771       1 discovery.go:332] Cleared discovery service cache
I0920 13:43:46.531142       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:43:46.531219       1 discovery.go:332] Cleared discovery service cache
I0920 13:43:47.530493       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:43:47.530620       1 discovery.go:332] Cleared discovery service cache
W0920 13:43:50.844162       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:50.844220       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:50.883439       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:50.884586       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:51.815610       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:51.815678       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:51.920731       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:51.920787       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:52.145689       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:52.145797       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:55.581475       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:43:56.062293       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:56.062365       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:56.194806       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:56.194859       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:58.536430       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:58.536476       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:43:58.561360       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:43:58.561422       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:04.809824       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:04.819214       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:05.081229       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:05.081374       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:07.492360       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:07.492943       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 13:44:07.567201       1 controller.go:456] Handle endpoint world in namespace default
I0920 13:44:07.702600       1 discovery.go:332] Cleared discovery service cache
W0920 13:44:08.113395       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:08.113446       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.976271       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.976362       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:08.973938       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.978994       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:08.983116       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.983227       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:08.985230       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.988902       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:08.995074       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:09.024224       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.995518       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:08.995731       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:09.025003       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:09.025170       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:11.920732       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:11.920803       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:15.061308       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:15.061348       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:15.095084       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:15.095162       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:15.681824       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:15.681958       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:21.510677       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:21.510755       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:22.988937       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:22.989114       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:25.580809       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:44:27.095763       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:27.095924       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:27.402683       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:27.402773       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:30.162730       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:30.162858       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:36.970966       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:36.971021       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:40.641323       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:40.641400       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:41.277690       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:41.277761       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:41.769748       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:41.769963       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:45.151920       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:45.160598       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:45.538639       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:45.538706       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:45.538639       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:45.539351       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:47.316594       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:47.316706       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:51.989880       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:44:51.990018       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:44:55.750888       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:45:02.926908       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:45:02.926974       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:45:25.612727       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:45:55.604175       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:46:25.612790       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:46:55.652124       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:47:25.627987       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:47:55.626356       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 13:47:59.936849       1 controller.go:436] Handle service hello in namespace default
I0920 13:47:59.937026       1 discovery.go:332] Cleared discovery service cache
I0920 13:48:00.035520       1 controller.go:456] Handle endpoint hello in namespace default
I0920 13:48:00.035943       1 discovery.go:332] Cleared discovery service cache
I0920 13:48:01.030542       1 controller.go:456] Handle endpoint hello in namespace default
I0920 13:48:01.030592       1 discovery.go:332] Cleared discovery service cache
W0920 13:48:01.469547       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:01.469607       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 13:48:03.531385       1 controller.go:456] Handle endpoint hello in namespace default
I0920 13:48:03.531452       1 discovery.go:332] Cleared discovery service cache
W0920 13:48:03.918564       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:03.918659       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 13:48:04.643912       1 controller.go:456] Handle endpoint hello in namespace default
I0920 13:48:04.643988       1 discovery.go:332] Cleared discovery service cache
W0920 13:48:05.503781       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:05.503915       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:08.385936       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:08.385991       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:08.784541       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:08.784627       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:08.839602       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:08.839750       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
I0920 13:48:08.930962       1 controller.go:456] Handle endpoint hello in namespace default
I0920 13:48:08.931081       1 discovery.go:332] Cleared discovery service cache
W0920 13:48:09.074139       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.075191       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.080926       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.081347       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.089778       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.090272       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.090378       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.092172       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.096039       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.098305       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.100674       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.101007       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.102814       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.106541       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.108704       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:09.111447       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.497998       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:09.498166       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:11.770253       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:11.770337       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:12.300153       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:12.300232       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:18.362812       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:18.362941       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:22.866734       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:22.866925       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:25.536410       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:25.536471       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:25.627397       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:48:25.785411       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:25.785468       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:25.956319       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:25.956480       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:26.305936       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:26.306015       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:26.625242       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:26.625338       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:26.660993       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:26.661176       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:26.686352       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:26.686588       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:29.496613       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:29.496694       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:31.468938       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:31.468990       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:31.499313       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:31.499388       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:31.619189       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:31.619262       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:35.214452       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:35.214638       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:36.490708       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:36.490820       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:37.886777       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:37.886915       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:42.705868       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:42.705980       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:43.431658       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:43.432338       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:43.718882       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:43.719001       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:44.290807       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:44.295625       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:48.033215       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:48.033275       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:48.093647       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:48.093751       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:49.613483       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:49.614241       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:50.608631       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:50.609692       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:51.654487       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:51.654647       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:51.806443       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:51.806581       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:53.557636       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:53.557881       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:55.193938       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:48:55.194778       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:48:55.637088       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:49:01.661671       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:49:01.693546       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:49:25.661276       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:49:55.629745       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:50:25.803537       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
I0920 13:50:40.848801       1 controller.go:95] ingress event add for default/hello
I0920 13:50:40.848926       1 discovery.go:332] Cleared discovery service cache
W0920 13:50:41.529171       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:41.529547       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:46.114432       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:46.114515       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:46.402030       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:46.402282       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:47.791763       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:47.791843       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:48.187811       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:48.187931       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:48.932957       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:48.933039       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:49.351901       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:49.352126       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:50.806335       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:50.806393       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:50.912597       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:50.912683       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:52.793277       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:52.793357       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:53.384008       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:53.384184       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:53.851241       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:53.851411       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:53.973897       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:53.974069       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:54.830034       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:54.831181       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:55.861753       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:50:57.174630       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:57.174731       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:57.788397       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:57.789887       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:58.544749       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:58.544999       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:50:59.105746       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:50:59.105807       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:00.309338       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:00.309952       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:01.297344       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:01.297441       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:02.736797       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:02.736881       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:04.214697       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:04.214770       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:04.700968       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:04.701216       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:04.939628       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:04.939680       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:05.223911       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:05.223971       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:08.824342       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:08.824465       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:13.615750       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:13.616771       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:15.514468       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:15.514563       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:15.702003       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:15.702128       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:18.510466       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:18.510551       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:21.191391       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:21.191606       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:22.023144       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:22.024413       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:22.646015       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:22.646101       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:25.797074       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:51:27.350623       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:27.359361       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:27.428174       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:27.431775       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:27.890487       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:27.890604       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:29.094501       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:29.094713       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:30.350148       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:30.350260       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:30.639374       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:30.639483       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:33.546676       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"dns", Port:53, Protocol:"UDP"}
W0920 13:51:33.546799       1 config.go:469] Unsupported outbound protocol UDP for port &model.Port{Name:"statsd-udp", Port:9125, Protocol:"UDP"}
W0920 13:51:55.802985       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:52:25.804257       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:52:56.521706       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:53:25.809249       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:53:55.822743       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:54:25.822706       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:54:55.815106       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:55:25.821226       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:55:55.841541       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:56:25.980514       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:56:55.826910       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:57:25.838481       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:57:28.262124       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:57:55.838730       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:58:25.848521       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:58:56.062299       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:59:25.852874       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 13:59:55.925304       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:00:25.854325       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:00:55.857904       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:01:25.855524       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:01:56.140607       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:02:25.873490       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:02:55.876177       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:03:25.921350       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:03:55.875751       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:04:25.885801       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:04:55.882208       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:05:25.911671       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:05:55.901293       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:06:25.940070       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:06:55.915464       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:07:25.915956       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:07:55.926793       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:08:25.946906       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:08:55.997433       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:09:25.987441       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:09:55.985816       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:10:26.017929       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:10:56.056832       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:11:26.041479       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:11:56.004341       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:12:26.007901       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:12:56.004581       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:13:26.013366       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:13:56.006401       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:14:08.268751       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:14:26.044888       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:14:56.025955       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
W0920 14:15:26.010256       1 queue.go:90] requeuing sync status, err services "istio-ingress.istio-system" not found
rshriram commented 7 years ago

Oh shoot my bad for poor communication. I meant the dump of configs as I outlined earlier.. curl istio-pilot:8080/v1/routes/..

maruina commented 7 years ago

Oh sorry, I didn't get that :)

This is the pilot dump

$ curl 172.17.0.6:8080/v1/routes/80/istio-proxy/ingress~~istio-ingress-339413431-gp74h.istio-system~istio-system.svc.clustelocal
{
  "virtual_hosts": [
   {
    "name": "foo",
    "domains": [
     "foo"
    ],
    "routes": [
     {
      "prefix": "/",
      "cluster": "out.2f3be59e5b5075eeb4ad7bfff5d219cc161bab73",
      "opaque_config": {
       "mixer_check": "on",
       "mixer_forward": "on",
       "mixer_report": "on"
      }
     }
    ]
   },
   {
    "name": "hello",
    "domains": [
     "hello"
    ],
    "routes": [
     {
      "prefix": "/",
      "cluster": "out.df199c2d6dc328d5c04b4830380348eafe91b2d3",
      "opaque_config": {
       "mixer_check": "on",
       "mixer_forward": "on",
       "mixer_report": "on"
      }
     }
    ]
   },
   {
    "name": "testbedservicev1",
    "domains": [
     "testbedservicev1"
    ],
    "routes": [
     {
      "prefix": "/",
      "cluster": "out.b8bc1081ffa98146eff87bebab3b78157ab34320",
      "opaque_config": {
       "mixer_check": "on",
       "mixer_forward": "on",
       "mixer_report": "on"
      }
     }
    ]
   },
   {
    "name": "testbedservicev1-rest",
    "domains": [
     "testbedservicev1-rest"
    ],
    "routes": [
     {
      "prefix": "/",
      "cluster": "out.2f0621c950c88e84ea10f4538cb31f46e1902f4f",
      "opaque_config": {
       "mixer_check": "on",
       "mixer_forward": "on",
       "mixer_report": "on"
      }
     }
    ]
   }
  ]
 }
maruina commented 7 years ago

I tried to use a different gRPC service and I found this one https://github.com/linkerd/linkerd-examples/tree/master/docker/helloworld

I deployed the two services (hello and world) behind istio and used the client from outside the minikube cluster to make the call. It works

[2017-09-20T14:09:50.505Z] "POST /helloworld.Hello/Greeting HTTP/2" 200 - 5 48 44 37 "172.17.0.1" "grpc-go/1.0" "7956656b-b741-9373-83fc-064dab7362e4" "hello" "172.17.0.12:7777"

but only because there is a bug in the go grpc library and there is a missing port number in the authority field. See https://github.com/grpc/grpc-go/pull/1123/

bigpg commented 7 years ago

@rshriram what was the resolution to this bug? Has it been fixed in a new istio release?

rshriram commented 7 years ago

It seems this is caused by golang GRPC library and not by Istio/Envoy, as per @maruina

maruina commented 7 years ago

Have you updated the golang GRPC library in Istio?

rshriram commented 7 years ago

This is handled by Envoy (c++). Don’t understand the relationship to golang in istio

rshriram commented 7 years ago

nm.. I think I know the bug.. ingress woes continue. @louiscryan / @smawson

petr-k commented 6 years ago

Hello, any update on this? I am still hitting this issue with Istio 0.5.1.

ldemailly commented 6 years ago

can you elaborate on what you see exactly for 0.5.1 and grpc ingress?

it works for me as you can see using

fortio grpcping -grpc-secure fortio.istio.io:443

petr-k commented 6 years ago

The behavior I'm seeing is: when a service is called (through ingress) with an :authority including the port where gRPC service is listening, e.g. a.b.c:6262, ingress rules that are written against a.b.c hostname do not match.

In short, I'm encountering the same behavior as described in a comment above: https://github.com/istio/issues/issues/60#issuecomment-330906185 - but because the referenced bug in go grpc (https://github.com/grpc/grpc-go/pull/1123) has already been fixed, the Istio ingress rule does not work.

I have verified that when I explicitly override :authority in the gRPC Go client so that it does not include the port number (via the WithAuthority dial option), Istio hostname-based ingress rules do match.

The above leads me to believe that Istio needs to somehow strip the port number or ignore it when evaluating ingress rules.

ldemailly commented 6 years ago

Interesting, I know envoy makes all http (and thus grpc) routing based on Host: header (aka authority) so I am not surprised. I am curious though, why would your client use a different port in authority than the port it actually connects to ?

petr-k commented 6 years ago

I am not using a different port in authority than the port it actually connects to. What I mentioned about the WithAuthority override was just a way to work around the Istio ingress rule not matching - it does not change where the client connects to in any way, it merely changes the header.

Maybe I should describe how I came around this issue. Following the bookinfo tutorial, I used minikube, where the ingress address is determined via export GATEWAY_URL=$(kubectl get po -l istio=ingress -n istio-system -o 'jsonpath={.items[0].status.hostIP}'):$(kubectl get svc istio-ingress -n istio-system -o 'jsonpath={.spec.ports[0].nodePort}'). That means you can end up with an address such as 192.168.100.5:3145 or something similar. So I added an alias in my /etc/hosts so that I could call the service via ingress reaching an address such as grpc-service:3145. The very same grpc-service:3145 string is sent along as authority. Having the grpc-service hostname in my ingress rule, I uncovered that it probably does not match because of the port (I get 404s). So just to be sure, I verified this by overriding the authority header at the client side, but still calling the very same endpoint (including the port) - which makes the ingress host rule match and everything works. It was just a way to make sure that port is indeed the culprit.

While the setup is probably unusual (as you wouldn't probably include the port number in a real world setup, but go to 80 or 443 by default), I believe it does uncover that there might an issue.

Does that make sense? I'll be happy to clarify further.

ldemailly commented 6 years ago

so if you use an ingress on port 3145 I guess you need to put "port: 3145" in your virtual host routing ?

petr-k commented 6 years ago

Where exactly should I put that value? You can't have host: hostname:portnumber in an ingress rule spec and afaik there's no dedicated port property either.

ldemailly commented 6 years ago

I was thinking egress rules, my bad. It's true that current ingress spec is hardcoded for either http or https... I don't think an ingress getting traffic on non 80/443 port is really supported by k8s spec

I'm glad you found a workaround though, want to add a PR to https://istio.io/help/faq/traffic-management.html ?

petr-k commented 6 years ago

Well it's not really a workaround per se, because it requires changes to the gRPC client. There will be occasions where you just can't do that, especially when you don't control the client code.

I believe that port in authority header should be stripped (not considered) when evaluating ingress rules.

ldemailly commented 6 years ago

yes I think I agree if the binding port can't be set anywhere it would make sense (though you'd still have to know if it's 80 vs 443)

petr-k commented 6 years ago

Agreed. I guess that's the same logic as applied for standard HTTP/S - the port is implicit, right?

ldemailly commented 6 years ago

I don't know how would it know if it needs to be ssl or not / have 2 ports ...

louiscryan commented 6 years ago

Should some of these scenarios be retested with 0.8 ?

andraxylia commented 6 years ago

Issue moved to istio/istio #6573 via ZenHub