Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for labelSelector (0.66 sec)

  1. pkg/kube/krt/core.go

    type Equaler[K any] interface {
    	Equals(k K) bool
    }
    
    // LabelSelectorer is an optional interface that can be implemented by collection types.
    // If implemented, this will be used to determine an objects' LabelSelectors
    type LabelSelectorer interface {
    	GetLabelSelector() map[string]string
    }
    
    // Labeler is an optional interface that can be implemented by collection types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion.go

    		Attributes: model.ServiceAttributes{
    			ServiceRegistry: provider.Kubernetes,
    			Name:            svc.Name,
    			Namespace:       svc.Namespace,
    			Labels:          svc.Labels,
    			ExportTo:        exportTo,
    			LabelSelectors:  svc.Spec.Selector,
    		},
    	}
    
    	switch svc.Spec.Type {
    	case corev1.ServiceTypeNodePort:
    		if _, ok := svc.Annotations[annotation.TrafficNodeSelector.Name]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top