Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 113 for serviceOf (0.29 sec)

  1. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SERVICES -m comment --comment ns1/svc1 svc1 line 2
    				-A KUBE-SERVICES -m comment --comment "ns1/svc1 blah" svc1 line 3
    				-A KUBE-SERVICES -m comment --comment ns4/svc4 svc4 line 1
    				-A KUBE-SERVICES -m comment --comment "ns4/svc4:p80 cluster IP" svc4 line 2
    				-A KUBE-SERVICES -m comment --comment "ns4/svc4 blah" svc4 line 3
    				-A KUBE-SERVICES -m comment --comment "ns3/svc3:p80 cluster IP" svc3 line 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    			return
    		}
    
    	case authTypePresigned, authTypeSigned:
    		if s3Err = reqSignatureV4Verify(r, globalSite.Region(), serviceS3); s3Err != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    			return
    		}
    		if !skipContentSha256Cksum(r) {
    			sha256hex = getContentSha256Cksum(r, serviceS3)
    		}
    	}
    
    	if _, ok := r.Header[xhttp.MinIOSourceReplicationCheck]; ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/model/sidecar.go

    		if ilw.matchPort {
    			return serviceMatchingListenerPort(service, ilw)
    		}
    		return service
    	}
    	return nil
    }
    
    // matchingAliasService the original service or a trimmed service which has a subset of aliases, based on imports from sidecar
    func matchingAliasService(importedHosts hostClassification, service *Service) *Service {
    	if service == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    }
    
    // servicesForNamespacedName returns all services for the given service name.
    // If Kubernetes Multi-Cluster Services (MCS) is enabled, this will contain the regular
    // service as well as the MCS service (clusterset.local), if available. Otherwise,
    // only the regular service will be returned.
    func (c *Controller) servicesForNamespacedName(name types.NamespacedName) []*model.Service {
    	if features.EnableMCSHost {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    	// Port is the listener port for outbound sidecar (e.g. service port)
    	Port int
    
    	// Services are the Services from the registry. Each service
    	// in this list should have a virtual host entry
    	Services []*model.Service
    
    	// VirtualServiceHosts is a list of hosts defined in the virtual service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// as the clusterIP.
    	// "ExternalName" aliases this service to the specified externalName.
    	// Several other fields do not apply to ExternalName services.
    	// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
    	// +optional
    	Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// to the clusterIP.
    	// More info: https://kubernetes.io/docs/concepts/services-networking/service/
    	// +optional
    	Type ServiceType
    
    	// Required: The list of ports that are exposed by this service.
    	Ports []ServicePort
    
    	// Route service traffic to pods with label keys and values matching this
    	// selector. If empty or not present, the service is assumed to have an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top