Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for service2 (0.29 sec)

  1. pilot/pkg/networking/core/listener_test.go

    		cases := []struct {
    			name     string
    			p        *model.Proxy
    			cfg      []config.Config
    			services []*model.Service
    		}{
    			{
    				name:     "simple",
    				p:        p,
    				services: []*model.Service{svc},
    			},
    			{
    				name:     "sidecar with service",
    				p:        p,
    				services: []*model.Service{svc},
    				cfg:      []config.Config{sidecarConfig},
    			},
    			{
    				name:     "sidecar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    }
    
    type Address_Service struct {
    	// Service represents a service - a group of workloads that can be accessed together.
    	Service *Service `protobuf:"bytes,2,opt,name=service,proto3,oneof"`
    }
    
    func (*Address_Workload) isAddress_Type() {}
    
    func (*Address_Service) isAddress_Type() {}
    
    // Service represents a service - a group of workloads that can be accessed together.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    			},
    			expectErrsOnFields: []string{},
    		},
    		// invalid use cases
    		"backend with no service": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.DefaultBackend.Service.Name = ""
    			},
    			expectErrsOnFields: []string{
    				"spec.defaultBackend.service.name",
    			},
    		},
    		"invalid path type": {
    			tweakIngress: func(ing *networking.Ingress) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

      name: metallb-system:controller
    rules:
    - apiGroups:
      - ""
      resources:
      - services
      - namespaces
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - ""
      resources:
      - nodes
      verbs:
      - list
    - apiGroups:
      - ""
      resources:
      - services/status
      verbs:
      - update
    - apiGroups:
      - ""
      resources:
      - events
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * Federation service controller is one key component of federation controller manager, it watches federation service, creates/updates services to all registered clusters, and update DNS records to global DNS server. ([#26034](https://github.com/kubernetes/kubernetes/pull/26034), [@mfanjie](https://github.com/mfanjie))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

          --kubelet-client-key="${CERT_DIR}/client-kube-apiserver.key" \
          --service-account-key-file="${SERVICE_ACCOUNT_KEY}" \
          --service-account-lookup="${SERVICE_ACCOUNT_LOOKUP}" \
          --service-account-issuer="https://kubernetes.default.svc" \
          --service-account-jwks-uri="https://kubernetes.default.svc/openid/v1/jwks" \
          --service-account-signing-key-file="${SERVICE_ACCOUNT_KEY}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.assertEvent(t, s.podXdsName("pod3"))
    	s.clearEvents()
    
    	// Now add a service that will select pods with label "a".
    	s.addService(t, "svc1",
    		map[string]string{},
    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertEvent(t, s.podXdsName("pod1"), s.podXdsName("pod2"), s.svcXdsName("svc1"))
    
    	// Services should appear with workloads when we get all resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    						"Destination":  dst.Config().Service,
    						"Source":       src.Config().Service,
    						"Namespace":    apps.Namespace.Name(),
    						"WaypointName": dst.Config().ServiceWaypointProxy,
    					}, `
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-waypoint
    spec:
      targetRefs:
      # affects Waypoints
      - kind: Service
        group: core
        name: "{{ .Destination }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    	var ik config.GroupVersionKind
    	var ns string
    	// Currently supported types are Gateway, Service, and ServiceEntry
    	if kind == gvk.KubernetesGateway.Kind && group == gvk.KubernetesGateway.Group {
    		ik = gvk.KubernetesGateway
    	} else if kind == gvk.Service.Kind && group == gvk.Service.Group {
    		ik = gvk.Service
    	} else if kind == gvk.ServiceEntry.Kind && group == gvk.ServiceEntry.Group {
    		ik = gvk.ServiceEntry
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    			t.Fatalf("Unexpected virtualService, got %s, expected %s", config.Name, expectedVS[i])
    		}
    	}
    }
    
    func buildHTTPService(hostname string, v visibility.Instance, ip, namespace string, ports ...int) *Service {
    	service := &Service{
    		CreationTime:   time.Now(),
    		Hostname:       host.Name(hostname),
    		DefaultAddress: ip,
    		Resolution:     DNSLB,
    		Attributes: ServiceAttributes{
    			ServiceRegistry: provider.Kubernetes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top