Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 288 for updateStrategy (0.23 sec)

  1. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1beta2_DaemonSetUpdateStrategy_To_apps_DaemonSetUpdateStrategy(&in.UpdateStrategy, &out.UpdateStrategy, s); err != nil {
    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  2. pkg/registry/apps/statefulset/storage/storage.go

    		DefaultQualifiedResource:  apps.Resource("statefulsets"),
    		SingularQualifiedResource: apps.Resource("statefulset"),
    
    		CreateStrategy:      statefulset.Strategy,
    		UpdateStrategy:      statefulset.Strategy,
    		DeleteStrategy:      statefulset.Strategy,
    		ResetFieldsStrategy: statefulset.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/values.yaml

          requests:
            cpu: 100m
            memory: 100Mi
    
        resourceQuotas:
          enabled: false
          pods: 5000
    
        # The number of pods that can be unavailable during rolling update (see
        # `updateStrategy.rollingUpdate.maxUnavailable` here:
        # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
        # May be specified as a number of pods or as a percent of the total number
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// updateStrategy indicates the StatefulSetUpdateStrategy that will be
    	// employed to update Pods in the StatefulSet when a revision is made to
    	// Template.
    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. samples/addons/loki.yaml

        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/component: single-binary
        app.kubernetes.io/part-of: memberlist
    spec:
      replicas: 1
      podManagementPolicy: Parallel
      updateStrategy:
        rollingUpdate:
          partition: 0
      serviceName: loki-headless
      revisionHistoryLimit: 10
      
      persistentVolumeClaimRetentionPolicy:
        whenDeleted: Delete
        whenScaled: Delete
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    istio-cni-node namespace: kube-system labels: k8s-app: istio-cni-node release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" spec: selector: matchLabels: k8s-app: istio-cni-node updateStrategy: type: RollingUpdate rollingUpdate: maxUnavailable: 1 template: metadata: labels: k8s-app: istio-cni-node sidecar.istio.io/inject: "false" annotations: # This, along with the CriticalAddonsOnly toleration below, # marks the pod as a critical add-on,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// updateStrategy indicates the StatefulSetUpdateStrategy that will be
    	// employed to update Pods in the StatefulSet when a revision is made to
    	// Template.
    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/daemonset.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    spec:
      selector:
        matchLabels:
          k8s-app: {{ template "name" . }}-node
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: {{ .Values.cni.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
            k8s-app: {{ template "name" . }}-node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// updateStrategy indicates the StatefulSetUpdateStrategy that will be
    	// employed to update Pods in the StatefulSet when a revision is made to
    	// Template.
    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. pkg/registry/apps/deployment/storage/storage.go

    		DefaultQualifiedResource:  apps.Resource("deployments"),
    		SingularQualifiedResource: apps.Resource("deployment"),
    
    		CreateStrategy:      deployment.Strategy,
    		UpdateStrategy:      deployment.Strategy,
    		DeleteStrategy:      deployment.Strategy,
    		ResetFieldsStrategy: deployment.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top