Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,780 for Rolling (0.12 sec)

  1. common-protos/k8s.io/api/apps/v1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/continue.go

    // TODO: if we change the version of the encoded from, we can't start encoding the new version
    // until all other servers are upgraded (i.e. we need to support rolling schema)
    // This is a public API struct and cannot change.
    type continueToken struct {
    	APIVersion      string `json:"v"`
    	ResourceVersion int64  `json:"rv"`
    	StartKey        string `json:"start"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 17:30:02 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

        spec:
          priorityClassName: system-node-critical
          nodeSelector:
            projectcalico.org/ds-ready: "true"
          hostNetwork: true
          serviceAccountName: calico
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 0
          initContainers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"type":          "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
    	"rollingUpdate": "Rolling update config params. Present only if type = \"RollingUpdate\".",
    }
    
    func (DaemonSetUpdateStrategy) SwaggerDoc() map[string]string {
    	return map_DaemonSetUpdateStrategy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

            this(temp, DEFAULT_MAX_SIZE);
        }
    
        /**
         * @param temp - Provider of temporary files.
         * @param maxSize - indicates the approx. maximum size of the binary store that will trigger rolling of the file
         */
        ResolutionResultsStoreFactory(TemporaryFileProvider temp, int maxSize) {
            this.temp = temp;
            this.maxSize = maxSize;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. pkg/controller/deployment/util/deployment_util.go

    	}
    	// If a revision annotation already existed and this replica set was updated with a new revision
    	// then that means we are rolling back to this replica set. We need to preserve the old revisions
    	// for historical information.
    	if ok && oldRevisionInt < newRevisionInt {
    		revisionHistoryAnnotation := newRS.Annotations[RevisionHistoryAnnotation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml.injected

      kind: DeploymentConfig
      metadata:
        creationTimestamp: null
        name: hello
      spec:
        replicas: 7
        revisionHistoryLimit: 2
        strategy:
          resources: {}
          type: Rolling
        template:
          metadata:
            annotations:
              istio.io/rev: default
              kubectl.kubernetes.io/default-container: hello
              kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top