-
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
fix: kpt force named "false" in schema #9074
Conversation
Anything I can do to merge this? It's been sitting open for a while now. I could rebase, and I could also look into |
Rebased on $ cat << END > skaffold.yaml
apiVersion: skaffold/v4beta1
kind: Config
metadata:
name: PR9074
deploy:
kpt:
"false": true
END
$ ./out/skaffold fix
apiVersion: skaffold/v4beta8
kind: Config
metadata:
name: PR9074
deploy:
kpt:
force: true |
Hey @zevisert, thanks for opening this PR. Could you please rebase it? This will add your changes on top of the new schema version created. Also, according to the failing tests, you'll need to run |
Rebased, and schemas updated. Thanks for interpreting the test results for me - I ran and reverted both commands a couple of times, it seemed like both had the same effect. I committed the updated schema. No worries about the time taken, there's lots of other open issues here! |
Rebased once more to sign commits |
Codecov Report
@@ Coverage Diff @@
## main #9074 +/- ##
==========================================
- Coverage 70.48% 63.36% -7.12%
==========================================
Files 515 630 +115
Lines 23150 32419 +9269
==========================================
+ Hits 16317 20542 +4225
- Misses 5776 10312 +4536
- Partials 1057 1565 +508
... and 433 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Fixes: None
Related: None
Merge before/after: None
^ I didn't create an issue, I just edited directly on github 🥲
Description
I think the intent for the current schema at
skaffold.yaml:deploy.kpt.false
was meant to bedeploy.kpt.force
.https://skaffold.dev/docs/references/yaml/#deploy-kpt-false
User facing changes (remove if N/A)
Users using
deploy.kpt.false
will need to change todeploy.kpt.force
.Follow-up Work (remove if N/A)