-
Notifications
You must be signed in to change notification settings - Fork 893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add autoPromotionEnabled with default value of true #99
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
pkg/apis/rollouts/v1alpha1/types.go
Outdated
// AutoPromoteEnabled indicates if the rollout should automatically promote the new ReplicaSet | ||
// to the active service or enter a paused state. If not specified, the default value is true. | ||
// +optional | ||
AutoPromoteEnabled *bool `json:"autoPromoteEnabled,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are inconsistent: AutoPromoteEnabled
vs. AutoPromotionSeconds
. To be consistent it should be: AutoPromotionEnabled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Codecov Report
@@ Coverage Diff @@
## master #99 +/- ##
==========================================
- Coverage 78.87% 78.83% -0.04%
==========================================
Files 15 15
Lines 1789 1800 +11
==========================================
+ Hits 1411 1419 +8
- Misses 279 281 +2
- Partials 99 100 +1
Continue to review full report at Codecov.
|
4b78944
to
e69a3e4
Compare
address #80