Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 924 for SVC (0.02 sec)

  1. tests/testdata/networking/sidecar-ns-scope/configs.yaml

            subset: v1
          weight: 70
        - destination:
            host: http1.ns1.svc.cluster.local
            subset: v2
          weight: 30
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http1
      namespace: ns2
    spec:
      hosts:
      - http1.ns2.svc.cluster.local
      addresses:
      - 3.1.1.1
      ports:
      - number: 8080
        name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml

        name: echo
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: allowed-my-svc
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: my-svc
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 34000
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. samples/multicluster/expose-istiod-rev.yaml.tmpl

          - "istiod-{{.Revision}}.istio-system.svc"
          - "istiod-{{.Revision}}.istio-system.svc.cluster.local"
        route:
        - destination:
            host: istiod-{{.Revision}}.istio-system.svc.cluster.local
            port:
              number: 15012
      - match:
        - port: 15017
          sniHosts:
          - "istiod-{{.Revision}}.istio-system.svc"
          - "istiod-{{.Revision}}.istio-system.svc.cluster.local"
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/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)
  5. pkg/api/service/testing/make.go

    	for _, tweak := range tweaks {
    		tweak(svc)
    	}
    
    	return svc
    }
    
    // SetTypeClusterIP sets the service type to ClusterIP and clears other fields.
    func SetTypeClusterIP(svc *api.Service) {
    	svc.Spec.Type = api.ServiceTypeClusterIP
    	for i := range svc.Spec.Ports {
    		svc.Spec.Ports[i].NodePort = 0
    	}
    	svc.Spec.ExternalName = ""
    	svc.Spec.ExternalTrafficPolicy = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    	}
    
    	// Wait for the resources to be processed by the controller.
    	retry.UntilSuccessOrFail(t, func() error {
    		if svc := ic.GetService(ic.clusterLocalHost()); svc != nil {
    			return fmt.Errorf("found deleted service for host %s", ic.clusterLocalHost())
    		}
    		if svc := ic.GetService(serviceImportClusterSetHost); svc != nil {
    			return fmt.Errorf("found deleted service for host %s", serviceImportClusterSetHost)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "outbound|9080||reviews.default.svc.cluster.local",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
                                        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/memory/discovery.go

    func (sd *ServiceDiscovery) AddService(svc *model.Service) {
    	sd.mutex.Lock()
    	svc.Attributes.ServiceRegistry = provider.Mock
    	var old *model.Service
    	event := model.EventAdd
    	if o, f := sd.services[svc.Hostname]; f {
    		old = o
    		event = model.EventUpdate
    	}
    	sd.services[svc.Hostname] = svc
    
    	if sd.XdsUpdater != nil {
    		sd.XdsUpdater.SvcUpdate(sd.shardKey(), string(svc.Hostname), svc.Attributes.Namespace, model.EventAdd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

      hosts:
      - '*'
      http:
      - name: default.bind-all.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 85
      - name: istio-system.same-namespace-valid.0
        route:
        - destination:
            host: httpbin.istio-system.svc.domain.suffix
            port:
              number: 81
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. pkg/api/v1/service/util_test.go

    		annotations[v1.AnnotationLoadBalancerSourceRangesKey] = v
    		svc := v1.Service{}
    		svc.Annotations = annotations
    		_, err := GetLoadBalancerSourceRanges(&svc)
    		if err == nil {
    			t.Errorf("Expected error parsing: %q", v)
    		}
    		svc = v1.Service{}
    		svc.Spec.LoadBalancerSourceRanges = strings.Split(v, ",")
    		_, err = GetLoadBalancerSourceRanges(&svc)
    		if err == nil {
    			t.Errorf("Expected error parsing: %q", v)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 15:18:45 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top