Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for index (0.04 sec)

  1. 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)
  2. 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)
  3. pkg/test/loadbalancersim/timer/queue.go

    }
    
    func (h timerHeap) Swap(i, j int) {
    	h[i], h[j] = h[j], h[i]
    	h[i].index = i
    	h[j].index = j
    }
    
    func (h *timerHeap) Push(x any) {
    	e := x.(*entry)
    	*h = append(*h, e)
    	e.index = len(*h) - 1
    }
    
    func (h *timerHeap) Pop() any {
    	n := h.Len()
    	e := (*h)[n-1]
    	*h = (*h)[:n-1]
    	e.index = -1
    	return e
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		}
    
    		if line, ok := util.ErrorLine(r, fmt.Sprintf(util.EnvoyFilterConfigPath, index)); ok {
    			message.Line = line
    		}
    		c.Report(gvk.EnvoyFilter, message)
    
    	}
    }
    
    func (*EnvoyPatchAnalyzer) analyzeEnvoyFilterPatch(r *resource.Instance, c analysis.Context, patchFilterNames []string) []string {
    	ef := r.Message.(*network.EnvoyFilter)
    	for index, patch := range ef.ConfigPatches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    func (a *index) generatePodUID(p *v1.Pod) string {
    	return a.ClusterID.String() + "//" + "Pod/" + p.Namespace + "/" + p.Name
    }
    
    // name format: <cluster>/<group>/<kind>/<namespace>/<name></section-name>
    // if the WorkloadEntry is inlined in the ServiceEntry, we may need section name. caller should use generateServiceEntryUID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    	// Required parameters: route rule, route rule index, route index.
    	DestinationHost = "{.spec.%s[%d].route[%d].destination.host}"
    
    	// Path for mirror host in VirtualService.
    	// Required parameters: http index.
    	MirrorHost = "{.spec.http[%d].mirror.host}"
    
    	// Path for mirrors host in VirtualService.
    	// Required parameters: http index, mirror index.
    	MirrorsHost = "{.spec.http[%d].mirrors[%d].host}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K 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. pkg/kube/inject/testdata/inputs/status_params.yaml.8.template.gen.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: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top