Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for lease (0.04 sec)

  1. pkg/kubelet/kubelet.go

    	ImageGCPeriod = 5 * time.Minute
    
    	// Minimum number of dead containers to keep in a pod
    	minDeadContainerInPod = 1
    
    	// nodeLeaseRenewIntervalFraction is the fraction of lease duration to renew the lease
    	nodeLeaseRenewIntervalFraction = 0.25
    
    	// instrumentationScope is the name of OpenTelemetry instrumentation scope
    	instrumentationScope = "k8s.io/kubernetes/pkg/kubelet"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			return v1.PodSucceeded
    		}
    		if spec.RestartPolicy == v1.RestartPolicyNever {
    			// RestartPolicy is Never, and all containers are
    			// terminated with at least one in failure
    			return v1.PodFailed
    		}
    		// RestartPolicy is OnFailure, and at least one in failure
    		// and in the process of restarting
    		return v1.PodRunning
    	default:
    		klog.V(5).InfoS("Pod default case, pending")
    		return v1.PodPending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/accesslog_test.go

    								// Ignore the tcp_proxy filter with black hole cluster that just doesn't have access log.
    								continue
    							}
    							if len(tcpConfig.AccessLog) < 1 {
    								t.Fatalf("tcp_proxy want at least 1 access log, got 0")
    							}
    
    							for _, tcpAccessLog := range tcpConfig.AccessLog {
    								if tcpAccessLog.Filter != nil {
    									t.Fatalf("tcp_proxy filter chain's accesslog filter must be empty")
    								}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    		// Check if new Endpoints are ready to be pushed. This check
    		// will ensure that if a new pod comes with a non ready endpoint,
    		// we do not unnecessarily push that config to Envoy.
    		// Please note that address is not a unique key. So this may not accurately
    		// identify based on health status and push too many times - which is ok since its an optimization.
    		omap := make(map[string]*IstioEndpoint, len(oldIstioEndpoints))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		return
    	}
    
    	// check if client is attempting to create more buckets, complain about it.
    	if currBuckets := globalBucketMetadataSys.Count(); currBuckets+1 > maxBuckets {
    		internalLogIf(ctx, fmt.Errorf("Please avoid creating more buckets %d beyond recommended %d", currBuckets+1, maxBuckets), logger.WarningKind)
    	}
    
    	opts := MakeBucketOptions{
    		LockEnabled: objectLockEnabled,
    		ForceCreate: forceCreate,
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    	skipAll          bool
    }
    
    // Some notes on setting up tests for Analyzers:
    // * The resources in the input files don't necessarily need to be completely defined, just defined enough for the analyzer being tested.
    // * Please keep this list sorted alphabetically by the pkg.name of the analyzer for convenience
    // * Expected messages are in the format {msg.ValidationMessageType, "<ResourceKind>/<Namespace>/<ResourceName>"}.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				KillPod:           true,
    				ContainersToStart: []int{},
    				ContainersToKill:  map[kubecontainer.ContainerID]containerToKillInfo{},
    			},
    		},
    		"Ephemeral container is in unknown state; leave it alone": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyNever },
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * ⬆️ Upgrade and re-enable installing Typer-CLI. PR [#6008](https://github.com/tiangolo/fastapi/pull/6008) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.92.0
    
    🚨 This is a security fix. Please upgrade as soon as possible.
    
    ### Upgrades
    
    * ⬆️ Upgrade Starlette to 0.25.0. PR [#5996](https://github.com/tiangolo/fastapi/pull/5996) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top