Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 924 for SVC (0.02 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/model/sidecar_test.go

    			},
    		},
    		{
    			Hostname: "baz.svc.cluster.local",
    			Ports:    port7443,
    			Attributes: ServiceAttributes{
    				Name:      "baz",
    				Namespace: "ns3",
    			},
    		},
    		{
    			Hostname: "bar.svc.cluster.local",
    			Ports:    port7442,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "ns2",
    			},
    		},
    		{
    			Hostname: "barprime.svc.cluster.local",
    			Ports:    port7442,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    		},
    		{
    			name: "no changes needed dual stack",
    			svcs: []*v1.Service{newService("test-svc", []string{"10.0.1.1", "2001:db8::10"})},
    			ipAddresses: []*networkingv1alpha1.IPAddress{
    				newIPAddress("10.0.1.1", newService("test-svc", []string{"10.0.1.1"})),
    				newIPAddress("2001:db8::10", newService("test-svc", []string{"2001:db8::10"})),
    			},
    			cidrs: []*networkingv1alpha1.ServiceCIDR{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/tls_config.json

                          "operation": "productpage.default.svc.cluster.local:9080/productpage"
                        }
                      },
                      {
                        "match": {
                          "prefix": "/static",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    				Hostname:       svc.Hostname,
    				DefaultAddress: svc.GetAddressForProxy(node),
    				MeshExternal:   svc.MeshExternal,
    				Resolution:     svc.Resolution,
    				Ports:          []*model.Port{svcPort},
    				Attributes: model.ServiceAttributes{
    					Namespace:       svc.Attributes.Namespace,
    					ServiceRegistry: svc.Attributes.ServiceRegistry,
    					Labels:          svc.Attributes.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/compare/testdata/configdump.json

                "name": "inbound-vip|9080|http|ratings.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|9080|http|ratings.default.svc.cluster.local"
                },
                "transport_socket": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top