Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 385 for It (0.04 sec)

  1. pilot/pkg/security/authz/matcher/template.go

    // https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/path/match/uri_template/v3/uri_template_match.proto
    // If path contains "{*}", it will be replaced with "*".
    // If path contains "{**}", it will be replaced with "**".
    // If the path already contained "*" or "**", they will be left as is.
    func sanitizePathTemplate(path string) string {
    	return replacer.Replace(path)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/webhook/webhook.go

    		for _, base := range getObjectLabels() {
    			base[label.IoIstioRev.Name] = rev
    			objectLabels = append(objectLabels, base)
    		}
    	}
    
    	// For each permutation, we check which webhooks it matches. It must match exactly 0 or 1!
    	for _, nl := range namespaceLabels {
    		for _, ol := range objectLabels {
    			matches := sets.New[string]()
    			for name, whs := range webhooks {
    				for _, wh := range whs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/stats_test.go

    // metrics when configured with the Telemetry API (with EnvoyFilters disabled).
    // This test focuses on stats filter and metadata exchange filter could work coherently with
    // proxy bootstrap config with Wasm runtime. To avoid flake, it does not verify correctness
    // of metrics, which should be covered by integration test in proxy repo.
    func TestStatsFilter(t *testing.T) {
    	expectedBuckets := DefaultBucketCount
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/kube/krt/informer.go

    	// ns, n := splitKeyFunc(string(k))
    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    	// This is depending on "unstable" implementation details, but we own both libraries and tests would catch any issues.
    	if got := i.inf.Get(string(k), ""); !controllers.IsNil(got) {
    		return &got
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/controllers/untaint/nodeuntainter.go

    		}
    		log.Debugf("pod %s on node %s ready!", p.Name, p.Spec.NodeName)
    		return p
    	}, krt.WithStop(stop))
    
    	// these are all the nodes that have a ready cni pod. if the cni pod is ready,
    	// it means we are ok scheduling pods to it.
    	readyCniNodes := krt.NewCollection(readyCniPods, func(ctx krt.HandlerContext, p v1.Pod) *v1.Node {
    		pnode := krt.FetchOne(ctx, nodes, krt.FilterKey(p.Spec.NodeName))
    		if pnode == nil {
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		// Whatever user has set (with --log_output_level) for 'cni-plugin', pass it down to the plugin. It will use this to determine
    		// what level to use for itself.
    		// This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way.
    		PluginLogLevel:        istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/values.yaml

      tag: latest
      # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      variant: ""
    
      # Image name to pull from. Image will be `Hub/Image:Tag-Variant`
      # If Image contains a "/", it will replace the entire `image` in the pod.
      image: ztunnel
    
      # Labels to apply to all top level resources
      labels: {}
      # Annotations to apply to all top level resources
      annotations: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/test/xds/fake.go

    	ConfigTemplateInput any
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Callback to modify the kube client before it is started
    	KubeClientModifier func(c kubelib.Client)
    
    	// Override the default kube client constructor
    	KubeClientBuilder func(objects ...runtime.Object) kubelib.Client
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	NamespaceNotInjected = diag.NewMessageType(diag.Info, "IST0102", "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection.")
    
    	// PodMissingProxy defines a diag.MessageType for message "PodMissingProxy".
    	// Description: A pod is missing the Istio proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. istioctl/pkg/waypoint/waypoint.go

    		ns := ctx.NamespaceOrDefault(ctx.Namespace())
    		if ctx.Namespace() == "" && !forApply {
    			ns = ""
    		}
    		// If a user sets the waypoint name to an empty string, set it to the default namespace waypoint name.
    		if waypointName == "" {
    			waypointName = constants.DefaultNamespaceWaypoint
    		} else if waypointName == "none" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top