Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for activeDeadlineSeconds (0.63 sec)

  1. hack/testdata/pod-with-precision.json

    {
      "apiVersion": "v1",
      "kind": "Pod",
      "metadata": {
        "name": "pod-with-precision"
      },
      "spec": {
        "activeDeadlineSeconds": 2147483647,
        "containers": [
          {
            "name": "kubernetes-pause",
            "image": "registry.k8s.io/pause:3.10"
          }
        ],
        "restartPolicy": "Never",
        "securityContext": {
          "supplementalGroups": [
            0,
            1000030003,
            2147483647
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 428 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// StartTime before the system will actively try to mark it failed and kill associated containers.
    	// Value must be a positive integer.
    	// +optional
    	ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" protobuf:"varint,5,opt,name=activeDeadlineSeconds"`
    	// NodeSelector is a selector which must be true for the carp to fit on a node.
    	// Selector which must match a node's labels for the carp to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// StartTime before the system will actively try to mark it failed and kill associated containers.
    	// Value must be a positive integer.
    	// +optional
    	ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" protobuf:"varint,5,opt,name=activeDeadlineSeconds"`
    	// NodeSelector is a selector which must be true for the pod to fit on a node.
    	// Selector which must match a node's labels for the pod to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// Optional duration in seconds relative to the StartTime that the carp may be active on a node
    	// before the system actively tries to terminate the carp; value must be positive integer
    	// +optional
    	ActiveDeadlineSeconds *int64
    	// NodeSelector is a selector which must be true for the carp to fit on a node
    	// +optional
    	NodeSelector map[string]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// Optional duration in seconds relative to the StartTime that the pod may be active on a node
    	// before the system actively tries to terminate the pod; value must be positive integer
    	// +optional
    	ActiveDeadlineSeconds *int64
    	// NodeSelector is a selector which must be true for the pod to fit on a node
    	// +optional
    	NodeSelector map[string]string
    
    	// ServiceAccountName is the name of the ServiceAccount to use to run this pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  6. pkg/volume/nfs/nfs.go

    	}
    
    	pod := plugin.config.RecyclerPodTemplate
    	timeout := util.CalculateTimeoutForVolume(plugin.config.RecyclerMinimumTimeout, plugin.config.RecyclerTimeoutIncrement, spec.PersistentVolume)
    	// overrides
    	pod.Spec.ActiveDeadlineSeconds = &timeout
    	pod.GenerateName = "pv-recycler-nfs-"
    	pod.Spec.Volumes[0].VolumeSource = v1.VolumeSource{
    		NFS: &v1.NFSVolumeSource{
    			Server: spec.PersistentVolume.Spec.NFS.Server,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // NodeSelector is a selector which must be true for the pod to fit on a node.
      // Selector which must match a node's labels for the pod to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // NodeSelector is a selector which must be true for the carp to fit on a node.
      // Selector which must match a node's labels for the carp to be scheduled on that node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // NodeSelector is a selector which must be true for the carp to fit on a node.
      // Selector which must match a node's labels for the carp to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/volume/util/recyclerclient/recycler_client.go

    // RecycleVolumeByWatchingPodUntilCompletion is intended for use with volume
    // Recyclers. This function will save the given Pod to the API and watch it
    // until it completes, fails, or the pod's ActiveDeadlineSeconds is exceeded,
    // whichever comes first. An attempt to delete a recycler pod is always
    // attempted before returning.
    //
    // In case there is a pod with the same namespace+name already running, this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top