Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for rollout (0.42 sec)

  1. operator/pkg/verifier/k8s_util.go

    		return fmt.Errorf("waiting for deployment %q rollout to finish: %d out of %d new replicas have been updated",
    			deployment.Name, deployment.Status.UpdatedReplicas, *deployment.Spec.Replicas)
    	}
    	if deployment.Status.Replicas > deployment.Status.UpdatedReplicas {
    		return fmt.Errorf("waiting for deployment %q rollout to finish: %d old replicas are pending termination",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tests/integration/pilot/cni_race_test.go

    			deleteCNIDaemonset(t, c)
    
    			// Rollout restart instances in the echo namespace, and wait for a broken instance.
    			t.Log("Rollout restart echo instance to get a broken instance")
    			rolloutCmd := fmt.Sprintf("kubectl rollout restart deployment -n %s", ns.Name())
    			if _, err := shell.Execute(true, rolloutCmd); err != nil {
    				t.Fatalf("failed to rollout restart deployments %v", err)
    			}
    			waitForBrokenPodOrFail(t, c, ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/controller/deployment/progress.go

    	"k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller/deployment/util"
    )
    
    // syncRolloutStatus updates the status of a deployment during a rollout. There are
    // cases this helper will run that cannot be prevented from the scaling detection,
    // for example a resync of the deployment after it was scaled up. In those cases,
    // we shouldn't try to estimate any progress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. releasenotes/notes/47574.yaml

      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/deployment.go

    		shouldCreateWLE: cfg.DeployAsVM && !cfg.AutoRegisterVM,
    	}, nil
    }
    
    // Restart performs restarts of all the pod of the deployment.
    // This is analogous to `kubectl rollout restart` on the echo deployment and waits for
    // `kubectl rollout status` to complete before returning, but uses direct API calls.
    func (d *deployment) Restart() error {
    	var errs error
    	var deploymentNames []string
    	for _, s := range d.cfg.Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. pkg/kube/util_test.go

    			},
    		},
    		{
    			name: "argo-rollout",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					GenerateName: "name-6dc78b855c-",
    					OwnerReferences: []metav1.OwnerReference{{
    						APIVersion: "v1",
    						Controller: ptr.Of(true),
    						Kind:       "ReplicaSet",
    						Name:       "name-6dc78b855c",
    					}},
    					Labels: map[string]string{
    						"rollouts-pod-template-hash": "6dc78b855c",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/tag.go

      # and validating resources cluster-wide
      istioctl tag set default --revision 1-8-1
    
      # Rollout namespace "test-ns" to update workloads to the "1-8-1" revision
      kubectl rollout restart deployments -n test-ns
    `,
    		SuggestFor: []string{"create"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util.go

    	if condition == nil {
    		return false
    	}
    	// If the previous condition has been a successful rollout then we shouldn't try to
    	// estimate any progress. Scenario:
    	//
    	// * progressDeadlineSeconds is smaller than the difference between now and the time
    	//   the last rollout finished in the past.
    	// * the creation of a new ReplicaSet triggers a resync of the Deployment prior to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

    // enabled or disabled, it will decide whether or not to run the bridge.
    //
    // The config_proto param is a required input for all TF1 graphs but it is
    // redundant for TF2 graphs.
    // If getting rollout policy involves graph analysis, `record_stats` is used
    // to decide whether to emit metrics on unsupported features of the graph.
    MlirBridgeRolloutPolicy GetMlirBridgeRolloutPolicy(
        const tensorflow::Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.h

        bool enabled_for_all_;
    
        // If true, enable Device API (PjRt) for TF GPU device. This is a helper
        // flag so that individual tests can turn on PjRt for GPU specifically.
        // Once the rollout to GPU is complete, this flag can be deprecated.
        bool enabled_for_gpu_;
    
       private:
        // Devices for which using Device API (PjRt) is allowed in the XlaLaunch op.
        // This can only be modified programmatically.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top