Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 191 for activeDeadlineSeconds (0.35 sec)

  1. 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)
  2. cluster/gce/gci/configure-helper.sh

      cat > "${PV_RECYCLER_OVERRIDE_TEMPLATE}" <<\EOF
    version: v1
    kind: Pod
    metadata:
      generateName: pv-recycler-
      namespace: default
    spec:
      activeDeadlineSeconds: 60
      restartPolicy: Never
      volumes:
      - name: vol
      containers:
      - name: pv-recycler
        image: registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
        command:
        - /bin/sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (1)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    		}
    	}
    	i -= len(m.DNSPolicy)
    	copy(dAtA[i:], m.DNSPolicy)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.DNSPolicy)))
    	i--
    	dAtA[i] = 0x32
    	if m.ActiveDeadlineSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.ActiveDeadlineSeconds))
    		i--
    		dAtA[i] = 0x28
    	}
    	if m.TerminationGracePeriodSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TerminationGracePeriodSeconds))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodSpec": {
          "description": "PodSpec is a description of a pod.",
          "properties": {
            "activeDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K 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. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top