Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Rollout (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kube/util.go

    			} else if typeMetadata.Kind == "ReplicaSet" && pod.Labels["rollouts-pod-template-hash"] != "" &&
    				strings.HasSuffix(controllerRef.Name, pod.Labels["rollouts-pod-template-hash"]) {
    				// Heuristic for ArgoCD Rollout
    				name := strings.TrimSuffix(controllerRef.Name, "-"+pod.Labels["rollouts-pod-template-hash"])
    				deployMeta.Name = name
    				typeMetadata.Kind = "Rollout"
    				typeMetadata.APIVersion = "v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/controller/deployment/progress_test.go

    			conditionType:   apps.DeploymentProgressing,
    			conditionStatus: v1.ConditionTrue,
    			conditionReason: util.NewRSAvailableReason,
    		},
    		{
    			name:            "DeploymentTimedOut: update status if rollout exceeds Progress Deadline",
    			d:               currentDeployment(&pds, 3, 2, 2, 2, []apps.DeploymentCondition{replicaSetUpdated}),
    			allRSs:          []*apps.ReplicaSet{},
    			newRS:           newRSWithAvailable("foo", 3, 2, 2),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/controller/deployment/rolling.go

    	// * A node fails and causes one of the oldRS pods to become unavailable. However, 13 - 8 - 5 = 0, so the oldRS won't be scaled down.
    	// * The user notices the crashloop and does kubectl rollout undo to rollback.
    	// * newRSPodsUnavailable is 1, since we rolled back to the good replica set, so maxScaledDown = 13 - 8 - 1 = 4. 4 of the crashlooping pods will be scaled down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/controller/deployment/sync.go

    // have the effect of hastening the rollout progress, which could produce a higher proportion of unavailable
    // replicas in the event of a problem with the rolled out template. Should run only on scaling events or
    // when a deployment is paused and not during the normal rollout process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. pkg/serviceaccount/claims.go

    const (
    	// Injected bound service account token expiration which triggers monitoring of its time-bound feature.
    	WarnOnlyBoundTokenExpirationSeconds = 60*60 + 7
    
    	// Extended expiration for those modified tokens involved in safe rollout if time-bound feature.
    	ExpirationExtensionSeconds = 24 * 365 * 60 * 60
    )
    
    var (
    	// time.Now stubbed out to allow testing
    	now = time.Now
    	// uuid.New stubbed out to allow testing
    	newUUID = uuid.NewString
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top