Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,088 for label23 (0.16 sec)

  1. releasenotes/notes/45413.yaml

    L1:apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 45413
    
    releaseNotes:
      - |
        **Fixed** VirtualMachine Workloadentry auto register failed with invalid `istio-locality` label when user specify `istio-locality` in ./etc/istio/pod/labels....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 10:19:36 UTC 2023
    - 268 bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint_test.go

    }
    
    func makeGatewayWithRevision(name, namespace string, programmed, isWaypoint bool, rev string) *gateway.Gateway {
    	gw := makeGateway(name, namespace, programmed, isWaypoint)
    	if gw.Labels == nil {
    		gw.Labels = make(map[string]string)
    	}
    	gw.Labels[label.IoIstioRev.Name] = rev
    	return gw
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/util.go

    	var services []*v1.Service
    	for _, service := range allServices {
    		if labels.Instance(service.Spec.Selector).Match(pod.Labels) {
    			services = append(services, service)
    		}
    	}
    
    	return services
    }
    
    func getNodeSelectorsForService(svc *v1.Service) labels.Instance {
    	if nodeSelector := svc.Annotations[annotation.TrafficNodeSelector.Name]; nodeSelector != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/internal/profile/merge.go

    	ids := make([]string, len(sample.Location))
    	for i, l := range sample.Location {
    		ids[i] = strconv.FormatUint(l.ID, 16)
    	}
    
    	labels := make([]string, 0, len(sample.Label))
    	for k, v := range sample.Label {
    		labels = append(labels, fmt.Sprintf("%q%q", k, v))
    	}
    	sort.Strings(labels)
    
    	numlabels := make([]string, 0, len(sample.NumLabel))
    	for k, v := range sample.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/OWNERS

    options:
      no_parent_owners: true
    filters:
      ".*":
        approvers:
          - api-approvers
        reviewers:
          - api-reviewers
      # only auto-label go file changes as kind/api-change
      "\\.go$":
        labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 21 16:18:09 UTC 2019
    - 331 bytes
    - Viewed (0)
  6. releasenotes/notes/44916.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Updated** `ProxyConfig` resources with workload selector will be applied to Kubernetes `Gateway` pods
      only if the specified label is `istio.io/gateway-name`. Other labels are ignored.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 18 17:31:09 UTC 2023
    - 379 bytes
    - Viewed (0)
  7. istioctl/pkg/tag/util.go

    func GetWebhookTagName(wh admitv1.MutatingWebhookConfiguration) string {
    	return wh.ObjectMeta.Labels[IstioTagLabel]
    }
    
    // GetWebhookRevision extracts tag target revision from webhook object.
    func GetWebhookRevision(wh admitv1.MutatingWebhookConfiguration) (string, error) {
    	if tagName, ok := wh.ObjectMeta.Labels[label.IoIstioRev.Name]; ok {
    		return tagName, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		Spec:   gatewaySpec,
    		Status: k8sbeta.GatewayStatus{},
    	}
    	labels := make(map[string]string, 2)
    	if trafficType != "" && validTrafficTypes.Contains(trafficType) {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = trafficType
    	} else {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = constants.ServiceTraffic
    	}
    	gateway.Labels = labels
    
    	if ready {
    		addrType := k8sbeta.IPAddressType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/10-proposal.yml

    name: Proposals
    description: New external API or other notable changes
    title: "proposal: import/path: proposal title"
    labels: ["Proposal"]
    body:
      - type: markdown
        attributes:
          value: "Our proposal process is documented here: https://go.dev/s/proposal-process"
      - type: textarea
        id: proposal-details
        attributes:
          label: "Proposal Details"
          description: "Please provide the details of your proposal here."
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 471 bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/common/deployment/echos.go

    				Subsets: []echo.SubsetConfig{{
    					Labels: map[string]string{label.SidecarInject.Name: "false"},
    				}},
    			}
    			defaultConfigs = append(defaultConfigs, waypointed)
    		}
    
    		captured := echo.Config{
    			Service:        CapturedSvc,
    			ServiceAccount: true,
    			Ports:          ports.All(),
    			Subsets: []echo.SubsetConfig{{
    				Labels: map[string]string{
    					label.SidecarInject.Name:     "false",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top