gitextract_aa0jajfb/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── analyze.yaml │ ├── boilerplate.yaml │ ├── build.yaml │ ├── donotsubmit.yaml │ ├── e2e.yaml │ ├── image.yaml │ ├── kind-e2e.yaml │ ├── modules-integration-test.yaml │ ├── publish-site.yaml │ ├── registries.yaml │ ├── release.yml │ ├── sbom.yaml │ ├── stale.yaml │ ├── style.yaml │ ├── test.yaml │ └── verify.yaml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yml ├── .ko.yaml ├── .wokeignore ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── ROADMAP.md ├── cmd/ │ └── help/ │ └── main.go ├── code-of-conduct.md ├── docs/ │ ├── CNAME │ ├── README.md │ ├── advanced/ │ │ ├── faq.md │ │ ├── go-packages.md │ │ ├── lambda.md │ │ ├── limitations.md │ │ ├── linux-capabilities.md │ │ ├── migrating-from-dockerfile.md │ │ ├── root-ca-certificates.md │ │ └── terraform.md │ ├── community.md │ ├── configuration.md │ ├── custom/ │ │ ├── main.html │ │ └── partials/ │ │ └── copyright.html │ ├── deployment.md │ ├── features/ │ │ ├── build-cache.md │ │ ├── debugging.md │ │ ├── k8s.md │ │ ├── multi-platform.md │ │ ├── sboms.md │ │ └── static-assets.md │ ├── get-started.md │ ├── index.md │ ├── install.md │ └── reference/ │ ├── ko.md │ ├── ko_apply.md │ ├── ko_build.md │ ├── ko_create.md │ ├── ko_delete.md │ ├── ko_login.md │ ├── ko_resolve.md │ ├── ko_run.md │ └── ko_version.md ├── go.mod ├── go.sum ├── hack/ │ ├── boilerplate/ │ │ ├── boilerplate.go.txt │ │ └── boilerplate.sh.txt │ ├── presubmit.sh │ ├── tools.go │ ├── update-codegen.sh │ └── update-deps.sh ├── integration_test.sh ├── internal/ │ └── sbom/ │ ├── sbom.go │ └── spdx.go ├── main.go ├── mkdocs.yml ├── pkg/ │ ├── build/ │ │ ├── build.go │ │ ├── cache.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── future.go │ │ ├── future_test.go │ │ ├── gobuild.go │ │ ├── gobuild_test.go │ │ ├── gobuilds.go │ │ ├── gobuilds_test.go │ │ ├── layer.go │ │ ├── limit.go │ │ ├── limit_test.go │ │ ├── options.go │ │ ├── recorder.go │ │ ├── recorder_test.go │ │ ├── shared.go │ │ ├── shared_test.go │ │ ├── strict.go │ │ └── strict_test.go │ ├── caps/ │ │ ├── caps.go │ │ ├── caps_dd_test.go │ │ ├── caps_test.go │ │ ├── gen.sh │ │ └── new_file_caps_test.go │ ├── commands/ │ │ ├── apply.go │ │ ├── build.go │ │ ├── cache.go │ │ ├── commands.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── options/ │ │ │ ├── build.go │ │ │ ├── build_test.go │ │ │ ├── filestuff.go │ │ │ ├── namer_test.go │ │ │ ├── publish.go │ │ │ ├── selector.go │ │ │ ├── testdata/ │ │ │ │ ├── bad-config/ │ │ │ │ │ └── .ko.yaml/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── config/ │ │ │ │ │ ├── .ko.yaml │ │ │ │ │ └── my-ko.yaml │ │ │ │ ├── multiple-platforms/ │ │ │ │ │ └── .ko.yaml │ │ │ │ └── paths/ │ │ │ │ ├── .ko.yaml │ │ │ │ └── app/ │ │ │ │ ├── cmd/ │ │ │ │ │ └── foo/ │ │ │ │ │ └── main.go │ │ │ │ └── go.mod │ │ │ └── validate.go │ │ ├── publisher.go │ │ ├── publisher_test.go │ │ ├── resolve.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── root.go │ │ ├── run.go │ │ └── version.go │ ├── doc.go │ ├── internal/ │ │ ├── git/ │ │ │ ├── clone.go │ │ │ ├── errors.go │ │ │ ├── git.go │ │ │ ├── info.go │ │ │ └── info_test.go │ │ ├── gittesting/ │ │ │ ├── git.go │ │ │ └── git_test.go │ │ └── testing/ │ │ ├── daemon.go │ │ ├── doc.go │ │ ├── fixed.go │ │ └── fixed_test.go │ ├── publish/ │ │ ├── daemon.go │ │ ├── daemon_test.go │ │ ├── default.go │ │ ├── default_test.go │ │ ├── doc.go │ │ ├── future.go │ │ ├── future_test.go │ │ ├── kind/ │ │ │ ├── doc.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── kind.go │ │ ├── layout.go │ │ ├── layout_test.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ ├── options.go │ │ ├── publish.go │ │ ├── recorder.go │ │ ├── recorder_test.go │ │ ├── shared.go │ │ ├── shared_test.go │ │ ├── tarball.go │ │ └── tarball_test.go │ └── resolve/ │ ├── doc.go │ ├── resolve.go │ ├── resolve_test.go │ ├── selector.go │ └── selector_test.go └── test/ ├── build-configs/ │ ├── .ko.yaml │ ├── bar/ │ │ ├── cmd/ │ │ │ └── main.go │ │ └── go.mod │ ├── caps/ │ │ ├── cmd/ │ │ │ └── main.go │ │ └── go.mod │ ├── caps.ko.yaml │ ├── foo/ │ │ ├── cmd/ │ │ │ └── main.go │ │ └── go.mod │ └── toolexec/ │ ├── cmd/ │ │ └── main.go │ └── go.mod ├── kodata/ │ ├── a │ ├── kenobi │ └── subdir/ │ └── file.txt ├── main.go └── test.yaml