Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for activeDeadlineSeconds (0.49 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    	mungedPodSpec.InitContainers = newInitContainers
    	// munge spec.activeDeadlineSeconds
    	mungedPodSpec.ActiveDeadlineSeconds = nil
    	if oldPod.Spec.ActiveDeadlineSeconds != nil {
    		activeDeadlineSeconds := *oldPod.Spec.ActiveDeadlineSeconds
    		mungedPodSpec.ActiveDeadlineSeconds = &activeDeadlineSeconds
    	}
    	// munge spec.schedulingGates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/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"`
    	// Set DNS policy for the pod.
    	// Defaults to "ClusterFirst".
    	// Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type ResourceQuotaScope string
    
    // These are valid values for resource quota spec
    const (
    	// Match all pod objects where spec.activeDeadlineSeconds >=0
    	ResourceQuotaScopeTerminating ResourceQuotaScope = "Terminating"
    	// Match all pod objects where spec.activeDeadlineSeconds is nil
    	ResourceQuotaScopeNotTerminating ResourceQuotaScope = "NotTerminating"
    	// Match all pod objects that have best effort quality of service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.RestartPolicy = core.RestartPolicy(in.RestartPolicy)
    	out.TerminationGracePeriodSeconds = (*int64)(unsafe.Pointer(in.TerminationGracePeriodSeconds))
    	out.ActiveDeadlineSeconds = (*int64)(unsafe.Pointer(in.ActiveDeadlineSeconds))
    	out.DNSPolicy = core.DNSPolicy(in.DNSPolicy)
    	out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
    	out.ServiceAccountName = in.ServiceAccountName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            ]
          },
          "io.k8s.api.batch.v1.JobSpec": {
            "description": "JobSpec describes how the job execution will look like.",
            "properties": {
              "activeDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    - The Job controller now creates pods in batches instead of all at once. ([#49142](https://github.com/kubernetes/kubernetes/pull/49142), [@joelsmith](https://github.com/joelsmith)).
    
    - Short `.spec.ActiveDeadlineSeconds` is properly applied to a Job. ([#48545](https://github.com/kubernetes/kubernetes/pull/48454), [@weiwei4](https://github.com/weiwei04)).
    
    
    #### CLI Changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Fix bug that prevented the job controller from enforcing activeDeadlineSeconds when set. ([#110294](https://github.com/kubernetes/kubernetes/pull/110294), [@harshanarayana](https://github.com/harshanarayana))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/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;
    
      // Set DNS policy for the pod.
      // Defaults to "ClusterFirst".
      // Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"activeDeadlineSeconds":         "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

    * kubeadm: clean up exited containers and network checkpoints ([#43836](https://github.com/kubernetes/kubernetes/pull/43836), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
Back to top