1
0
mirror of https://github.com/ko-build/ko.git synced 2025-07-15 23:54:17 +02:00

Implement ko deps (#403)

* Implement ko deps

* actually add deps.go

* specify auth, useragent, platform

* stop reading tar if the context is cancelled

* chmod to the file's perms

* remove support for --platform, modules don't care about build tags

* fix copyright boilerplate

* drop fs dependency

* udpate module integration test to newer Go versions

* use entrypoint to identify the binary

* fix gosec finding, some style comments

* revert modules integration test change
This commit is contained in:
Jason Hall
2021-07-30 13:19:40 -04:00
committed by GitHub
parent 305f086c4e
commit 8c7b9cbb8b
3 changed files with 134 additions and 15 deletions

View File

@ -31,6 +31,7 @@ func AddKubeCommands(topLevel *cobra.Command) {
addResolve(topLevel)
addPublish(topLevel)
addRun(topLevel)
addDeps(topLevel)
addCompletion(topLevel)
}