Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lives (0.04 sec)

  1. pkg/volume/plugins.go

    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    //     Default is "pv-recycler-".
    //  3. pod.Spec.ActiveDeadlineSeconds gives the recycler pod a maximum timeout
    //     before failing.  Recommended.  Default is 60 seconds.
    //
    // See HostPath and NFS for working recycler examples
    func NewPersistentVolumeRecyclerPodTemplate() *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.HistogramOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_rotation_seconds",
    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    // To add a new feature, define a key for it above and add it here. The features will be
    // available throughout Kubernetes binaries.
    //
    // Entries are separated from each other with blank lines to avoid sweeping gofmt changes
    // when adding or removing one entry.
    var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one.go

    	} else {
    		// In the case of extender, the pod may have been bound successfully, but timed out returning its response to the scheduler.
    		// It could result in the live version to carry .spec.nodeName, and that's inconsistent with the internal-queued version.
    		if len(cachedPod.Spec.NodeName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	// GetContainerLogs returns logs of a specific container. By
    	// default, it returns a snapshot of the container log. Set 'follow' to true to
    	// stream the log. Set 'follow' to false and specify the number of lines (e.g.
    	// "100" or "all") to tail the log.
    	GetContainerLogs(ctx context.Context, pod *v1.Pod, containerID ContainerID, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) (err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server.go

    				Param(ws.QueryParameter("untilTime", "untilTime is an RFC3339 timestamp until which to show logs").DataType("string")).
    				Param(ws.QueryParameter("tailLines", "tailLines is used to retrieve the specified number of lines from the end of the log").DataType("string")).
    				Param(ws.QueryParameter("pattern", "pattern filters log entries by the provided regex pattern").DataType("string")).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top