Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 542 for svc4 (0.03 sec)

  1. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
      tcp:
      - match:
        - port: 80
        route:
        - destination:
            host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            subset: external-svc-tcp
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    				"allow_any": {"*"},
    				"test.default.svc.cluster.local:80": {
    					"test.default.svc.cluster.local",
    					"test",
    					"test.default.svc",
    				},
    				"test.default:80": {"test.default"},
    			},
    			map[string]string{
    				"allow_any": "PassthroughCluster",
    				// From the service, go to the service
    				"test.default.svc.cluster.local:80": "outbound|80||test.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pkg/kubelet/network/dns/dns_test.go

    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "valid: 5 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			events:       []string{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		log.Warnf("%s failed creating ServiceExport %s/%s: %v", c.logPrefix(), svc.Namespace, svc.Name, err)
    		return err
    	}
    
    	log.Debugf("%s created ServiceExport %s/%s", c.logPrefix(), svc.Namespace, svc.Name)
    	return nil
    }
    
    func (c *autoServiceExportController) isClusterLocalService(svc *v1.Service) bool {
    	hostname := serviceRegistryKube.ServiceHostname(svc.Name, svc.Namespace, c.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/windows/service/service.go

    	h.fromsvc <- nil
    
    	s <- svc.Status{State: svc.Running, Accepts: svc.AcceptStop | svc.AcceptShutdown | svc.Accepted(windows.SERVICE_ACCEPT_PARAMCHANGE)}
    	klog.Infof("Service running")
    Loop:
    	for {
    		select {
    		case <-h.tosvc:
    			break Loop
    		case c := <-r:
    			switch c.Cmd {
    			case svc.Cmd(windows.SERVICE_CONTROL_PARAMCHANGE):
    				s <- c.CurrentStatus
    			case svc.Interrogate:
    				s <- c.CurrentStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

      namespace: foo
    spec:
      hosts:
      - sample.foo.svc.cluster.local
      http:
      - fault:
          delay:
            fixedDelay: 5s
            percentage:
              value: 100
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - mirror:
          host: sample.bar.svc.cluster.local
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    	svc, err := services.Services(namespace).Get(id)
    	if err != nil {
    		return nil, err
    	}
    
    	switch {
    	case svc.Spec.Type == v1.ServiceTypeClusterIP, svc.Spec.Type == v1.ServiceTypeLoadBalancer, svc.Spec.Type == v1.ServiceTypeNodePort:
    		// these are fine
    	default:
    		return nil, fmt.Errorf("unsupported service type %q", svc.Spec.Type)
    	}
    
    	svcPort, err := findServicePort(svc, port)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/mock/discovery_mock.go

    import (
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/host"
    )
    
    var (
    	// HelloService is a mock service with `hello.default.svc.cluster.local` as
    	// a hostname and `10.1.0.0` for ip
    	HelloService = MakeService(ServiceArgs{
    		Hostname:        "hello.default.svc.cluster.local",
    		Address:         "10.1.0.0",
    		ServiceAccounts: []string{},
    		ClusterID:       "cluster-1",
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip.go

    		},
    		Spec: networkingv1alpha1.IPAddressSpec{
    			ParentRef: serviceToRef(svc),
    		},
    	}
    }
    
    func serviceToRef(svc *v1.Service) *networkingv1alpha1.ParentReference {
    	if svc == nil {
    		return nil
    	}
    
    	return &networkingv1alpha1.ParentReference{
    		Group:     "",
    		Resource:  "services",
    		Namespace: svc.Namespace,
    		Name:      svc.Name,
    	}
    }
    
    func getFamilyByIP(ip net.IP) v1.IPFamily {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    cluster/inbound-vip|8000|http|httpbin.default.svc.cluster.local     httpbin.default.svc.cluster.local     8000     http       inbound-vip     EDS        
    cluster/prometheus_stats                                            cluster/prometheus_stats              -        -          -               STATIC     
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top