-
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
skipPush -> push #1114
skipPush -> push #1114
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1114 +/- ##
==========================================
+ Coverage 42.96% 43.14% +0.18%
==========================================
Files 74 77 +3
Lines 3403 3537 +134
==========================================
+ Hits 1462 1526 +64
- Misses 1801 1858 +57
- Partials 140 153 +13
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.
@balopat I like that. You should add the code that migrates existing configs though.
Thanks for catching that @dgageot! Done. |
skaffold.yaml
Outdated
@@ -2,7 +2,7 @@ apiVersion: skaffold/v1alpha3 | |||
kind: Config | |||
build: | |||
artifacts: | |||
- image: gcr.io/k8s-skaffold/skaffold | |||
- imageName: gcr.io/k8s-skaffold/skaffold | |||
docker: | |||
dockerfile: deploy/skaffold/Dockerfile |
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.
I think dockerfile
should be dockerfilePath
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.
agreed - I changed it
@@ -77,7 +77,8 @@ build: | |||
# `useBuildkit` can also be set to activate the experimental BuildKit feature. | |||
# | |||
# local: | |||
# skipPush: true | |||
# false by default for local clusters, true for remote clusters | |||
# push: false |
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.
The doc in the previous paragraph still talks about skip push, with inverted boolean value: this is confusing.
Fixes #1113.