Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for wle (0.02 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    		return
    	}
    
    	// Deploy the workload entry to the primary cluster. We will read WorkloadEntry across clusters.
    	wle := d.workloadEntryYAML(w)
    	if err := d.ctx.ConfigKube(d.cfg.Cluster.Primary()).
    		YAML(d.cfg.Namespace.Name(), wle).
    		Apply(apply.NoCleanup); err != nil {
    		log.Warnf("failed deploying echo WLE for %s/%s to primary cluster: %v",
    			d.cfg.Namespace.Name(),
    			d.cfg.Service,
    			err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/job.yaml.injected

            service.istio.io/canonical-name: pi
            service.istio.io/canonical-revision: latest
          name: pi
        spec:
          containers:
          - command:
            - perl
            - -Mbignum=bpi
            - -wle
            - print bpi(2000)
            image: perl
            name: pi
            resources: {}
          - args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/store.go

    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type hostPort struct {
    	host instancesKey
    	port int
    }
    
    // stores all the service instances from SE, WLE and pods
    type serviceInstancesStore struct {
    	ip2instance map[string][]*model.ServiceInstance
    	// service instances by hostname -> config
    	instances map[instancesKey]map[configKeyWithParent][]*model.ServiceInstance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store_test.go

    		makeInstance(dnsSelector, "1.1.1.1", 444, dnsSelector.Spec.(*networking.ServiceEntry).Ports[0], nil, PlainText),
    	}
    	cKey := configKey{
    		namespace: "default",
    		name:      "test-wle",
    	}
    	cpKey := configKeyWithParent{configKey: cKey, parent: config.NamespacedName(selector)}
    	store.addInstances(cpKey, instances)
    
    	// 1. test getByIP
    	gotInstances := store.getByIP("1.1.1.1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		store, _, fx := setupTest(t)
    		se := serviceEntry.Spec.(*networking.ServiceEntry).DeepCopy()
    		se.Ports[0].TargetPort = 8081 // respect wle port firstly, does not care about this value at all.
    
    		makeIstioObject(t, store, config.Config{
    			Meta: config.Meta{
    				Name:             "workload",
    				Namespace:        namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    			}
    			if con.Status != expected {
    				return fmt.Errorf("expected status %q got %q", expected, con.Status)
    			}
    			return nil
    		}, retry.Timeout(time.Second*2))
    	}
    
    	// send cds before healthcheck, to make wle registered
    	coreNode := &core.Node{
    		Id:       "sidecar~1.1.1.1~debug~cluster.local",
    		Metadata: node.ToStruct(),
    	}
    	err := downstream.Send(&discovery.DiscoveryRequest{TypeUrl: v3.ClusterType, Node: coreNode})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CMOV(QEQ|QLE|QLT|QHI|QCC|LEQ|LLE|LLT|LHI|LCC|WEQ|WLE|WLT|WHI|WCC) y _ (FlagGT_ULT)) => y
    (CMOV(QNE|QLT|QLE|QCS|QLS|LNE|LLT|LLE|LCS|LLS|WNE|WLT|WLE|WCS|WLS) _ x (FlagLT_ULT)) => x
    (CMOV(QEQ|QGT|QGE|QHI|QCC|LEQ|LGT|LGE|LHI|LCC|WEQ|WGT|WGE|WHI|WCC) y _ (FlagLT_ULT)) => y
    (CMOV(QNE|QLT|QLE|QHI|QCC|LNE|LLT|LLE|LHI|LCC|WNE|WLT|WLE|WHI|WCC) _ x (FlagLT_UGT)) => x
    (CMOV(QEQ|QGT|QGE|QCS|QLS|LEQ|LGT|LGE|LCS|LLS|WEQ|WGT|WGE|WCS|WLS) y _ (FlagLT_UGT)) => y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top