Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for index (0.04 sec)

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

    	ByAddress        *krt.Index[model.WorkloadInfo, networkAddress]
    	ByServiceKey     *krt.Index[model.WorkloadInfo, string]
    	ByOwningWaypoint *krt.Index[model.WorkloadInfo, networkAddress]
    }
    
    type waypointsCollection struct {
    	krt.Collection[Waypoint]
    }
    
    type servicesCollection struct {
    	krt.Collection[model.ServiceInfo]
    	ByAddress        *krt.Index[model.ServiceInfo, networkAddress]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	}
    	sort.Ints(priorities)
    	// 2.2 adjust LocalityLbEndpoints priority
    	// if the index and value of priorities array is not equal.
    	for i, priority := range priorities {
    		if i != priority {
    			// the LocalityLbEndpoints index in ClusterLoadAssignment.Endpoints
    			for _, index := range priorityMap[priority] {
    				loadAssignment.Endpoints[index].Priority = uint32(i)
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads_test.go

    			vsIndexes: []struct {
    				index int
    				hosts []string
    				dest  string
    			}{{index: 4}},
    			expectedUpdates: []string{v3.ClusterType},
    		},
    		{
    			desc: "Add delegation virtual service for scoped service with transitively scoped dest svc",
    			ev:   model.EventAdd,
    			delegatevsIndexes: []struct {
    				index int
    				hosts []string
    				dest  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{- end }}
        service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | trunc 63 | trimSuffix "-" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
      annotations: {
        istio.io/rev: {{ .Revision | default "default" | quote }},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/aggregate/controller.go

    		log.Warnf("Registry list is empty, nothing to delete")
    		return
    	}
    	index, ok := c.getRegistryIndex(clusterID, providerID)
    	if !ok {
    		log.Warnf("Registry %s/%s is not found in the registries list, nothing to delete", providerID, clusterID)
    		return
    	}
    	c.registries[index] = nil
    	c.registries = append(c.registries[:index], c.registries[index+1:]...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. operator/pkg/component/component.go

    type CommonComponentFields struct {
    	*Options
    	ComponentName name.ComponentName
    	// resourceName is the name of all resources for this component.
    	ResourceName string
    	// index is the index of the component (only used for components with multiple instances like gateways).
    	index int
    	// componentSpec for the actual component e.g. GatewaySpec, ComponentSpec.
    	componentSpec any
    	// started reports whether the component is in initialized and running.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conditions.go

    }
    
    func reportListenerAttachedRoutes(index int, obj config.Config, i int32) {
    	obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    		gs := s.(*k8s.GatewayStatus)
    		for index >= len(gs.Listeners) {
    			gs.Listeners = append(gs.Listeners, k8s.ListenerStatus{})
    		}
    		status := gs.Listeners[index]
    		status.AttachedRoutes = i
    		gs.Listeners[index] = status
    		return gs
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

              readOnly: true
            {{- end }}
              {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount` }}
              {{ range $index, $value := fromJSON (index .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount`) }}
            - name: "{{  $index }}"
              {{ toYaml $value | indent 4 }}
              {{ end }}
              {{- end }}
          volumes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            heritage: Tiller
            release: istio
            chart: gateways
    {{- end }}
            service.istio.io/canonical-name: {{ $gateway.name }}
            service.istio.io/canonical-revision: {{ index $gateway.labels "app.kubernetes.io/version" | default (index $gateway.labels "version") | default .Values.revision | default "latest" | quote }}
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top