Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 593 for Rolling (0.13 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			fmt.Println("[upgrade/etcd] Rolling back etcd data")
    			if err := rollbackEtcdData(cfg, pathMgr); err != nil {
    				// Even copying back datastore failed, no options for recovery left, bailing out
    				return true, errors.Errorf("fatal error rolling back local etcd cluster datadir: %v, the backup of etcd database is stored here:(%s)", err, backupEtcdDir)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/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: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    // Spec to control the desired behavior of rolling update.
    type RollingUpdateDeployment struct {
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/pilot/revisioned_upgrade_test.go

    		Interval: callInterval,
    	}).Start()
    
    	if err := enableDefaultInjection(revisionedNamespace); err != nil {
    		t.Fatalf("could not relabel namespace to enable default injection: %v", err)
    	}
    
    	log.Infof("rolling out echo workloads for service %q", revisionedInstance.Config().Service)
    	if err := revisionedInstance.Restart(); err != nil {
    		t.Fatalf("revisioned instance rollout failed with: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

        resources:
          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).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/configmap.go

    			return nil
    		})
    	}
    
    	// Restore the original value of the MeshConfig when the context completes.
    	t.CleanupStrategy(cleanupStrategy, func() {
    		// Invalidate the member mesh config again, since we're rolling back the changes.
    		ic.mu.Lock()
    		ic.injectConfig = nil
    		ic.mu.Unlock()
    
    		errG := multierror.Group{}
    		mu.RLock()
    		defer mu.RUnlock()
    		for cn, mcYAML := range origCfg {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      ZeroVPNConfig zvpn = 19;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 20 [deprecated = true];
    
      // K8s rolling update strategy
      IntOrString rollingMaxSurge = 21 [deprecated = true];
    
      // The number of pods that can be unavailable during a rolling update (see
      // `strategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/daemonset.yaml

              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
          # 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: 5
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta1/defaults_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	if *(d.Spec.Replicas)-int32(maxUnavailable) <= 0 {
    		t.Fatalf("the default value of maxUnavailable can lead to no active replicas during rolling update")
    	}
    }
    
    func TestSetDefaultStatefulSet(t *testing.T) {
    	defaultLabels := map[string]string{"foo": "bar"}
    	var defaultPartition int32 = 0
    	var notTheDefaultPartition int32 = 42
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top