Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 269 for It (0.08 sec)

  1. pilot/pkg/networking/grpcgen/lds.go

    //
    // See: xds/internal/httpfilter/rbac
    //
    // TODO: gRPC also supports 'per route override' - not yet clear how to use it, Istio uses path expressions instead and we don't generate
    // vhosts or routes for the inbound listener.
    //
    // For gateways it would make a lot of sense to use this concept, same for moving path prefix at top level ( more scalable, easier for users)
    // This should probably be done for the v2 API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds.go

    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    // the hostname-keyed map. And it avoids the conversion from Endpoint to ServiceEntry to envoy
    // on each step: instead the conversion happens once, when an endpoint is first discovered.
    //
    // Note: the difference with `EDSUpdate` is that it only update the cache rather than requesting a push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/kube/util.go

    // BuildClientConfig builds a client rest config from a kubeconfig filepath and context.
    // It overrides the current context with the one provided (empty to use default).
    //
    // This is a modified version of k8s.io/client-go/tools/clientcmd/BuildConfigFromFlags with the
    // difference that it loads default configs if not running in-cluster.
    func BuildClientConfig(kubeconfig, context string) (*rest.Config, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. cni/pkg/repair/repaircontroller.go

    	log := repairLog.WithLabels("pod", pod.Namespace+"/"+pod.Name)
    	key := types.NamespacedName{Name: pod.Name, Namespace: pod.Namespace}
    	// We will get an event every time the pod changes. The repair is not instantaneous, though -- it will only recover
    	// once the pod restarts (in CrashLoopBackoff), which can take some time.
    	// We don't want to constantly try to apply the iptables rules, which is unneeded and will fail.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1/generated.proto

      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
      // determine which labels it should retrieve from the node object and pass
      // back to the driver.
      // It is possible for different nodes to use different topology keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    				continue
    			}
    		}
    
    		cachedItem := s.cache.Get(sr)
    		if cachedItem != nil && !features.EnableUnsafeAssertions {
    			// If it is in the Cache, add it and continue
    			// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    			results = append(results, cachedItem)
    			cached++
    			continue
    		}
    		regenerated++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    // Debouncing and push request happens in a separate thread, it uses locks
    // and we want to avoid complications, ConfigUpdate may already hold other locks.
    // handleUpdates processes events from pushChannel
    // It ensures that at minimum minQuiet time has elapsed since the last event before processing it.
    // It also ensures that at most maxDelay is elapsed between receiving an event and processing it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    			return !removedVirtualHosts.Contains(virtualHost.Name)
    		})
    	}
    }
    
    // patchVirtualHost patches passed in virtual host if it is MERGE operation.
    // The return value indicates whether the virtual host has been removed for REMOVE operations.
    func patchVirtualHost(patchContext networking.EnvoyFilter_PatchContext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	} else {
    		// gracefully fallback to MeshConfig configuration. It will act as an implicit
    		// parent configuration during transition period.
    		sampling = proxyConfigSamplingValue(proxyCfg)
    	}
    
    	configureSampling(h.Tracing, sampling)
    	configureCustomTags(h.Tracing, spec.CustomTags, proxyCfg, proxy)
    
    	// if there is configured max tag length somewhere, fallback to it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    ) krt.TransformationSingle[*v1.Pod, model.WorkloadInfo] {
    	return func(ctx krt.HandlerContext, p *v1.Pod) *model.WorkloadInfo {
    		// Pod Is Pending but have a pod IP should be a valid workload, we should build it ,
    		// Such as the pod have initContainer which is initialing.
    		// See https://github.com/istio/istio/issues/48854
    		if (!IsPodRunning(p) && !IsPodPending(p)) || p.Spec.HostNetwork {
    			return nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top