Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for rollout (0.21 sec)

  1. tests/integration/pilot/revisioned_upgrade_test.go

    	}
    
    	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)
    	}
    	fetch := kubetest.NewPodMustFetch(t.Clusters().Default(), revisionedInstance.Config().Namespace.Name(), fmt.Sprintf("app=%s", revisionedInstance.Config().Service)) // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.2.md

      * Minimum CPU limits is 10m. This is a Linux Kernel limitation
      * “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because
    paused deployments can’t be rolled back (this is expected), and the command
    waits for rollback events to return the result. Users should use “kubectl
    rollout resume” to resume a deployment before rolling back.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    * AWS: SSL support for ELB listeners through annotations ([#23495](https://github.com/kubernetes/kubernetes/pull/23495), [@therc](https://github.com/therc))
    * Implement `kubectl rollout status` that can be used to watch a deployment's rollout status ([#19946](https://github.com/kubernetes/kubernetes/pull/19946), [@janetkuo](https://github.com/janetkuo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.13.md

    ### SIG CLI
    
    - `kubectl apply` can now change a deployment strategy from rollout to recreate without explicitly clearing the rollout-related fields ([#70436](https://github.com/kubernetes/kubernetes/pull/70436), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    * Fixes ability for admin/edit/view users to see controller revisions, needed for kubectl rollout commands ([#70699](https://github.com/kubernetes/kubernetes/pull/70699), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top