-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[V3] Add flag as v3 entrypoint. #5694
[V3] Add flag as v3 entrypoint. #5694
Conversation
661ffbd
to
4095815
Compare
4095815
to
9e445ee
Compare
Codecov Report
@@ Coverage Diff @@
## master #5694 +/- ##
=======================================
Coverage 70.64% 70.64%
=======================================
Files 411 411
Lines 15858 15860 +2
=======================================
+ Hits 11203 11205 +2
Misses 3827 3827
Partials 828 828
Continue to review full report at Codecov.
|
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
@@ -509,6 +509,15 @@ var flagRegistry = []Flag{ | |||
DefinedOn: []string{"debug", "dev", "run"}, | |||
IsEnum: true, | |||
}, | |||
{ |
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.
Can we make this flag hidden for now?
Related: #5673
Description
Allow users to have access to V3 (skaffold render v2) via a "--experimental" flag in
skaffold dev|render|deploy|run
conmmands.This flag can be turned off once all V3 features are completed. Due to the long developing period as well as the kpt dependencies, we will support both v2 and V3 version streams developing and releasing together (A single skaffold binary) until V3 is ready for Beta.
Users can switch between V2 and V3 via the experimental flag. e.g.
skaffold dev --experimental ...
uses V3.We also need a release.md doc (for developers) to talk about the new stream.
Following Changes
Schema refactoring for V3
Runner refactoring: #5692