Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for index (0.32 sec)

  1. pkg/test/framework/components/environment/kube/flags.go

    		}
    		out[cluster] = parts[1]
    	}
    	return out, nil
    }
    
    func parseClusterIndex(index string) (clusterIndex, error) {
    	ci, err := strconv.Atoi(index)
    	if err != nil || ci < 0 {
    		return 0, fmt.Errorf("failed parsing cluster index: %s", index)
    	}
    	return clusterIndex(ci), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/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)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	return Workloads
    }
    
    func (a *index) workloadEntryWorkloadBuilder(
    	MeshConfig krt.Singleton[MeshConfig],
    	AuthorizationPolicies krt.Collection[model.WorkloadAuthorization],
    	PeerAuths krt.Collection[*securityclient.PeerAuthentication],
    	Waypoints krt.Collection[Waypoint],
    	WorkloadServices krt.Collection[model.ServiceInfo],
    	WorkloadServicesNamespaceIndex *krt.Index[model.ServiceInfo, string],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.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.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.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)
  6. pilot/pkg/networking/core/httproute.go

    func extractListenerPort(routeName string) (int, bool, error) {
    	hasPrefix := strings.HasPrefix(routeName, model.UnixAddressPrefix)
    	index := strings.IndexRune(routeName, ':')
    	if !hasPrefix {
    		routeName = routeName[index+1:]
    	}
    
    	listenerPort, err := strconv.Atoi(routeName)
    	useSniffing := !hasPrefix && index != -1
    	return listenerPort, useSniffing, err
    }
    
    // TODO: merge with IstioEgressListenerWrapper.selectVirtualServices
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
            {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
            {{- if $network }}
            - name: ISTIO_META_NETWORK
              value: "{{ $network }}"
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/typed_xds_cache_test.go

    		},
    	}
    
    	// after adding an index with a different key, first key is evicted, idexes should contain only secondEntry
    	c.Add(secondEntry.Key(), secondEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    
    	// Flush the cache and validate the index is cleaned.
    	cache.Flush()
    	assert.Equal(t, cache.indexLength(), 2)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.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.4K bytes
    - Viewed (0)
  10. tests/integration/security/file_mounted_certs/main_test.go

    	return nil
    }
    
    func createCustomInstances(apps *deployment.SingleNamespaceView) error {
    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "client":
    			client = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server":
    			server = apps.EchoNamespace.All[index]
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top