Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 537 for svc5 (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    		out := make([]*model.Service, 0, 2)
    
    		c.RLock()
    		if svc := c.servicesMap[kube.ServiceHostname(name.Name, name.Namespace, c.opts.DomainSuffix)]; svc != nil {
    			out = append(out, svc)
    		}
    
    		if svc := c.servicesMap[serviceClusterSetLocalHostname(name)]; svc != nil {
    			out = append(out, svc)
    		}
    		c.RUnlock()
    
    		return out
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out2.yaml

        value:
          stringMatch:
            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statPrefix: tcp.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 582 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

      to:
      - group: ""
        kind: Service
        name: my-svc
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["simple.domain.example"]
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/service/portname.go

    	svc := r.Message.(*v1.ServiceSpec)
    	// Skip gateway managed services, which are not created by users
    	if v, ok := r.Metadata.Labels[constants.ManagedGatewayLabel]; ok &&
    		v == constants.ManagedGatewayControllerLabel ||
    		v == constants.ManagedGatewayMeshControllerLabel {
    		return
    	}
    	for i, port := range svc.Ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/api/service/warnings_test.go

    	service := func(clusterIPs []string) *api.Service {
    		svc := api.Service{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "svc-test",
    				Namespace: "ns",
    			},
    			Spec: api.ServiceSpec{
    				Type: api.ServiceTypeClusterIP,
    			},
    		}
    
    		if len(clusterIPs) > 0 {
    			svc.Spec.ClusterIP = clusterIPs[0]
    			svc.Spec.ClusterIPs = clusterIPs
    		}
    		return &svc
    	}
    
    	tests := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/context.go

    			}
    			foundUnusable = true
    			continue
    		}
    		svcKey := svc.Key()
    		for port := range ports {
    			instances := gc.ps.ServiceEndpointsByPort(svc, port, nil)
    			if len(instances) > 0 {
    				foundInternal.Insert(fmt.Sprintf("%s:%d", g, port))
    				foundInternalIP.InsertAll(svc.GetAddresses(&model.Proxy{Metadata: &model.NodeMetadata{ClusterID: gc.cluster}})...)
    				if svc.Attributes.ClusterExternalAddresses.Len() > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		case s := <-stateCh:
    			t.Log("Got state ", s)
    		case e := <-errorCh:
    			t.Error("Error in resolve", e)
    		case <-tm:
    			t.Error("Didn't resolve in time")
    		}
    	})
    
    	t.Run("gRPC-svc", func(t *testing.T) {
    		t.Run("gRPC-svc-tls", func(t *testing.T) {
    			// Replaces: insecure.NewCredentials
    			creds, err := xdscreds.NewServerCredentials(xdscreds.ServerOptions{FallbackCreds: insecure.NewCredentials()})
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection_test.go

    	return krt.NewManyCollection[SimpleService, SimpleEndpoint](services, func(ctx krt.HandlerContext, svc SimpleService) []SimpleEndpoint {
    		pods := krt.Fetch(ctx, pods, krt.FilterLabel(svc.Selector))
    		return slices.Map(pods, func(pod SimplePod) SimpleEndpoint {
    			return SimpleEndpoint{
    				Pod:       pod.Name,
    				Service:   svc.Name,
    				Namespace: svc.Namespace,
    				IP:        pod.IP,
    			}
    		})
    	})
    }
    
    func init() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion.go

    		Addresses: svc.GetAddresses(proxy),
    
    		// This is based on alpha.istio.io/canonical-serviceaccounts and
    		//  alpha.istio.io/kubernetes-serviceaccounts.
    		SubjectAltNames: svc.ServiceAccounts,
    	}
    
    	if len(svc.Attributes.LabelSelectors) > 0 {
    		se.WorkloadSelector = &networking.WorkloadSelector{Labels: svc.Attributes.LabelSelectors}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-filter.yaml

      rules:
        - filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                add:
                  - name: my-header
                    value: foo
          backendRefs:
            - name: my-filter-svc1
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 442 bytes
    - Viewed (0)
Back to top