Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 184 for Present (0.1 sec)

  1. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // An eviction is allowed if at least "minAvailable" pods selected by
      // "selector" will still be available after the eviction, i.e. even in the
      // absence of the evicted pod.  So for example you can prevent all voluntary
      // evictions by specifying "100%".
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString minAvailable = 1;
    
      // Label query over pods whose evictions are managed by the disruption
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/README.md

    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    	//       beware of naming collisions
    	workloadInstances workloadinstances.Index
    	services          serviceStore
    
    	// To make sure the eds update run in serial to prevent stale ones can override new ones
    	// when edsUpdate is called concurrently.
    	// If all share one lock, then all the threads can have an obvious performance downgrade.
    	edsQueue queue.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    		iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.NAT,
    		"-d", iptablesconstants.IPVersionSpecific,
    		"-p", "tcp",
    		"-m", "tcp",
    		"-j", "ACCEPT",
    	)
    
    	// prevent intercept traffic from app ==> app by pod ip
    	iptablesBuilder.AppendVersionedRule("127.0.0.1/32", "::1/128",
    		iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/authentication.go

    	MTLSPermissive
    
    	// MTLSStrict if authentication policy enable mTLS in strict mode.
    	MTLSStrict
    )
    
    // In Ambient, we convert k8s PeerAuthentication resources to the same type as AuthorizationPolicies
    // To prevent conflicts in xDS, we add this prefix to the converted PeerAuthentication resources.
    const convertedPeerAuthenticationPrefix = "converted_peer_authentication_" // use '_' character since those are illegal in k8s names
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/namespace/kube.go

    	return n.removeNamespaceLabel(key)
    }
    
    func (n *kubeNamespace) ID() resource.ID {
    	return n.id
    }
    
    func (n *kubeNamespace) Close() error {
    	// Get the cleanup funcs and clear the array to prevent us from cleaning up multiple times.
    	n.cleanupMutex.Lock()
    	cleanupFuncs := n.cleanupFuncs
    	n.cleanupFuncs = nil
    	n.cleanupMutex.Unlock()
    
    	// Perform the cleanup across all clusters concurrently.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/xds/server.go

    	}
    }
    
    func Receive(ctx ConnectionContext) {
    	con := ctx.XdsConnection()
    	defer func() {
    		close(con.errorChan)
    		close(con.reqChan)
    		// Close the initialized channel, if its not already closed, to prevent blocking the stream.
    		select {
    		case <-con.initialized:
    		default:
    			close(con.initialized)
    		}
    	}()
    
    	firstRequest := true
    	for {
    		req, err := con.stream.Recv()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	shard ShardKey,
    	hostname string,
    	namespace string,
    	istioEndpoints []*IstioEndpoint,
    ) PushType {
    	if len(istioEndpoints) == 0 {
    		// Should delete the service EndpointShards when endpoints become zero to prevent memory leak,
    		// but we should not delete the keys from EndpointIndex map - that will trigger
    		// unnecessary full push which can become a real problem if a pod is in crashloop and thus endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice.go

    					log.Warnf("delegate virtual service %s/%s of %s/%s is not exported to %s",
    						delegateNamespace, delegate.Name, root.Namespace, root.Name, root.Namespace)
    					continue
    				}
    				// DeepCopy to prevent mutate the original delegate, it can conflict
    				// when multiple routes delegate to one single VS.
    				copiedDelegate := config.DeepCopy(delegateVS.Spec)
    				vs := copiedDelegate.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    	tracker.WaitOrdered("delete/3")
    	assert.Equal(t, tester.Get(obj3.Name, obj3.Namespace), nil)
    }
    
    func TestErrorHandler(t *testing.T) {
    	mt := monitortest.New(t)
    	c := kube.NewFakeClient()
    	// Prevent List from succeeding
    	c.Kube().(*fake.Clientset).Fake.PrependReactor("*", "*", func(action k8stesting.Action) (bool, runtime.Object, error) {
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top