Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,780 for Rolling (0.16 sec)

  1. 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)
  2. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    operator: Exists # Mark the pod as a critical add-on for rescheduling. - key: CriticalAddonsOnly operator: Exists - effect: NoExecute operator: Exists priorityClassName: system-node-critical serviceAccountName: istio-cni # 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. terminationGracePeri: 5 containers: # This container installs the Istio CNI binaries # and CNI network config...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/controller/deployment/progress.go

    			util.SetDeploymentCondition(&newStatus, *condition)
    
    		case util.DeploymentProgressing(d, &newStatus):
    			// If there is any progress made, continue by not checking if the deployment failed. This
    			// behavior emulates the rolling updater progressDeadline check.
    			msg := fmt.Sprintf("Deployment %q is progressing.", d.Name)
    			if newRS != nil {
    				msg = fmt.Sprintf("ReplicaSet %q is progressing.", newRS.Name)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/BloomFilterStrategies.java

        }
    
        /**
         * Careful here: if threads are mutating the atomicLongArray while this method is executing, the
         * final long[] will be a "rolling snapshot" of the state of the bit array. This is usually good
         * enough, but should be kept in mind.
         */
        public static long[] toPlainArray(AtomicLongArray atomicLongArray) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "rollingUpdate": {
              "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
              "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
            },
            "type": {
              "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    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. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

        }
    
        /**
         * Careful here: if threads are mutating the atomicLongArray while this method is executing, the
         * final long[] will be a "rolling snapshot" of the state of the bit array. This is usually good
         * enough, but should be kept in mind.
         */
        public static long[] toPlainArray(AtomicLongArray atomicLongArray) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	}
    	rootCertRotatorLog.Infof("Root certificate is written into CA secret: %v", string(cert))
    	if err := rotator.ca.GetCAKeyCertBundle().VerifyAndSetAll(cert, key, nil, rootCert); err != nil {
    		if rollForward {
    			// Rolling forward root certificate fails at keycertbundle update, notify caller to rollback.
    			return true, fmt.Errorf("failed to update CA KeyCertBundle (error: %s)", err.Error())
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K 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