├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── hooks │ └── pre-commit └── workflows │ ├── checkDocSync.yml │ ├── checkLicenses.yml │ ├── checkSite.yml │ ├── e2eEnvironment.yml │ ├── firebase-hosting-merge.yml │ ├── go.yml │ ├── live-e2e.yml │ ├── release.yml │ └── verifyContent.yml ├── .gitignore ├── .golangci.yml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Formula ├── README.md └── kpt.rb ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── commands ├── alpha │ ├── alphacmd.go │ ├── license │ │ ├── command.go │ │ └── info │ │ │ └── info.go │ ├── live │ │ ├── livecmd.go │ │ └── plan │ │ │ ├── command.go │ │ │ └── diff.go │ ├── rollouts │ │ ├── advance │ │ │ └── advance.go │ │ ├── get │ │ │ └── get.go │ │ ├── rolloutsclient │ │ │ └── client.go │ │ ├── rolloutscmd.go │ │ └── status │ │ │ └── status.go │ └── wasm │ │ ├── pull │ │ └── command.go │ │ ├── push │ │ └── command.go │ │ └── wasmcmd.go ├── commands.go ├── fn │ ├── doc │ │ ├── cmdfndoc.go │ │ └── cmdfndoc_test.go │ ├── fncmd.go │ └── render │ │ ├── cmdrender.go │ │ └── cmdrender_test.go ├── live │ ├── apply │ │ ├── cmdapply.go │ │ └── cmdapply_test.go │ ├── destroy │ │ ├── cmddestroy.go │ │ └── cmddestroy_test.go │ ├── init │ │ ├── cmdliveinit.go │ │ └── cmdliveinit_test.go │ ├── installrg │ │ └── cmdinstallrg.go │ ├── livecmd.go │ ├── migrate │ │ ├── migratecmd.go │ │ └── migratecmd_test.go │ └── status │ │ ├── cmdstatus.go │ │ ├── cmdstatus_test.go │ │ └── fake-loader.go ├── pkg │ ├── diff │ │ ├── cmddiff.go │ │ └── cmddiff_test.go │ ├── get │ │ ├── cmdget.go │ │ └── cmdget_test.go │ ├── init │ │ ├── cmdinit.go │ │ └── cmdinit_test.go │ ├── pkgcmd.go │ └── update │ │ ├── cmdupdate.go │ │ └── cmdupdate_test.go └── util │ ├── common.go │ └── factory.go ├── demos ├── README.md └── demo-magic │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── demo-magic.sh │ ├── license.txt │ └── samples │ └── demo-template.sh ├── docs ├── ROADMAP.md ├── design-docs │ ├── 00-template.md │ ├── 01-live-invenstory-to-rg.md │ ├── 02-oci-support.md │ ├── 03-pipeline-merge.md │ ├── 04-arm-build.md │ ├── 05-kpt-fn-exclude.md │ ├── 06-config-as-data.md │ ├── 07-package-orchestration.md │ ├── 08-package-variant.md │ ├── CaD Core Architecture.svg │ ├── CaD Overview.svg │ ├── Porch Architecture.svg │ ├── Porch Inner Loop.svg │ ├── packagevariant-clone.png │ ├── packagevariant-config-injection.png │ ├── packagevariant-context.png │ ├── packagevariant-function.png │ ├── packagevariant-legend.png │ ├── packagevariantset-target-list-with-packages.png │ ├── packagevariantset-target-list.png │ └── packagevariantset-target-repo-selector.png ├── style-guides │ ├── docs.md │ └── errors.md └── sync │ └── prototype-controller.md ├── dogfood └── sitev2 │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go ├── e2e ├── README.md ├── fn_test.go ├── live │ ├── end-to-end-test.sh │ └── testdata │ │ ├── Kptfile │ │ ├── continue-on-error │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ └── pod-b.yaml │ │ ├── install-rg-crd │ │ └── example-resource-group.yaml │ │ ├── inventory-template.yaml │ │ ├── migrate-case-1a │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml │ │ ├── migrate-case-1b │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-b.yaml │ │ ├── pod-c.yaml │ │ └── pod-d.yaml │ │ ├── migrate-case-2a │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml │ │ ├── migrate-case-2b │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-b.yaml │ │ ├── pod-c.yaml │ │ └── pod-d.yaml │ │ ├── migrate-error │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml │ │ ├── rbac-error-step-1 │ │ ├── namespace.yaml │ │ ├── role-binding.yaml │ │ └── service-account.yaml │ │ ├── rbac-error-step-2 │ │ └── user-secret.yaml │ │ ├── rbac-error-step-3 │ │ ├── Kptfile │ │ ├── config-map.yaml │ │ └── error-config-map.yaml │ │ ├── rg-test-case-1a │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml │ │ ├── rg-test-case-1b │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-b.yaml │ │ ├── pod-c.yaml │ │ └── pod-d.yaml │ │ ├── stdin-test │ │ └── pods.yaml │ │ ├── template-rg-namespace.yaml │ │ ├── template-test-namespace.yaml │ │ ├── test-case-1a │ │ ├── Kptfile │ │ ├── inventory-template.yaml │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml │ │ ├── test-case-1b │ │ ├── Kptfile │ │ ├── inventory-template.yaml │ │ ├── namespace.yaml │ │ ├── pod-b.yaml │ │ ├── pod-c.yaml │ │ └── pod-d.yaml │ │ └── test-case-1c │ │ ├── Kptfile │ │ ├── namespace.yaml │ │ ├── pod-a.yaml │ │ ├── pod-b.yaml │ │ └── pod-c.yaml ├── live_test.go ├── porch_test.go └── testdata │ ├── fn-eval │ ├── all-resource-deletion │ │ ├── pkg │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ └── starlark-delete-resource.yaml │ ├── default-runtime │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── error-in-pipe │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ └── .krmignore │ ├── exec-function-stderr │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── function.sh │ │ └── resources.yaml │ ├── exec-function-with-args │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── exec-function │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── function.sh │ │ └── resources.yaml │ ├── fn-config-file-in-pkg │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── config.yaml │ │ └── resources.yaml │ ├── fn-config-file │ │ ├── config.yaml │ │ └── pkg │ │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── fn-source │ │ ├── include-meta-resource-out-of-place │ │ │ ├── .expected │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ │ └── include-meta-resources │ │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ ├── fn-success-with-stderr │ │ ├── pkg │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── results.yaml │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ └── starlark.yaml │ ├── fnconfig-missing-name │ │ ├── config.yaml │ │ └── pkg │ │ │ ├── .expected │ │ │ └── config.yaml │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── function-chain │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── function-env │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ └── .krmignore │ ├── image-pull-policy-always │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── setup.sh │ │ └── .krmignore │ ├── image-pull-policy-if-not-present │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── setup.sh │ │ └── .krmignore │ ├── image-pull-policy-never │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── include-meta-resources-v1alpha1 │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── include-meta-resources-v1alpha2 │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── include-meta-resources │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── invalid-fn-config-file │ │ ├── config.yaml │ │ └── pkg │ │ │ ├── .expected │ │ │ └── config.yaml │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── krm-check-exclude-kustomize │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── kustomization.yaml │ │ └── resources.yaml │ ├── missing-fn-config │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── missing-fn-image │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── modify-legacy-path-annotation │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── deployment.yaml │ │ └── starlark-fn.yaml │ ├── modify-path-annotation │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── deployment.yaml │ │ └── starlark-fn.yaml │ ├── multiple-fn-config-one-file │ │ ├── config.yaml │ │ └── pkg │ │ │ ├── .expected │ │ │ └── config.yaml │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── no-image-pull │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── exec.sh │ │ │ └── setup.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── no-op │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── non-krm-resource │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── nonkrm.yaml │ │ └── resources.yaml │ ├── out-of-place-dir-exists-error │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── out-of-place-dir │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── out-of-place-fnchain-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── out-of-place-fnchain-unwrap │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── output-to-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── preserve-comments │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── preserve-order-include-meta-resources │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── preserve-order-null-values │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ └── resources.yaml │ ├── privilege-options │ │ ├── disable-network │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── exec.sh │ │ │ ├── .krmginore │ │ │ └── resources.yaml │ │ ├── enable-network │ │ │ ├── .expected │ │ │ │ └── exec.sh │ │ │ ├── .krmginore │ │ │ └── resources.yaml │ │ └── mount │ │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── resource-deletion │ │ ├── pkg │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ └── starlark-delete-resource.yaml │ ├── save-fn │ │ ├── custom-pkg-path │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── sub-pkg │ │ │ │ ├── Kptfile │ │ │ │ ├── fn-config.yaml │ │ │ │ └── resources.yaml │ │ ├── exec │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── fn-config.yaml │ │ │ ├── function.sh │ │ │ └── resources.yaml │ │ ├── image │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── match-selector │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── no-save-when-fail │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ ├── override-fn │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── preserve-kptfile-comments │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ └── validator-type │ │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ ├── selectors │ │ ├── basicpipeline │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ ├── exclude │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ ├── diff.patch │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ ├── out-of-place-fnchain-unwrap │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ │ └── selectors-with-exclude │ │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ │ ├── .krmignore │ │ │ └── resources.yaml │ ├── short-image-path │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── simple-function-symlink │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── simple-function │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ └── resources.yaml │ ├── structured-results-in-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── resources.yaml │ │ └── search-replace-conf.yaml │ ├── subpkg-exclude-fn-config-by-default │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── subpkg-has-samename-subdir │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── pkg-a │ │ │ ├── Kptfile │ │ │ └── pkg-a │ │ │ └── resources.yaml │ ├── subpkg-include-meta-resources │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── subpkgs-with-krmignore │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── db │ │ │ ├── non-krm.yaml │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── subpkgs │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── db │ │ │ └── resources.yaml │ │ └── resources.yaml │ └── wasm-function │ │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ │ ├── .krmignore │ │ └── resources.yaml │ ├── fn-render │ ├── all-resource-deletion │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── delete-all.yaml │ │ ├── deployment.yaml │ │ └── resources.yaml │ ├── basicpipeline-out-of-place │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── basicpipeline-symlink │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── basicpipeline-v1alpha1 │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── basicpipeline-v1alpha2 │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── basicpipeline-wasm │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ ├── setup.sh │ │ │ └── teardown.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── basicpipeline │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── default-runtime │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── empty-pipeline │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── exec-function-stderr │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── function.sh │ │ └── resources.yaml │ ├── exec-function-with-args │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── exec-without-permissions │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── fn-failure-output-no-truncate │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── fn-failure │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── deployment_httpbin.yaml │ │ ├── resources.yaml │ │ └── starlark-failure-fn.yaml │ ├── fn-success-with-stderr │ │ ├── .expected │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── starlark.yaml │ ├── fnconfig-ancestorfn-not-mutate-subpkg-config │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── fnconfig-cannot-refer-subpkgs │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── labelconfig.yaml │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── fnconfig-in-subdir │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ └── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-missing-name │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-multiple-config-one-file │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-not-relative │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-outside-package │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-pkgfn-refers-subdir │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── confs │ │ │ └── labelconfig.yaml │ │ └── resources.yaml │ ├── fnconfig-updated-in-render │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── app.yaml │ │ ├── label-input.yaml │ │ ├── namespace.yaml │ │ ├── package-context.yaml │ │ └── update-labels.yaml │ ├── fnconfig │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── fnresult-fn-failure │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── fnresult-fn-success │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── search-replace-conf.yaml │ ├── format-on-success │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── generator-absolute-path │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── starlark-httpbin.yaml │ ├── generator-subpkgs │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── fn-config.yaml │ │ │ └── resources.yaml │ │ ├── fn-config.yaml │ │ └── resources.yaml │ ├── generator │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── starlark-httpbin.yaml │ │ └── resources.yaml │ ├── image-pull-policy-always │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── setup.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── image-pull-policy-if-not-present │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── setup.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── image-pull-policy-never │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── invalid-configmap-fnconfig │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── invalid-inline-fnconfig │ │ └── Kptfile │ ├── invalid-kptfile │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── kptfile-unknown-fields │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── krm-check-exclude-kustomize │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── Kptfile │ │ ├── kustomization.yaml │ │ └── resources.yaml │ ├── krmignore │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── kubeval-failure │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── missing-fn-image │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── missing-fnconfig │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── labelconfig.yaml │ │ └── resources.yaml │ ├── missing-kptfile │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ └── resources.yaml │ ├── modify-legacy-path-annotation │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── deployment.yaml │ │ └── starlark-fn.yaml │ ├── modify-path-annotation │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── deployment.yaml │ │ └── starlark-fn.yaml │ ├── multiple-fnconfig │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── configmap.yaml │ │ └── resources.yaml │ ├── mutate-legacy-path-index │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── starlark-mutate-path-index.yaml │ │ └── x.yaml │ ├── mutate-path-index │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── starlark-mutate-path-index.yaml │ │ └── x.yaml │ ├── no-fnconfig │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── no-format-on-failure │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── no-op │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── no-pipeline-in-subpackage │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ ├── no-pipeline │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── no-resources │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── starlark-httpbin.yaml │ ├── non-krm-resource-no-pipeline │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── non-krm.yaml │ │ └── resources.yaml │ ├── non-krm-resource │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── non-krm.yaml │ │ └── resources.yaml │ ├── out-of-place-dir-exists-error │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-dir │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-fnchain-stdout-results │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-fnchain-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-fnchain-unwrap │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── out-of-place-unwrap │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── path-index-ancestor │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── starlark-httpbin-gen.yaml │ │ └── resources.yaml │ ├── path-index-current │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── starlark-httpbin-gen.yaml │ ├── path-index-descendent │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── resources.yaml │ │ └── starlark-httpbin-gen.yaml │ ├── path-index-duplicate │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── starlark-gen-duplicate-path.yaml │ ├── path-index-outofpackage │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── starlark-httpbin-gen.yaml │ ├── preserve-comments │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── preserve-order-null-values │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── resource-deletion │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── deployment_httpbin.yaml │ │ ├── resources.yaml │ │ └── starlark-httpbin.yaml │ ├── resource-has-pkgname-prefix │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── mysql │ │ │ ├── Kptfile │ │ │ └── mysql-deployment.yaml │ │ └── wordpress-deployment.yaml │ ├── selectors │ │ ├── basicpipeline │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── exclude │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ ├── generator │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── db │ │ │ │ ├── Kptfile │ │ │ │ ├── resources.yaml │ │ │ │ └── starlark-httpbin.yaml │ │ │ └── resources.yaml │ │ ├── selectors-with-exclude │ │ │ ├── .expected │ │ │ │ ├── config.yaml │ │ │ │ └── diff.patch │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ └── validate-subset │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── starlark-httpbin-val.yaml │ ├── short-image-path │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── structured-results-from-muiltiple-fns │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── subpkg-fn-failure │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── statefulset-filter.yaml │ │ ├── deployment_httpbin.yaml │ │ ├── resources.yaml │ │ └── starlark-httpbin.yaml │ ├── subpkg-has-invalid-kptfile │ │ ├── .expected │ │ │ └── config.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── statefulset-filter.yaml │ │ └── resources.yaml │ ├── subpkg-has-samename-subdir-empty-pipeline │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── pkg-a │ │ │ ├── Kptfile │ │ │ └── pkg-a │ │ │ └── resources.yaml │ ├── subpkg-has-samename-subdir │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── pkg-a │ │ │ ├── Kptfile │ │ │ └── pkg-a │ │ │ └── resources.yaml │ ├── subpkg-resource-deletion │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ ├── resources.yaml │ │ │ └── statefulset-filter.yaml │ │ ├── deployment_httpbin.yaml │ │ ├── resources.yaml │ │ └── starlark-httpbin.yaml │ ├── subpkgs-with-krmignore │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── .krmignore │ │ │ ├── Kptfile │ │ │ ├── non-krm.yaml │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── subpkgs │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ │ └── resources.yaml │ ├── success-stdout │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── validate-generated-resource │ │ ├── .expected │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ ├── starlark-httpbin-gen.yaml │ │ └── starlark-httpbin-val.yaml │ ├── validate-resource-failure │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── starlark-httpbin-val.yaml │ └── validator-mutates-resources │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml │ ├── fn-sink │ ├── out-of-place-dir-exists-error-sink │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ └── out-of-place-source-sink │ │ ├── .expected │ │ ├── config.yaml │ │ ├── diff.patch │ │ └── exec.sh │ │ ├── .krmignore │ │ └── resources.yaml │ ├── fn-source │ └── subpkgs-with-krmignore │ │ ├── .expected │ │ ├── config.yaml │ │ └── exec.sh │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── db │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── non-krm.yaml │ │ └── resources.yaml │ │ └── resources.yaml │ ├── live-apply │ ├── apply-depends-on │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── first.yaml │ │ │ ├── resourcegroup.yaml │ │ │ └── second.yaml │ ├── crd-and-cr │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── cr.yaml │ │ │ ├── crd.yaml │ │ │ └── resourcegroup.yaml │ ├── dry-run-with-install-rg │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── deployment.yaml │ │ │ └── resourcegroup.yaml │ ├── dry-run-without-rg │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── deployment.yaml │ │ │ └── resourcegroup.yaml │ ├── install-rg-on-apply │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── deployment.yaml │ │ │ └── resourcegroup.yaml │ ├── json-output │ │ ├── config.yaml │ │ ├── pre-apply │ │ │ ├── first.yaml │ │ │ ├── rg.yaml │ │ │ └── second.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ ├── cm.yaml │ │ │ ├── dep.yaml │ │ │ └── resourcegroup.yaml │ └── prune-depends-on │ │ ├── config.yaml │ │ ├── pre-apply │ │ ├── first.yaml │ │ ├── rg.yaml │ │ └── second.yaml │ │ └── resources │ │ ├── Kptfile │ │ ├── cm.yaml │ │ └── resourcegroup.yaml │ ├── live-plan │ ├── create │ │ ├── config.yaml │ │ └── resources │ │ │ ├── Kptfile │ │ │ └── cm.yaml │ └── prune │ │ ├── config.yaml │ │ ├── pre-apply │ │ ├── cm.yaml │ │ ├── dep.yaml │ │ └── rg.yaml │ │ └── resources │ │ ├── Kptfile │ │ └── cm.yaml │ └── porch │ ├── git-server.yaml │ ├── repo-register │ └── config.yaml │ ├── rpkg-clone │ └── config.yaml │ ├── rpkg-copy │ └── config.yaml │ ├── rpkg-get │ └── config.yaml │ ├── rpkg-init-deploy │ └── config.yaml │ ├── rpkg-init │ └── config.yaml │ ├── rpkg-lifecycle │ └── config.yaml │ ├── rpkg-push │ └── config.yaml │ └── rpkg-update │ └── config.yaml ├── firebase.json ├── firebase └── functions │ ├── .eslintrc.js │ ├── .gitignore │ ├── index.js │ └── package.json ├── go.mod ├── go.sum ├── governance.md ├── healthcheck ├── Makefile ├── api │ └── v1alpha1 │ │ ├── groupversion_info.go │ │ ├── healthcheck_types.go │ │ └── zz_generated.deepcopy.go ├── config │ └── crd │ │ └── config.healthcheck.kpt.dev_healthchecks.yaml ├── go.mod └── go.sum ├── internal ├── alpha │ └── printers │ │ └── table │ │ ├── collector.go │ │ └── printer.go ├── builtins │ ├── pkg_context.go │ ├── pkg_context_test.go │ └── testdata │ │ ├── pkg-with-existing-ctx │ │ ├── in.yaml │ │ └── out.yaml │ │ ├── pkg-with-nesting │ │ ├── in.yaml │ │ └── out.yaml │ │ └── pkg-wo-nesting │ │ ├── in.yaml │ │ └── out.yaml ├── cmdutil │ └── util.go ├── docs │ └── generated │ │ ├── alphadocs │ │ └── docs.go │ │ ├── fndocs │ │ └── docs.go │ │ ├── licensedocs │ │ └── docs.go │ │ ├── livedocs │ │ └── docs.go │ │ ├── overview │ │ └── docs.go │ │ ├── pkgdocs │ │ └── docs.go │ │ ├── repodocs │ │ └── docs.go │ │ ├── rpkgdocs │ │ └── docs.go │ │ ├── syncdocs │ │ └── docs.go │ │ └── wasmdocs │ │ └── docs.go ├── errors │ ├── errors.go │ ├── resolver │ │ ├── container.go │ │ ├── git.go │ │ ├── live.go │ │ ├── live_test.go │ │ ├── misc.go │ │ ├── pkg.go │ │ ├── pkg_test.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ └── update.go │ └── validate.go ├── fnruntime │ ├── container.go │ ├── container_test.go │ ├── exec.go │ ├── fnerrors.go │ ├── fnerrors_test.go │ ├── imagepullpolicy.go │ ├── jsglue.go │ ├── nodejs.go │ ├── runner.go │ ├── runner_test.go │ ├── utils.go │ ├── utils_test.go │ ├── wasm.go │ ├── wasmtime.go │ └── wasmtime_unsupported.go ├── gitutil │ ├── errors.go │ ├── gitutil.go │ └── gitutil_test.go ├── hook │ └── executor.go ├── options │ └── get.go ├── pkg │ ├── pkg.go │ ├── pkg_test.go │ └── testing │ │ └── helpers.go ├── testutil │ ├── pkgbuilder │ │ ├── builder.go │ │ ├── builder_test.go │ │ └── fns.go │ ├── setup_manager.go │ ├── testdata │ │ ├── dataset1 │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ └── wordpress-statefulset.resource.yaml │ │ ├── dataset2 │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ └── wordpress-statefulset.resource.yaml │ │ ├── dataset3 │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ └── wordpress-statefulset.resource.yaml │ │ ├── dataset4 │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ └── wordpress-statefulset.resource.yaml │ │ ├── dataset5 │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ ├── somefunction.py │ │ │ └── wordpress │ │ │ │ ├── wordpress-description.txt │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ ├── wordpress-statefulset.resource.yaml │ │ │ │ └── wordpress-subdir │ │ │ │ └── wordpress-subdir-description.txt │ │ ├── dataset6 │ │ │ ├── java │ │ │ │ ├── config-symlink │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql-symlink │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ ├── somefunction.py │ │ │ └── wordpress │ │ │ │ ├── wordpress-description.txt │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ ├── wordpress-statefulset.resource.yaml │ │ │ │ └── wordpress-subdir │ │ │ │ └── wordpress-subdir-description.txt │ │ ├── datasetmerged │ │ │ ├── java │ │ │ │ ├── java-configmap.resource.yaml │ │ │ │ ├── java-deployment.resource.yaml │ │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ │ ├── mysql-configmap.resource.yaml │ │ │ │ ├── mysql-service.resource.yaml │ │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ │ ├── wordpress-service.resource.yaml │ │ │ │ └── wordpress-statefulset.resource.yaml │ │ └── updateMergeConflict │ │ │ ├── Kptfile │ │ │ ├── java │ │ │ ├── java-configmap.resource.yaml │ │ │ ├── java-deployment.resource.yaml │ │ │ └── java-service.resource.yaml │ │ │ ├── mysql │ │ │ ├── mysql-configmap.resource.yaml │ │ │ ├── mysql-service.resource.yaml │ │ │ └── mysql-statefulset.resource.yaml │ │ │ └── wordpress │ │ │ ├── wordpress-service.resource.yaml │ │ │ └── wordpress-statefulset.resource.yaml │ └── testutil.go ├── types │ └── types.go └── util │ ├── addmergecomment │ ├── addmergecomment.go │ └── addmergecomment_test.go │ ├── argutil │ ├── argutil.go │ └── argutil_test.go │ ├── attribution │ ├── attribution.go │ └── attribution_test.go │ ├── cfgflags │ ├── useragent.go │ └── useragent_test.go │ ├── cmdutil │ ├── cmdutil.go │ └── cmdutil_test.go │ ├── diff │ ├── diff.go │ ├── diff_test.go │ ├── pkgdiff.go │ └── pkgdiff_test.go │ ├── fetch │ ├── fetch.go │ └── fetch_test.go │ ├── function │ ├── catalogfn.go │ └── matcher.go │ ├── get │ ├── example_test.go │ ├── get.go │ └── get_test.go │ ├── git │ └── git.go │ ├── httputil │ └── httputil.go │ ├── man │ ├── man.go │ └── man_test.go │ ├── merge │ ├── merge3.go │ └── merge3_test.go │ ├── parse │ ├── parse.go │ └── parse_test.go │ ├── pathutil │ └── pathutil.go │ ├── pkgutil │ ├── pkgutil.go │ └── pkgutil_test.go │ ├── porch │ ├── approval.go │ ├── client.go │ ├── const.go │ ├── doc.go │ ├── function.go │ └── name.go │ ├── printerutil │ └── printerutil.go │ ├── render │ ├── executor.go │ └── executor_test.go │ ├── stack │ └── stack.go │ ├── strings │ ├── strings.go │ └── strings_test.go │ └── update │ ├── common.go │ ├── fastforward.go │ ├── fastforward_test.go │ ├── replace.go │ ├── replace_test.go │ ├── resource-merge.go │ ├── resource-merge_test.go │ ├── update.go │ └── update_test.go ├── licenses ├── kpt.txt └── licenses.go ├── logo ├── KptLogoLarge.png └── KptLogoSmall.png ├── main.go ├── mdtogo ├── cmddocs │ ├── cmddocs.go │ └── cmddocs_test.go ├── common │ ├── common.go │ └── common_test.go └── main.go ├── package-examples ├── _template │ └── README.md ├── cert-manager-basic │ ├── Kptfile │ ├── README.md │ ├── cainjector │ │ ├── clusterrole-cert-manager-cainjector.yaml │ │ ├── clusterrolebinding-cert-manager-cainjector.yaml │ │ ├── deployment-cert-manager-cainjector.yaml │ │ ├── role-cert-manager-cainjector-leaderelection.yaml │ │ ├── rolebinding-cert-manager-cainjector-leaderelection.yaml │ │ └── serviceaccount-cert-manager-cainjector.yaml │ ├── cert-manager │ │ ├── clusterrole-cert-manager-controller-approve-cert-manager-io.yaml │ │ ├── clusterrole-cert-manager-controller-certificates.yaml │ │ ├── clusterrole-cert-manager-controller-certificatesigningrequests.yaml │ │ ├── clusterrole-cert-manager-controller-challenges.yaml │ │ ├── clusterrole-cert-manager-controller-clusterissuers.yaml │ │ ├── clusterrole-cert-manager-controller-ingress-shim.yaml │ │ ├── clusterrole-cert-manager-controller-issuers.yaml │ │ ├── clusterrole-cert-manager-controller-orders.yaml │ │ ├── clusterrole-cert-manager-edit.yaml │ │ ├── clusterrole-cert-manager-view.yaml │ │ ├── clusterrolebinding-cert-manager-controller-approve-cert-manager-io.yaml │ │ ├── clusterrolebinding-cert-manager-controller-certificates.yaml │ │ ├── clusterrolebinding-cert-manager-controller-certificatesigningrequests.yaml │ │ ├── clusterrolebinding-cert-manager-controller-challenges.yaml │ │ ├── clusterrolebinding-cert-manager-controller-clusterissuers.yaml │ │ ├── clusterrolebinding-cert-manager-controller-ingress-shim.yaml │ │ ├── clusterrolebinding-cert-manager-controller-issuers.yaml │ │ ├── clusterrolebinding-cert-manager-controller-orders.yaml │ │ ├── deployment-cert-manager.yaml │ │ ├── namespace-cert-manager.yaml │ │ ├── role-cert-manager-leaderelection.yaml │ │ ├── rolebinding-cert-manager-leaderelection.yaml │ │ ├── service-cert-manager.yaml │ │ └── serviceaccount-cert-manager.yaml │ ├── crds │ │ ├── customresourcedefinition-certificaterequests-cert-manager-io.yaml │ │ ├── customresourcedefinition-certificates-cert-manager-io.yaml │ │ ├── customresourcedefinition-challenges-acme-cert-manager-io.yaml │ │ ├── customresourcedefinition-clusterissuers-cert-manager-io.yaml │ │ ├── customresourcedefinition-issuers-cert-manager-io.yaml │ │ └── customresourcedefinition-orders-acme-cert-manager-io.yaml │ ├── package-context.yaml │ └── webhook │ │ ├── clusterrole-cert-manager-webhook-subjectaccessreviews.yaml │ │ ├── clusterrolebinding-cert-manager-webhook-subjectaccessreviews.yaml │ │ ├── configmap-cert-manager-webhook.yaml │ │ ├── deployment-cert-manager-webhook.yaml │ │ ├── mutatingwebhookconfiguration-cert-manager-webhook.yaml │ │ ├── role-cert-manager-webhook-dynamic-serving.yaml │ │ ├── rolebinding-cert-manager-webhook-dynamic-serving.yaml │ │ ├── service-cert-manager-webhook.yaml │ │ ├── serviceaccount-cert-manager-webhook.yaml │ │ └── validatingwebhookconfiguration-cert-manager-webhook.yaml ├── ghost │ ├── Kptfile │ ├── README.md │ ├── ghost-app │ │ ├── Kptfile │ │ ├── deployment-ghost.yaml │ │ ├── fn-config-update-host.yaml │ │ ├── fn-config-validate-host.yaml │ │ ├── ingress-ghost.yaml │ │ ├── package-context.yaml │ │ ├── persistentvolumeclaim-ghost.yaml │ │ ├── service-ghost.yaml │ │ └── setlabels.yaml │ ├── mariadb │ │ ├── Kptfile │ │ ├── configmap-mariadb.yaml │ │ ├── package-context.yaml │ │ ├── service-mariadb.yaml │ │ ├── serviceaccount-mariadb.yaml │ │ ├── setlabels.yaml │ │ └── statefulset-mariadb.yaml │ └── package-context.yaml ├── ingress-nginx │ ├── Kptfile │ ├── README.md │ ├── admission-webhook │ │ ├── clusterrole-ingress-nginx-admission.yaml │ │ ├── clusterrolebinding-ingress-nginx-admission.yaml │ │ ├── job-ingress-nginx-admission-create.yaml │ │ ├── job-ingress-nginx-admission-patch.yaml │ │ ├── role-ingress-nginx-admission.yaml │ │ ├── rolebinding-ingress-nginx-admission.yaml │ │ ├── serviceaccount-ingress-nginx-admission.yaml │ │ └── validatingwebhookconfiguration-ingress-nginx-admission.yaml │ ├── controller │ │ ├── clusterrole-ingress-nginx.yaml │ │ ├── clusterrolebinding-ingress-nginx.yaml │ │ ├── configmap-ingress-nginx-controller.yaml │ │ ├── deployment-ingress-nginx-controller.yaml │ │ ├── ingressclass-nginx.yaml │ │ ├── namespace-ingress-nginx.yaml │ │ ├── role-ingress-nginx.yaml │ │ ├── rolebinding-ingress-nginx.yaml │ │ ├── service-ingress-nginx-controller-admission.yaml │ │ ├── service-ingress-nginx-controller.yaml │ │ └── serviceaccount-ingress-nginx.yaml │ └── package-context.yaml ├── kustomize │ ├── Kptfile │ ├── README.md │ ├── bases │ │ └── nginx │ │ │ ├── Kptfile │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ └── svc.yaml │ └── overlays │ │ ├── dev │ │ ├── Kptfile │ │ ├── kustomization.yaml │ │ └── pass-patch.yaml │ │ └── prod │ │ ├── Kptfile │ │ ├── kustomization.yaml │ │ └── pass-patch.yaml ├── nginx │ ├── Kptfile │ ├── deployment.yaml │ └── svc.yaml ├── tenant │ ├── Kptfile │ ├── README.md │ ├── namespace.yaml │ ├── ns-invariant.yaml │ ├── quota.yaml │ ├── role-binding.yaml │ └── service-account.yaml ├── wordpress-with-dependencies │ ├── Kptfile │ ├── README.md │ ├── deployment │ │ └── deployment.yaml │ ├── mysql │ │ ├── Kptfile │ │ └── statefulset.yaml │ └── service.yaml └── wordpress │ ├── Kptfile │ ├── README.md │ ├── deployment │ ├── deployment.yaml │ └── volume.yaml │ ├── mysql │ ├── Kptfile │ └── deployment.yaml │ └── service.yaml ├── pkg ├── api │ ├── fnresult │ │ └── v1 │ │ │ └── types.go │ ├── kptfile │ │ └── v1 │ │ │ ├── types.go │ │ │ ├── validation.go │ │ │ ├── validation_test.go │ │ │ └── zz_generated.deepcopy.go │ └── resourcegroup │ │ └── v1alpha1 │ │ └── types.go ├── debug │ └── formatter.go ├── fn │ ├── eval.go │ ├── eval_test.go │ ├── multiruntime.go │ └── render.go ├── kptfile │ └── kptfileutil │ │ ├── util.go │ │ └── util_test.go ├── kptpkg │ └── init.go ├── live │ ├── apply-crd-task.go │ ├── example-resource-group-crd-for-v1.yaml │ ├── example-resource-group-crd.yaml │ ├── example-resource-group.yaml │ ├── flatten.go │ ├── flatten_test.go │ ├── helpers_test.go │ ├── inventory-client-factory.go │ ├── inventoryrg.go │ ├── inventoryrg_test.go │ ├── load.go │ ├── load_test.go │ ├── planner │ │ ├── cluster.go │ │ └── cluster_test.go │ ├── rgpath.go │ ├── rgpath_test.go │ ├── rgstream.go │ └── rgstream_test.go ├── oci │ ├── cache.go │ └── storage.go ├── printer │ ├── fake │ │ └── fake.go │ └── printer.go ├── status │ ├── configconnector.go │ ├── configconnector_test.go │ ├── poller.go │ ├── rollout.go │ ├── rollout_test.go │ └── testing.go ├── test │ ├── live │ │ ├── config.go │ │ ├── kind.go │ │ └── runner.go │ ├── porch │ │ ├── cluster.go │ │ └── config.go │ └── runner │ │ ├── README.md │ │ ├── config.go │ │ ├── runner.go │ │ ├── sanitize_test.go │ │ └── util.go └── wasm │ └── client.go ├── porch └── README.md ├── release ├── README.md ├── formula │ ├── README.md │ ├── main.go │ └── main_test.go ├── images │ ├── Dockerfile │ └── Dockerfile-gcloud └── tag │ └── goreleaser.yaml ├── rollouts ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── PROJECT ├── README.md ├── api │ └── v1alpha1 │ │ ├── groupversion_info.go │ │ ├── progressiverolloutstrategy_types.go │ │ ├── remotesync_types.go │ │ ├── rollout_types.go │ │ └── zz_generated.deepcopy.go ├── config │ ├── crd │ │ ├── bases │ │ │ ├── gitops.kpt.dev_progressiverolloutstrategies.yaml │ │ │ ├── gitops.kpt.dev_remotesyncs.yaml │ │ │ └── gitops.kpt.dev_rollouts.yaml │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ └── patches │ │ │ ├── cainjection_in_progressiverolloutstrategies.yaml │ │ │ ├── cainjection_in_remoterootsyncs.yaml │ │ │ ├── cainjection_in_rollouts.yaml │ │ │ ├── webhook_in_progressiverolloutstrategies.yaml │ │ │ ├── webhook_in_remoterootsyncs.yaml │ │ │ └── webhook_in_rollouts.yaml │ ├── default │ │ ├── kustomization.yaml │ │ ├── manager_auth_proxy_patch.yaml │ │ └── manager_config_patch.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── prometheus │ │ ├── kustomization.yaml │ │ └── monitor.yaml │ ├── rbac │ │ ├── auth_proxy_client_clusterrole.yaml │ │ ├── auth_proxy_role.yaml │ │ ├── auth_proxy_role_binding.yaml │ │ ├── auth_proxy_service.yaml │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── progressiverolloutstrategy_editor_role.yaml │ │ ├── progressiverolloutstrategy_viewer_role.yaml │ │ ├── remoterootsync_editor_role.yaml │ │ ├── remoterootsync_viewer_role.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── rollout_editor_role.yaml │ │ ├── rollout_viewer_role.yaml │ │ └── service_account.yaml │ └── samples │ │ ├── container_cluster_catalina.yaml │ │ ├── container_cluster_kauai.yaml │ │ ├── container_cluster_lanai.yaml │ │ ├── container_cluster_maui.yaml │ │ ├── container_cluster_oahu.yaml │ │ ├── gitops_rollout_cert_manager.yaml │ │ ├── gitops_rollout_cert_manager_progressive.yaml │ │ ├── gitops_rollout_deletionpolicy.yaml │ │ ├── gitops_rollout_kpt_samples.yaml │ │ ├── gitops_rollout_oahu.yaml │ │ ├── gitops_rollout_repo_selector.yaml │ │ ├── gitops_v1alpha1_progressiverolloutstrategy.yaml │ │ ├── gitops_v1alpha1_remoterootsync.yaml │ │ └── test-ns-rollout.yaml ├── controllers │ ├── fakeclient.go │ ├── progressiverolloutstrategy_controller.go │ ├── remoterootsync_controller_test.go │ ├── remotesync_controller.go │ ├── rollout_controller.go │ ├── rollout_controller_test.go │ ├── status.go │ ├── suite_test.go │ └── watcher.go ├── docs │ ├── development.md │ ├── releasing.md │ └── running-locally.md ├── e2e │ └── clusters │ │ ├── clusters.go │ │ └── kind.go ├── go.mod ├── go.sum ├── hack │ └── boilerplate.go.txt ├── main.go ├── manifests │ ├── Kptfile │ ├── README.md │ ├── controller │ │ └── controller.yaml │ ├── crds │ │ ├── containercluster.yaml │ │ └── crds.yaml │ └── package-context.yaml ├── pkg │ ├── clusterstore │ │ ├── clusterstore.go │ │ ├── containerclusterstore.go │ │ ├── gcpfleetclusterstore.go │ │ ├── kindclusterstore.go │ │ └── tokens.go │ ├── packageclustermatcher │ │ └── packageclustermatcher.go │ ├── packagediscovery │ │ ├── github.go │ │ ├── github_test.go │ │ ├── gitlab.go │ │ ├── gitlab_test.go │ │ ├── oci.go │ │ ├── packagediscovery.go │ │ └── packagediscovery_test.go │ └── tokenexchange │ │ ├── gcptokensource │ │ └── gcptokensource.go │ │ ├── ksaimpersonationtokensource │ │ └── ksaimpersonation.go │ │ ├── ksatokensource │ │ └── ksatokensource.go │ │ └── membership │ │ └── membership.go ├── rolloutsclient │ └── client.go └── scripts │ ├── create-manifests.sh │ ├── run-in-kind.sh │ ├── run-local.sh │ └── run-target-in-kind.sh ├── run └── run.go ├── scripts ├── README.md ├── check-site.sh ├── create-licenses.sh ├── docs │ └── create-licenses │ │ └── README.md ├── generate-schema.sh ├── generate-sitemap.sh ├── generate_site_sidebar │ ├── generate_site_sidebar.go │ └── sidebar_template.md.tmpl ├── lib │ ├── etcd.sh │ ├── golang.sh │ ├── init.sh │ ├── logging.sh │ ├── util.sh │ └── version.sh ├── run-site.sh ├── schema-header.json ├── update-license.sh └── verifyExamples.sh ├── site ├── .babelrc ├── .dockerignore ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── README.md ├── api-reference │ ├── README.md │ └── kptfile │ │ └── README.md ├── book │ ├── 01-getting-started │ │ ├── 00.md │ │ ├── 01-system-requirements.md │ │ └── 02-quickstart.md │ ├── 02-concepts │ │ ├── 00.md │ │ ├── 01-packages.md │ │ ├── 02-workflows.md │ │ └── 03-functions.md │ ├── 03-packages │ │ ├── 00.md │ │ ├── 01-getting-a-package.md │ │ ├── 02-exploring-a-package.md │ │ ├── 03-editing-a-package.md │ │ ├── 04-rendering-a-package.md │ │ ├── 05-updating-a-package.md │ │ ├── 06-creating-a-package.md │ │ ├── 07-composing-a-package.md │ │ └── 08-publishing-a-package.md │ ├── 04-using-functions │ │ ├── 00.md │ │ ├── 01-declarative-function-execution.md │ │ ├── 02-imperative-function-execution.md │ │ └── 03-function-results.md │ ├── 05-developing-functions │ │ ├── 00.md │ │ ├── 01-functions-specification.md │ │ ├── 02-developing-in-Go.md │ │ ├── 03-developing-in-Typescript.md │ │ └── 04-developing-in-Starlark.md │ ├── 06-deploying-packages │ │ ├── 00.md │ │ ├── 01-initializing-a-package-for-apply.md │ │ ├── 02-applying-a-package.md │ │ └── 03-handling-dependencies.md │ ├── 07-effective-customizations │ │ ├── 00.md │ │ ├── 01-single-value-replacement.md │ │ ├── 02-limiting-package-changes.md │ │ └── 03-generation.md │ ├── 08-package-orchestration │ │ ├── 00.md │ │ ├── 01-system-requirements.md │ │ ├── 02-quickstart.md │ │ ├── 03-registering-a-repository.md │ │ ├── 04-package-authoring.md │ │ └── 05-package-lifecycle.md │ └── README.md ├── contact │ └── README.md ├── coverpage.md ├── faq │ └── README.md ├── gitops │ ├── README.md │ └── configsync │ │ └── README.md ├── guides │ ├── README.md │ ├── namespace-provisioning-cli.md │ ├── namespace-provisioning-ui.md │ ├── porch-installation.md │ ├── porch-ui-installation.md │ ├── porch-user-guide.md │ ├── rationale.md │ ├── tenant-onboarding.md │ ├── value-propagation.md │ └── variant-constructor-pattern.md ├── index.html ├── installation │ ├── README.md │ ├── kpt-cli.md │ └── migration.md ├── markdownlint.json ├── package-lock.json ├── package.json ├── reference │ ├── README.md │ ├── annotations │ │ ├── README.md │ │ ├── apply-time-mutation │ │ │ └── README.md │ │ ├── depends-on │ │ │ └── README.md │ │ └── local-config │ │ │ └── README.md │ ├── cli │ │ ├── README.md │ │ ├── TEMPLATE.md │ │ ├── alpha │ │ │ ├── README.md │ │ │ ├── license │ │ │ │ ├── README.md │ │ │ │ └── info │ │ │ │ │ └── README.md │ │ │ ├── live │ │ │ │ ├── README.md │ │ │ │ └── plan │ │ │ │ │ └── README.md │ │ │ ├── repo │ │ │ │ ├── README.md │ │ │ │ ├── get │ │ │ │ │ └── README.md │ │ │ │ ├── reg │ │ │ │ │ └── README.md │ │ │ │ └── unreg │ │ │ │ │ └── README.md │ │ │ ├── rpkg │ │ │ │ ├── README.md │ │ │ │ ├── approve │ │ │ │ │ └── README.md │ │ │ │ ├── clone │ │ │ │ │ └── README.md │ │ │ │ ├── copy │ │ │ │ │ └── README.md │ │ │ │ ├── del │ │ │ │ │ └── README.md │ │ │ │ ├── get │ │ │ │ │ └── README.md │ │ │ │ ├── init │ │ │ │ │ └── README.md │ │ │ │ ├── propose-delete │ │ │ │ │ └── README.md │ │ │ │ ├── propose │ │ │ │ │ └── README.md │ │ │ │ ├── pull │ │ │ │ │ └── README.md │ │ │ │ ├── push │ │ │ │ │ └── README.md │ │ │ │ ├── reject │ │ │ │ │ └── README.md │ │ │ │ └── update │ │ │ │ │ └── README.md │ │ │ ├── sync │ │ │ │ ├── README.md │ │ │ │ ├── create │ │ │ │ │ └── README.md │ │ │ │ ├── delete │ │ │ │ │ └── README.md │ │ │ │ └── get │ │ │ │ │ └── README.md │ │ │ └── wasm │ │ │ │ ├── README.md │ │ │ │ ├── pull │ │ │ │ └── README.md │ │ │ │ └── push │ │ │ │ └── README.md │ │ ├── fn │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── README.md │ │ │ ├── eval │ │ │ │ └── README.md │ │ │ ├── export │ │ │ │ └── README.md │ │ │ ├── render │ │ │ │ └── README.md │ │ │ ├── sink │ │ │ │ └── README.md │ │ │ └── source │ │ │ │ └── README.md │ │ ├── live │ │ │ ├── README.md │ │ │ ├── apply │ │ │ │ └── README.md │ │ │ ├── destroy │ │ │ │ └── README.md │ │ │ ├── init │ │ │ │ └── README.md │ │ │ ├── install-resource-group │ │ │ │ └── README.md │ │ │ ├── migrate │ │ │ │ └── README.md │ │ │ └── status │ │ │ │ └── README.md │ │ └── pkg │ │ │ ├── README.md │ │ │ ├── cat │ │ │ └── README.md │ │ │ ├── diff │ │ │ └── README.md │ │ │ ├── get │ │ │ └── README.md │ │ │ ├── init │ │ │ └── README.md │ │ │ ├── sidebar.md │ │ │ ├── tree │ │ │ └── README.md │ │ │ └── update │ │ │ └── README.md │ └── schema │ │ ├── README.md │ │ ├── config-connector-status-convention │ │ └── README.md │ │ ├── crd-status-convention │ │ └── README.md │ │ ├── function-result-list │ │ └── README.md │ │ ├── kptfile │ │ ├── README.md │ │ ├── kptfile.json │ │ └── kptfile.yaml │ │ ├── plan │ │ ├── README.md │ │ └── plan.yaml │ │ └── resource-list │ │ └── README.md ├── sdk │ └── ts-guide.md ├── sidebar.md ├── site_check.conf ├── sitemap.xml └── static │ ├── casts │ └── make-gif.sh │ ├── css │ └── site.css │ ├── images │ ├── KptLogoSmall.png │ ├── fn-export │ │ ├── circleci-result.png │ │ ├── github-actions-result.png │ │ ├── gitlab-ci-result.png │ │ ├── jenkins-result.png │ │ └── tekton-result.png │ ├── func-target.svg │ ├── func.svg │ ├── lifecycle │ │ ├── flow1.svg │ │ ├── flow2.svg │ │ ├── flow3.svg │ │ ├── flow4.svg │ │ └── flow5.svg │ ├── logo.png │ ├── logo.svg │ ├── package-orchestration.svg │ ├── pipeline.svg │ ├── set-command.svg │ ├── set-model.svg │ ├── status.svg │ ├── substitute-command.svg │ ├── substitute-model.svg │ ├── tenant-onboarding.svg │ └── variant-constructor-pkg-repo-diagram.png │ ├── js │ ├── config.js │ └── plugins │ │ ├── book_page_title.js │ │ ├── book_page_title.test.js │ │ ├── copy_buttons.js │ │ ├── copy_buttons.test.js │ │ ├── github_widget.js │ │ ├── github_widget.test.js │ │ └── plugins.js │ └── openapi │ └── kptfile.yaml ├── thirdparty ├── README.md ├── cmdconfig │ └── commands │ │ ├── cmdeval │ │ ├── cmdeval.go │ │ └── cmdeval_test.go │ │ ├── cmdsink │ │ ├── cmdsink.go │ │ └── cmdsink_test.go │ │ ├── cmdsource │ │ ├── cmdsource.go │ │ └── cmdsource_test.go │ │ ├── cmdtree │ │ ├── cmdtree.go │ │ ├── cmdtree_test.go │ │ └── tree.go │ │ └── runner │ │ ├── runner.go │ │ └── runner_test.go └── kyaml │ └── runfn │ ├── runfn.go │ ├── runfn_test.go │ └── test │ └── testdata │ └── java │ ├── java-configmap.resource.yaml │ ├── java-deployment.resource.yaml │ └── java-service.resource.yaml └── tools └── licensescan ├── README.md ├── go.mod ├── go.sum ├── licensedb_test.go ├── main.go ├── modules ├── bitbucket.org │ └── creachadair │ │ └── stringset │ │ └── v0.0.8.yaml ├── cloud.google.com │ └── go │ │ ├── auth │ │ ├── oauth2adapt │ │ │ └── v0.2.2.yaml │ │ └── v0.3.0.yaml │ │ ├── bigtable │ │ ├── v1.1.0.yaml │ │ ├── v1.16.0.yaml │ │ └── v1.19.0.yaml │ │ ├── compute │ │ ├── metadata │ │ │ ├── v0.2.1.yaml │ │ │ ├── v0.2.3.yaml │ │ │ └── v0.3.0.yaml │ │ ├── v1.3.0.yaml │ │ └── v1.7.0.yaml │ │ ├── iam │ │ ├── v0.3.0.yaml │ │ ├── v1.1.1.yaml │ │ └── v1.1.7.yaml │ │ ├── longrunning │ │ ├── v0.5.1.yaml │ │ └── v0.5.6.yaml │ │ ├── storage │ │ ├── v1.0.0.yaml │ │ └── v1.6.0.yaml │ │ ├── v0.102.1.yaml │ │ ├── v0.110.4.yaml │ │ ├── v0.112.2.yaml │ │ ├── v0.50.0.yaml │ │ └── v0.54.0.yaml ├── cnrm.googlesource.com │ └── cnrm │ │ └── (devel).yaml ├── contrib.go.opencensus.io │ └── exporter │ │ └── prometheus │ │ └── v0.1.0.yaml ├── github.com │ ├── Azure │ │ └── go-autorest │ │ │ ├── autorest │ │ │ ├── adal │ │ │ │ ├── v0.9.13.yaml │ │ │ │ ├── v0.9.16.yaml │ │ │ │ └── v0.9.20.yaml │ │ │ ├── date │ │ │ │ └── v0.3.0.yaml │ │ │ ├── v0.11.18.yaml │ │ │ ├── v0.11.21.yaml │ │ │ └── v0.11.27.yaml │ │ │ ├── logger │ │ │ └── v0.2.1.yaml │ │ │ └── tracing │ │ │ └── v0.6.0.yaml │ ├── BurntSushi │ │ └── toml │ │ │ └── v0.3.1.yaml │ ├── GoogleCloudPlatform │ │ └── declarative-resource-client-library │ │ │ ├── v1.26.1.yaml │ │ │ └── v1.62.0.yaml │ ├── GoogleContainerTools │ │ ├── kpt-functions-sdk │ │ │ └── go │ │ │ │ └── fn │ │ │ │ └── v0.0.0-20220506190241-f85503febd54.yaml │ │ └── kpt │ │ │ ├── (devel).yaml │ │ │ ├── porch │ │ │ └── api │ │ │ │ ├── v0.0.0-20220707151439-cb4c4e496c92.yaml │ │ │ │ ├── v0.0.0-20220821193112-4792e5fa18ee.yaml │ │ │ │ ├── v0.0.0-20221028161857-aa271f292cc0.yaml │ │ │ │ └── v0.0.0-20230121152246-dc44dbd18a33.yaml │ │ │ ├── rollouts │ │ │ └── v0.0.0-20230209223911-c6c49d0a0636.yaml │ │ │ ├── v1.0.0-beta.23.0.20221117142901-c67b11f2e138.yaml │ │ │ └── v1.0.0-beta.24.yaml │ ├── MakeNowJust │ │ └── heredoc │ │ │ ├── v0.0.0-20170808103936-bb23615498cd.yaml │ │ │ └── v1.0.0.yaml │ ├── Masterminds │ │ ├── goutils │ │ │ └── v1.1.0.yaml │ │ ├── semver │ │ │ └── v3 │ │ │ │ └── v3.1.0.yaml │ │ └── sprig │ │ │ └── v3 │ │ │ └── v3.1.0.yaml │ ├── PuerkitoBio │ │ ├── purell │ │ │ └── v1.1.1.yaml │ │ └── urlesc │ │ │ └── v0.0.0-20170810143723-de5bf2ad4578.yaml │ ├── VividCortex │ │ └── ewma │ │ │ └── v1.1.1.yaml │ ├── agext │ │ └── levenshtein │ │ │ ├── v1.2.2.yaml │ │ │ └── v1.2.3.yaml │ ├── apparentlymart │ │ ├── go-cidr │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.1.0.yaml │ │ └── go-textseg │ │ │ ├── v1.0.0.yaml │ │ │ ├── v12 │ │ │ └── v12.0.0.yaml │ │ │ ├── v13 │ │ │ └── v13.0.0.yaml │ │ │ └── v15 │ │ │ └── v15.0.0.yaml │ ├── armon │ │ └── go-radix │ │ │ └── v1.0.0.yaml │ ├── asaskevich │ │ └── govalidator │ │ │ ├── v0.0.0-20190424111038-f61b66f89f4a.yaml │ │ │ └── v0.0.0-20230301143203-a9d515a09cc2.yaml │ ├── aws │ │ └── aws-sdk-go │ │ │ ├── v1.25.3.yaml │ │ │ └── v1.44.180.yaml │ ├── beorn7 │ │ └── perks │ │ │ └── v1.0.1.yaml │ ├── bgentry │ │ ├── go-netrc │ │ │ └── v0.0.0-20140422174119-9fd32a8b3d3d.yaml │ │ └── speakeasy │ │ │ └── v0.1.0.yaml │ ├── blang │ │ └── semver │ │ │ └── v4 │ │ │ └── v4.0.0.yaml │ ├── bytecodealliance │ │ └── wasmtime-go │ │ │ └── v0.39.0.yaml │ ├── cenkalti │ │ └── backoff │ │ │ └── v2.2.1+incompatible.yaml │ ├── census-instrumentation │ │ └── opencensus-proto │ │ │ ├── v0.2.1.yaml │ │ │ └── v0.4.1.yaml │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── v2.1.2.yaml │ │ │ └── v2.2.0.yaml │ ├── chai2010 │ │ └── gettext-go │ │ │ ├── v0.0.0-20160711120539-c6fed771bfd5.yaml │ │ │ └── v1.0.2.yaml │ ├── cheggaaa │ │ └── pb │ │ │ └── v3 │ │ │ └── v3.0.4.yaml │ ├── cncf │ │ ├── udpa │ │ │ └── go │ │ │ │ └── v0.0.0-20200313221541-5f7e5dd04533.yaml │ │ └── xds │ │ │ └── go │ │ │ └── v0.0.0-20231128003011-0fa0005c9caa.yaml │ ├── containerd │ │ └── stargz-snapshotter │ │ │ └── estargz │ │ │ ├── v0.12.0.yaml │ │ │ └── v0.14.3.yaml │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── v2 │ │ │ ├── v2.0.0.yaml │ │ │ ├── v2.0.1.yaml │ │ │ └── v2.0.2.yaml │ ├── cyphar │ │ └── filepath-securejoin │ │ │ └── v0.2.2.yaml │ ├── davecgh │ │ └── go-spew │ │ │ └── v1.1.1.yaml │ ├── docker │ │ ├── cli │ │ │ ├── v20.10.17+incompatible.yaml │ │ │ └── v23.0.1+incompatible.yaml │ │ ├── distribution │ │ │ ├── v2.7.1+incompatible.yaml │ │ │ ├── v2.8.1+incompatible.yaml │ │ │ └── v2.8.2+incompatible.yaml │ │ ├── docker-credential-helpers │ │ │ ├── v0.6.4.yaml │ │ │ └── v0.7.0.yaml │ │ └── docker │ │ │ ├── v20.10.17+incompatible.yaml │ │ │ ├── v23.0.6+incompatible.yaml │ │ │ ├── v24.0.2+incompatible.yaml │ │ │ ├── v24.0.7+incompatible.yaml │ │ │ └── v27.1.2+incompatible.yaml │ ├── dsnet │ │ └── compress │ │ │ └── v0.0.1.yaml │ ├── emicklei │ │ └── go-restful │ │ │ ├── v2.16.0+incompatible.yaml │ │ │ ├── v2.9.5+incompatible.yaml │ │ │ └── v3 │ │ │ ├── v3.10.2.yaml │ │ │ ├── v3.11.0.yaml │ │ │ ├── v3.8.0.yaml │ │ │ └── v3.9.0.yaml │ ├── envoyproxy │ │ ├── go-control-plane │ │ │ ├── v0.12.0.yaml │ │ │ └── v0.9.5-0.20200326174812-e8bd2869ff56.yaml │ │ └── protoc-gen-validate │ │ │ ├── v0.1.0.yaml │ │ │ └── v1.0.4.yaml │ ├── evanphx │ │ └── json-patch │ │ │ ├── v4.12.0+incompatible.yaml │ │ │ ├── v4.5.0+incompatible.yaml │ │ │ ├── v4.9.0+incompatible.yaml │ │ │ ├── v5.6.0+incompatible.yaml │ │ │ └── v5 │ │ │ └── v5.6.0.yaml │ ├── exponent-io │ │ └── jsonpath │ │ │ └── v0.0.0-20151013193312-d6023ce2651d.yaml │ ├── fatih │ │ ├── camelcase │ │ │ └── v1.0.0.yaml │ │ └── color │ │ │ ├── v1.13.0.yaml │ │ │ ├── v1.15.0.yaml │ │ │ └── v1.7.0.yaml │ ├── felixge │ │ └── httpsnoop │ │ │ └── v1.0.4.yaml │ ├── form3tech-oss │ │ └── jwt-go │ │ │ └── v3.2.3+incompatible.yaml │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── v1.4.7.yaml │ │ │ └── v1.6.0.yaml │ ├── fvbommel │ │ └── sortorder │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.1.0.yaml │ ├── gammazero │ │ ├── deque │ │ │ └── v0.0.0-20190521012701-46e4ffb7a622.yaml │ │ └── workerpool │ │ │ └── v0.0.0-20190608213748-0ed5e40ec55e.yaml │ ├── ghodss │ │ └── yaml │ │ │ └── v1.0.0.yaml │ ├── go-errors │ │ └── errors │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.4.2.yaml │ ├── go-logr │ │ ├── logr │ │ │ ├── v0.2.0.yaml │ │ │ ├── v1.2.0.yaml │ │ │ ├── v1.2.3.yaml │ │ │ ├── v1.2.4.yaml │ │ │ └── v1.4.1.yaml │ │ ├── stdr │ │ │ └── v1.2.2.yaml │ │ └── zapr │ │ │ └── v1.3.0.yaml │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── v0.19.3.yaml │ │ │ ├── v0.19.5.yaml │ │ │ └── v0.19.6.yaml │ │ ├── jsonreference │ │ │ ├── v0.19.3.yaml │ │ │ ├── v0.19.6.yaml │ │ │ ├── v0.20.0.yaml │ │ │ ├── v0.20.1.yaml │ │ │ └── v0.20.2.yaml │ │ ├── spec │ │ │ └── v0.19.5.yaml │ │ └── swag │ │ │ ├── v0.19.6.yaml │ │ │ ├── v0.21.1.yaml │ │ │ └── v0.22.3.yaml │ ├── gobwas │ │ └── glob │ │ │ └── v0.2.3.yaml │ ├── gogo │ │ └── protobuf │ │ │ └── v1.3.2.yaml │ ├── golang-jwt │ │ └── jwt │ │ │ └── v4 │ │ │ ├── v4.0.0.yaml │ │ │ └── v4.2.0.yaml │ ├── golang │ │ ├── glog │ │ │ ├── v0.0.0-20160126235308-23def4e6c14b.yaml │ │ │ ├── v1.0.0.yaml │ │ │ ├── v1.1.0.yaml │ │ │ └── v1.2.0.yaml │ │ ├── groupcache │ │ │ ├── v0.0.0-20191027212112-611e8accdfc9.yaml │ │ │ ├── v0.0.0-20200121045136-8c9f03a8e57e.yaml │ │ │ └── v0.0.0-20210331224755-41bb18bfe9da.yaml │ │ ├── protobuf │ │ │ ├── v1.3.5.yaml │ │ │ ├── v1.4.3.yaml │ │ │ ├── v1.5.2.yaml │ │ │ ├── v1.5.3.yaml │ │ │ └── v1.5.4.yaml │ │ └── snappy │ │ │ └── v0.0.1.yaml │ ├── google │ │ ├── btree │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.1.2.yaml │ │ ├── gnostic-models │ │ │ └── v0.6.8.yaml │ │ ├── gnostic │ │ │ ├── v0.5.7-v3refs.yaml │ │ │ └── v0.6.9.yaml │ │ ├── go-cmp │ │ │ ├── v0.4.0.yaml │ │ │ ├── v0.5.2.yaml │ │ │ ├── v0.5.7.yaml │ │ │ ├── v0.5.8.yaml │ │ │ ├── v0.5.9.yaml │ │ │ └── v0.6.0.yaml │ │ ├── go-containerregistry │ │ │ ├── v0.11.0.yaml │ │ │ └── v0.14.0.yaml │ │ ├── go-cpy │ │ │ └── v0.0.0-20211218193943-a9c933c06932.yaml │ │ ├── gofuzz │ │ │ ├── v1.1.0.yaml │ │ │ └── v1.2.0.yaml │ │ ├── s2a-go │ │ │ └── v0.1.7.yaml │ │ ├── shlex │ │ │ └── v0.0.0-20191202100458-e7afc7fbc510.yaml │ │ └── uuid │ │ │ ├── v1.1.1.yaml │ │ │ ├── v1.1.2.yaml │ │ │ ├── v1.3.0.yaml │ │ │ ├── v1.3.1.yaml │ │ │ └── v1.6.0.yaml │ ├── googleapis │ │ ├── enterprise-certificate-proxy │ │ │ ├── v0.1.0.yaml │ │ │ ├── v0.2.3.yaml │ │ │ └── v0.3.2.yaml │ │ ├── gax-go │ │ │ └── v2 │ │ │ │ ├── v2.0.5.yaml │ │ │ │ ├── v2.11.0.yaml │ │ │ │ ├── v2.12.3.yaml │ │ │ │ └── v2.4.0.yaml │ │ └── gnostic │ │ │ ├── v0.3.1.yaml │ │ │ ├── v0.4.1.yaml │ │ │ └── v0.5.5.yaml │ ├── gophercloud │ │ └── gophercloud │ │ │ └── v0.1.0.yaml │ ├── gosimple │ │ ├── slug │ │ │ └── v1.13.1.yaml │ │ └── unidecode │ │ │ └── v1.0.1.yaml │ ├── gregjones │ │ └── httpcache │ │ │ ├── v0.0.0-20180305231024-9cad4c3443a7.yaml │ │ │ └── v0.0.0-20190611155906-901d90724c79.yaml │ ├── grpc-ecosystem │ │ └── go-grpc-middleware │ │ │ └── v1.3.0.yaml │ ├── hashicorp │ │ ├── errwrap │ │ │ └── v1.0.0.yaml │ │ ├── go-checkpoint │ │ │ └── v0.5.0.yaml │ │ ├── go-cleanhttp │ │ │ └── v0.5.2.yaml │ │ ├── go-cty │ │ │ └── v1.4.1-0.20200414143053-d3edf31b6320.yaml │ │ ├── go-getter │ │ │ └── v1.6.1.yaml │ │ ├── go-hclog │ │ │ ├── v0.9.2.yaml │ │ │ └── v1.2.1.yaml │ │ ├── go-multierror │ │ │ ├── v1.0.0.yaml │ │ │ └── v1.1.1.yaml │ │ ├── go-plugin │ │ │ ├── v1.0.1.yaml │ │ │ ├── v1.4.4.yaml │ │ │ └── v1.4.8.yaml │ │ ├── go-safetemp │ │ │ └── v1.0.0.yaml │ │ ├── go-uuid │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.0.3.yaml │ │ ├── go-version │ │ │ ├── v1.2.0.yaml │ │ │ └── v1.6.0.yaml │ │ ├── hc-install │ │ │ └── v0.4.0.yaml │ │ ├── hcl │ │ │ ├── v1.0.0.yaml │ │ │ └── v2 │ │ │ │ ├── v2.0.0.yaml │ │ │ │ ├── v2.13.0.yaml │ │ │ │ └── v2.19.1.yaml │ │ ├── logutils │ │ │ └── v1.0.0.yaml │ │ ├── terraform-config-inspect │ │ │ └── v0.0.0-20191115094559-17f92b0546e8.yaml │ │ ├── terraform-exec │ │ │ ├── v0.17.2.yaml │ │ │ └── v0.17.3.yaml │ │ ├── terraform-json │ │ │ └── v0.14.0.yaml │ │ ├── terraform-plugin-framework-validators │ │ │ └── v0.9.0.yaml │ │ ├── terraform-plugin-framework │ │ │ └── v1.1.1.yaml │ │ ├── terraform-plugin-go │ │ │ ├── v0.10.0.yaml │ │ │ └── v0.14.3.yaml │ │ ├── terraform-plugin-log │ │ │ ├── v0.4.1.yaml │ │ │ └── v0.7.0.yaml │ │ ├── terraform-plugin-sdk │ │ │ ├── v1.4.0.yaml │ │ │ └── v2 │ │ │ │ ├── v2.18.0.yaml │ │ │ │ └── v2.24.0.yaml │ │ ├── terraform-provider-google-beta │ │ │ └── (devel).yaml │ │ ├── terraform-registry-address │ │ │ ├── v0.0.0-20220623143253-7d51757b572c.yaml │ │ │ └── v0.1.0.yaml │ │ ├── terraform-svchost │ │ │ ├── v0.0.0-20191011084731-65d371908596.yaml │ │ │ └── v0.0.0-20200729002733-f050f53b9734.yaml │ │ └── yamux │ │ │ └── v0.0.0-20181012175058-2f1d1f20f75d.yaml │ ├── huandu │ │ └── xstrings │ │ │ └── v1.3.1.yaml │ ├── imdario │ │ └── mergo │ │ │ ├── v0.3.12.yaml │ │ │ ├── v0.3.13.yaml │ │ │ ├── v0.3.15.yaml │ │ │ └── v0.3.8.yaml │ ├── jedib0t │ │ └── go-pretty │ │ │ └── v6 │ │ │ └── v6.4.4.yaml │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── v0.0.0-20180206201540-c2b33e8439af.yaml │ │ │ └── v0.4.0.yaml │ ├── jonboulle │ │ └── clockwork │ │ │ └── v0.2.2.yaml │ ├── josharian │ │ └── intern │ │ │ └── v1.0.0.yaml │ ├── json-iterator │ │ └── go │ │ │ ├── v1.1.10.yaml │ │ │ ├── v1.1.12.yaml │ │ │ └── v1.1.9.yaml │ ├── klauspost │ │ └── compress │ │ │ ├── v1.11.2.yaml │ │ │ ├── v1.15.8.yaml │ │ │ ├── v1.15.9.yaml │ │ │ └── v1.16.0.yaml │ ├── kr │ │ ├── pretty │ │ │ └── v0.1.0.yaml │ │ └── text │ │ │ └── v0.1.0.yaml │ ├── kylelemons │ │ └── godebug │ │ │ └── v1.1.0.yaml │ ├── liggitt │ │ └── tabwriter │ │ │ └── v0.0.0-20181228230101-89fcab3d43de.yaml │ ├── mailru │ │ └── easyjson │ │ │ ├── v0.7.0.yaml │ │ │ └── v0.7.7.yaml │ ├── mattn │ │ ├── go-colorable │ │ │ ├── v0.1.12.yaml │ │ │ ├── v0.1.13.yaml │ │ │ └── v0.1.2.yaml │ │ ├── go-isatty │ │ │ ├── v0.0.12.yaml │ │ │ ├── v0.0.14.yaml │ │ │ └── v0.0.17.yaml │ │ └── go-runewidth │ │ │ ├── v0.0.13.yaml │ │ │ ├── v0.0.7.yaml │ │ │ └── v0.0.9.yaml │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── v1.0.2.yaml │ │ │ ├── v1.0.4.yaml │ │ │ └── v2 │ │ │ └── v2.0.0.yaml │ ├── mholt │ │ └── archiver │ │ │ └── v3.1.1+incompatible.yaml │ ├── mitchellh │ │ ├── cli │ │ │ └── v1.0.0.yaml │ │ ├── colorstring │ │ │ └── v0.0.0-20190213212951-d06e56a500db.yaml │ │ ├── copystructure │ │ │ ├── v1.0.0.yaml │ │ │ └── v1.2.0.yaml │ │ ├── go-homedir │ │ │ └── v1.1.0.yaml │ │ ├── go-testing-interface │ │ │ ├── v1.0.0.yaml │ │ │ └── v1.14.1.yaml │ │ ├── go-wordwrap │ │ │ ├── v1.0.0.yaml │ │ │ └── v1.0.1.yaml │ │ ├── hashstructure │ │ │ ├── v1.0.0.yaml │ │ │ └── v1.1.0.yaml │ │ ├── mapstructure │ │ │ ├── v1.1.2.yaml │ │ │ ├── v1.4.3.yaml │ │ │ └── v1.5.0.yaml │ │ └── reflectwalk │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.0.2.yaml │ ├── moby │ │ ├── spdystream │ │ │ └── v0.2.0.yaml │ │ └── term │ │ │ ├── v0.0.0-20210619224110-3f7ff695adc6.yaml │ │ │ ├── v0.0.0-20220808134915-39b0c02b01ae.yaml │ │ │ └── v0.0.0-20221205130635-1aeaba878587.yaml │ ├── modern-go │ │ ├── concurrent │ │ │ └── v0.0.0-20180306012644-bacd9c7ef1dd.yaml │ │ └── reflect2 │ │ │ ├── v1.0.1.yaml │ │ │ └── v1.0.2.yaml │ ├── monochromegane │ │ └── go-gitignore │ │ │ └── v0.0.0-20200626010858-205db1a8cc00.yaml │ ├── munnerz │ │ └── goautoneg │ │ │ └── v0.0.0-20191010083416-a7dc8b61c822.yaml │ ├── nasa9084 │ │ └── go-openapi │ │ │ └── v0.0.0-20200604141640-2875b7376353.yaml │ ├── natefinch │ │ └── lumberjack │ │ │ └── v2.0.0+incompatible.yaml │ ├── nwaples │ │ └── rardecode │ │ │ └── v1.0.0.yaml │ ├── oklog │ │ └── run │ │ │ └── v1.0.0.yaml │ ├── olekukonko │ │ ├── tablewriter │ │ │ ├── v0.0.4.yaml │ │ │ └── v0.0.5.yaml │ │ └── ts │ │ │ └── v0.0.0-20171002115256-78ecb04241c0.yaml │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── v1.0.0-rc1.yaml │ │ │ └── v1.0.0.yaml │ │ └── image-spec │ │ │ ├── v1.0.3-0.20220114050600-8b9d41f48198.yaml │ │ │ ├── v1.1.0-rc2.yaml │ │ │ └── v1.1.0-rc3.yaml │ ├── otiai10 │ │ └── copy │ │ │ └── v1.7.0.yaml │ ├── peterbourgon │ │ └── diskv │ │ │ └── v2.0.1+incompatible.yaml │ ├── pierrec │ │ └── lz4 │ │ │ └── v2.2.7+incompatible.yaml │ ├── pkg │ │ └── errors │ │ │ └── v0.9.1.yaml │ ├── pmezard │ │ └── go-difflib │ │ │ └── v1.0.0.yaml │ ├── posener │ │ ├── complete │ │ │ ├── v1.2.1.yaml │ │ │ └── v2 │ │ │ │ └── v2.0.1-alpha.12.yaml │ │ └── script │ │ │ └── v1.0.4.yaml │ ├── prep │ │ └── wasmexec │ │ │ └── v0.0.0-20220807105708-6554945c1dec.yaml │ ├── prometheus │ │ ├── client_golang │ │ │ ├── v1.14.0.yaml │ │ │ ├── v1.16.0.yaml │ │ │ └── v1.18.0.yaml │ │ ├── client_model │ │ │ ├── v0.2.0.yaml │ │ │ ├── v0.3.0.yaml │ │ │ ├── v0.4.0.yaml │ │ │ └── v0.5.0.yaml │ │ ├── common │ │ │ ├── v0.37.0.yaml │ │ │ ├── v0.44.0.yaml │ │ │ └── v0.45.0.yaml │ │ └── procfs │ │ │ ├── v0.10.1.yaml │ │ │ ├── v0.12.0.yaml │ │ │ └── v0.8.0.yaml │ ├── rivo │ │ └── uniseg │ │ │ └── v0.2.0.yaml │ ├── russross │ │ └── blackfriday │ │ │ ├── v1.5.2.yaml │ │ │ ├── v1.6.0.yaml │ │ │ └── v2 │ │ │ ├── v2.0.1.yaml │ │ │ └── v2.1.0.yaml │ ├── sergi │ │ └── go-diff │ │ │ └── v1.2.0.yaml │ ├── shurcooL │ │ └── sanitized_anchor_name │ │ │ └── v1.0.0.yaml │ ├── sirupsen │ │ └── logrus │ │ │ ├── v1.8.1.yaml │ │ │ └── v1.9.0.yaml │ ├── spf13 │ │ ├── afero │ │ │ └── v1.2.2.yaml │ │ ├── cast │ │ │ └── v1.3.1.yaml │ │ ├── cobra │ │ │ ├── v1.0.0.yaml │ │ │ ├── v1.2.1.yaml │ │ │ ├── v1.4.0.yaml │ │ │ ├── v1.5.0.yaml │ │ │ ├── v1.6.1.yaml │ │ │ └── v1.7.0.yaml │ │ └── pflag │ │ │ └── v1.0.5.yaml │ ├── spyzhov │ │ └── ajson │ │ │ ├── v0.4.2.yaml │ │ │ ├── v0.7.1.yaml │ │ │ ├── v0.7.2.yaml │ │ │ └── v0.9.0.yaml │ ├── stoewer │ │ └── go-strcase │ │ │ └── v1.0.2.yaml │ ├── stretchr │ │ └── testify │ │ │ └── v1.8.4.yaml │ ├── terraform-providers │ │ └── terraform-provider-google-beta │ │ │ ├── (devel).yaml │ │ │ └── v1.20.0.yaml │ ├── ulikunitz │ │ └── xz │ │ │ └── v0.5.8.yaml │ ├── vbatts │ │ └── tar-split │ │ │ └── v0.11.2.yaml │ ├── vmihailenco │ │ ├── msgpack │ │ │ ├── v4.0.4+incompatible.yaml │ │ │ └── v4 │ │ │ │ └── v4.3.12.yaml │ │ └── tagparser │ │ │ ├── v0.1.1.yaml │ │ │ └── v0.1.2.yaml │ ├── xeipuuv │ │ ├── gojsonpointer │ │ │ └── v0.0.0-20190905194746-02993c407bfb.yaml │ │ ├── gojsonreference │ │ │ └── v0.0.0-20180127040603-bd5ef7bd5415.yaml │ │ └── gojsonschema │ │ │ └── v1.1.0.yaml │ ├── xi2 │ │ └── xz │ │ │ └── v0.0.0-20171230120015-48954b6210f8.yaml │ ├── xlab │ │ └── treeprint │ │ │ ├── v0.0.0-20181112141820-a009c3971eca.yaml │ │ │ ├── v1.1.0.yaml │ │ │ └── v1.2.0.yaml │ └── zclconf │ │ ├── go-cty-yaml │ │ └── v1.0.1.yaml │ │ └── go-cty │ │ ├── v1.10.0.yaml │ │ ├── v1.13.0.yaml │ │ └── v1.4.0.yaml ├── go.opencensus.io │ ├── v0.22.2.yaml │ ├── v0.22.3.yaml │ ├── v0.23.0.yaml │ └── v0.24.0.yaml ├── go.opentelemetry.io │ ├── contrib │ │ └── instrumentation │ │ │ ├── google.golang.org │ │ │ └── grpc │ │ │ │ └── otelgrpc │ │ │ │ └── v0.49.0.yaml │ │ │ └── net │ │ │ └── http │ │ │ └── otelhttp │ │ │ └── v0.49.0.yaml │ └── otel │ │ ├── metric │ │ └── v1.24.0.yaml │ │ ├── trace │ │ └── v1.24.0.yaml │ │ └── v1.24.0.yaml ├── go.starlark.net │ ├── v0.0.0-20200306205701-8dd3e2ee1dd5.yaml │ ├── v0.0.0-20210901212718-87f333178d59.yaml │ └── v0.0.0-20230525235612-a134d8f9ddca.yaml ├── go.uber.org │ ├── atomic │ │ └── v1.4.0.yaml │ ├── multierr │ │ ├── v1.1.0.yaml │ │ └── v1.10.0.yaml │ └── zap │ │ ├── v1.10.0.yaml │ │ └── v1.26.0.yaml ├── golang.org │ └── x │ │ ├── crypto │ │ ├── v0.0.0-20220214200702-86341886e292.yaml │ │ ├── v0.0.0-20220315160706-3147a52a75dd.yaml │ │ ├── v0.0.0-20220331220935-ae2d96664a29.yaml │ │ ├── v0.0.0-20220517005047-85d78b3ac167.yaml │ │ ├── v0.14.0.yaml │ │ ├── v0.17.0.yaml │ │ └── v0.22.0.yaml │ │ ├── mod │ │ ├── v0.10.0.yaml │ │ ├── v0.11.0.yaml │ │ ├── v0.6.0-dev.0.20220106191415-9b9b3d81d5e3.yaml │ │ ├── v0.6.0-dev.0.20220419223038-86c51ed26bb4.yaml │ │ ├── v0.7.0.yaml │ │ ├── v0.8.0.yaml │ │ └── v0.9.0.yaml │ │ ├── net │ │ ├── v0.0.0-20220127200216-cd36cc0744dd.yaml │ │ ├── v0.0.0-20220412020605-290c469a71a5.yaml │ │ ├── v0.0.0-20220708220712-1185a9018129.yaml │ │ ├── v0.0.0-20221004154528-8021a29435af.yaml │ │ ├── v0.17.0.yaml │ │ ├── v0.2.0.yaml │ │ ├── v0.24.0.yaml │ │ ├── v0.5.0.yaml │ │ ├── v0.7.0.yaml │ │ ├── v0.8.0.yaml │ │ └── v0.9.0.yaml │ │ ├── oauth2 │ │ ├── v0.0.0-20190604053449-0f29369cfe45.yaml │ │ ├── v0.0.0-20200107190931-bf48bf16ab8d.yaml │ │ ├── v0.0.0-20220411215720-9780585627b5.yaml │ │ ├── v0.0.0-20220622183110-fd043fe589d2.yaml │ │ ├── v0.0.0-20220718184931-c8730f7fcb92.yaml │ │ ├── v0.0.0-20221014153046-6fdb5e3db783.yaml │ │ ├── v0.10.0.yaml │ │ ├── v0.19.0.yaml │ │ ├── v0.6.0.yaml │ │ └── v0.8.0.yaml │ │ ├── sync │ │ ├── v0.0.0-20220601150217-0de741cfad7f.yaml │ │ ├── v0.0.0-20220722155255-886fb9371eb4.yaml │ │ ├── v0.1.0.yaml │ │ ├── v0.2.0.yaml │ │ ├── v0.3.0.yaml │ │ └── v0.7.0.yaml │ │ ├── sys │ │ ├── v0.0.0-20220412211240-33da011f77ad.yaml │ │ ├── v0.0.0-20220517195934-5e4e11fc645e.yaml │ │ ├── v0.0.0-20220715151400-c0bba94af5f8.yaml │ │ ├── v0.0.0-20220728004956-3c1f35247d10.yaml │ │ ├── v0.13.0.yaml │ │ ├── v0.15.0.yaml │ │ ├── v0.19.0.yaml │ │ ├── v0.2.0.yaml │ │ ├── v0.4.0.yaml │ │ ├── v0.5.0.yaml │ │ ├── v0.6.0.yaml │ │ └── v0.7.0.yaml │ │ ├── term │ │ ├── v0.0.0-20210927222741-03fcf44c2211.yaml │ │ ├── v0.13.0.yaml │ │ ├── v0.15.0.yaml │ │ ├── v0.19.0.yaml │ │ ├── v0.2.0.yaml │ │ ├── v0.4.0.yaml │ │ ├── v0.5.0.yaml │ │ ├── v0.6.0.yaml │ │ └── v0.7.0.yaml │ │ ├── text │ │ ├── v0.13.0.yaml │ │ ├── v0.14.0.yaml │ │ ├── v0.3.7.yaml │ │ ├── v0.4.0.yaml │ │ ├── v0.6.0.yaml │ │ ├── v0.7.0.yaml │ │ ├── v0.8.0.yaml │ │ └── v0.9.0.yaml │ │ ├── time │ │ ├── v0.0.0-20190921001708-c4c64cad1fd0.yaml │ │ ├── v0.0.0-20200630173020-3af7569d3a1e.yaml │ │ ├── v0.0.0-20210723032227-1f47c861a9ac.yaml │ │ ├── v0.0.0-20220210224613-90d013bbcef8.yaml │ │ ├── v0.0.0-20220609170525-579cf78fd858.yaml │ │ ├── v0.3.0.yaml │ │ └── v0.5.0.yaml │ │ └── xerrors │ │ ├── v0.0.0-20200804184101-5ec99f83aff1.yaml │ │ ├── v0.0.0-20220609144429-65e65417b02f.yaml │ │ └── v0.0.0-20220907171357-04be3eba64a2.yaml ├── gomodules.xyz │ └── jsonpatch │ │ └── v2 │ │ └── v2.3.0.yaml ├── google.golang.org │ ├── api │ │ ├── v0.177.0.yaml │ │ ├── v0.22.0.yaml │ │ └── v0.92.0.yaml │ ├── genproto │ │ ├── googleapis │ │ │ ├── api │ │ │ │ ├── v0.0.0-20230711160842-782d3b101e98.yaml │ │ │ │ └── v0.0.0-20240429193739-8cf5692501f6.yaml │ │ │ └── rpc │ │ │ │ ├── v0.0.0-20230711160842-782d3b101e98.yaml │ │ │ │ └── v0.0.0-20240429193739-8cf5692501f6.yaml │ │ ├── v0.0.0-20191223191004-3caeed10a8bf.yaml │ │ ├── v0.0.0-20200526211855-cb27e3aa2013.yaml │ │ ├── v0.0.0-20220725144611-272f38e5d71b.yaml │ │ ├── v0.0.0-20230711160842-782d3b101e98.yaml │ │ └── v0.0.0-20240401170217-c3f982113cda.yaml │ ├── grpc │ │ ├── v1.28.1.yaml │ │ ├── v1.48.0.yaml │ │ ├── v1.58.3.yaml │ │ └── v1.63.2.yaml │ └── protobuf │ │ ├── v1.25.0.yaml │ │ ├── v1.28.0.yaml │ │ ├── v1.28.1.yaml │ │ ├── v1.29.1.yaml │ │ ├── v1.31.0.yaml │ │ ├── v1.33.0.yaml │ │ └── v1.34.0.yaml ├── gopkg.in │ ├── evanphx │ │ └── json-patch.v5 │ │ │ └── v5.6.0.yaml │ ├── inf.v0 │ │ └── v0.9.1.yaml │ ├── yaml.v2 │ │ ├── v2.2.8.yaml │ │ └── v2.4.0.yaml │ └── yaml.v3 │ │ ├── v3.0.0-20191026110619-0b21df46bc1d.yaml │ │ ├── v3.0.0-20210107192922-496545a6307b.yaml │ │ └── v3.0.1.yaml ├── helm.sh │ └── helm │ │ └── v3 │ │ └── v3.2.0.yaml ├── istio.io │ ├── api │ │ └── v0.0.0-20200724154434-34e474846e0d.yaml │ ├── gogo-genproto │ │ └── v0.0.0-20200709220749-8607e17318e8.yaml │ ├── istio │ │ └── (devel).yaml │ └── pkg │ │ └── v0.0.0-20200709220414-14d5de656564.yaml ├── k8s.io │ ├── api │ │ ├── v0.18.3.yaml │ │ ├── v0.20.0.yaml │ │ ├── v0.23.0.yaml │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ ├── v0.27.11.yaml │ │ └── v0.28.4.yaml │ ├── apiextensions-apiserver │ │ ├── v0.18.2.yaml │ │ ├── v0.23.0.yaml │ │ ├── v0.24.0.yaml │ │ └── v0.27.9.yaml │ ├── apimachinery │ │ ├── v0.18.3.yaml │ │ ├── v0.20.0.yaml │ │ ├── v0.23.0.yaml │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.25.4.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ ├── v0.27.11.yaml │ │ └── v0.28.4.yaml │ ├── cli-runtime │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ └── v0.28.4.yaml │ ├── client-go │ │ ├── v0.18.3.yaml │ │ ├── v0.20.0.yaml │ │ ├── v0.23.0.yaml │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ ├── v0.27.11.yaml │ │ └── v0.28.4.yaml │ ├── component-base │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ ├── v0.27.9.yaml │ │ └── v0.28.4.yaml │ ├── klog │ │ ├── v1.0.0.yaml │ │ └── v2 │ │ │ ├── v2.100.1.yaml │ │ │ ├── v2.4.0.yaml │ │ │ ├── v2.60.1.yaml │ │ │ ├── v2.70.1.yaml │ │ │ ├── v2.90.0.yaml │ │ │ └── v2.90.1.yaml │ ├── kube-openapi │ │ ├── v0.0.0-20200410145947-61e04a5be9a6.yaml │ │ ├── v0.0.0-20211115234752-e816edb12b65.yaml │ │ ├── v0.0.0-20220401212409-b28bf2818661.yaml │ │ ├── v0.0.0-20220413171646-5e7f5fdc6da6.yaml │ │ ├── v0.0.0-20220803162953-67bda5d908f1.yaml │ │ ├── v0.0.0-20230109183929-3758b55a6596.yaml │ │ ├── v0.0.0-20230501164219-8b0f38b5fd1f.yaml │ │ └── v0.0.0-20230717233707-2695361300d9.yaml │ ├── kubectl │ │ ├── v0.18.0.yaml │ │ ├── v0.24.0.yaml │ │ ├── v0.25.3.yaml │ │ ├── v0.26.0.yaml │ │ ├── v0.26.7.yaml │ │ ├── v0.26.9.yaml │ │ └── v0.28.4.yaml │ └── utils │ │ ├── v0.0.0-20200324210504-a9aa75ae1b89.yaml │ │ ├── v0.0.0-20201110183641-67b214c5f920.yaml │ │ ├── v0.0.0-20220210201930-3a6ce19ff2f9.yaml │ │ ├── v0.0.0-20220823124924-e9cbc92d1a73.yaml │ │ ├── v0.0.0-20221108210102-8e77b1f39fe2.yaml │ │ ├── v0.0.0-20230115233650-391b47cb4029.yaml │ │ ├── v0.0.0-20230505201702-9f6742963106.yaml │ │ └── v0.0.0-20230726121419-3b25d923346b.yaml └── sigs.k8s.io │ ├── cli-utils │ ├── v0.32.0.yaml │ ├── v0.33.0.yaml │ ├── v0.34.0.yaml │ ├── v0.35.0.yaml │ └── v0.36.0.yaml │ ├── controller-runtime │ ├── v0.11.0.yaml │ ├── v0.11.1.yaml │ ├── v0.13.0.yaml │ ├── v0.13.1.yaml │ ├── v0.14.1.yaml │ ├── v0.15.2.yaml │ ├── v0.16.3.yaml │ └── v0.6.0.yaml │ ├── json │ ├── v0.0.0-20211020170558-c049b76a60c6.yaml │ ├── v0.0.0-20211208200746-9f7c6b3444d2.yaml │ ├── v0.0.0-20220713155537-f223a00ba0e2.yaml │ └── v0.0.0-20221116044647-bc3834ca7abd.yaml │ ├── kubebuilder-declarative-pattern │ └── v0.15.0-beta.2.yaml │ ├── kustomize │ ├── api │ │ ├── v0.11.5.yaml │ │ ├── v0.12.1.yaml │ │ └── v0.15.0.yaml │ └── kyaml │ │ ├── v0.0.5.yaml │ │ ├── v0.13.7.yaml │ │ ├── v0.13.9.yaml │ │ └── v0.15.0.yaml │ ├── structured-merge-diff │ ├── v3 │ │ └── v3.0.0.yaml │ └── v4 │ │ ├── v4.0.2.yaml │ │ ├── v4.2.0.yaml │ │ ├── v4.2.1.yaml │ │ ├── v4.2.3.yaml │ │ └── v4.4.1.yaml │ └── yaml │ ├── v1.2.0.yaml │ ├── v1.3.0.yaml │ └── v1.4.0.yaml └── results.txt /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "kpt-dev" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default 2 | * @liamfallon @kispaljr 3 | -------------------------------------------------------------------------------- /demos/demo-magic/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | -------------------------------------------------------------------------------- /docs/design-docs/packagevariant-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariant-clone.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariant-config-injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariant-config-injection.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariant-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariant-context.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariant-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariant-function.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariant-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariant-legend.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariantset-target-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariantset-target-list.png -------------------------------------------------------------------------------- /docs/design-docs/packagevariantset-target-repo-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/docs/design-docs/packagevariantset-target-repo-selector.png -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/all-resource-deletion/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/default-runtime/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/error-in-pipe/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/exec-function-stderr/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/exec-function-with-args/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/exec-function/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fn-config-file-in-pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fn-config-file/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fn-source/include-meta-resource-out-of-place/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fn-source/include-meta-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fn-success-with-stderr/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/fnconfig-missing-name/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/function-chain/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/function-env/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/image-pull-policy-always/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/image-pull-policy-if-not-present/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/image-pull-policy-never/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/include-meta-resources-v1alpha1/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/include-meta-resources-v1alpha2/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/include-meta-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/invalid-fn-config-file/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/krm-check-exclude-kustomize/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/missing-fn-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/missing-fn-image/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/modify-legacy-path-annotation/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/modify-path-annotation/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/multiple-fn-config-one-file/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/no-image-pull/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | sequential: true 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/no-image-pull/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/no-op/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/non-krm-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/out-of-place-dir-exists-error/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/out-of-place-dir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/out-of-place-fnchain-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/out-of-place-fnchain-unwrap/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/output-to-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/preserve-comments/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/preserve-order-include-meta-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/preserve-order-null-values/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/privilege-options/disable-network/.krmginore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/privilege-options/enable-network/.krmginore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/privilege-options/mount/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | runtimes: 2 | - docker 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/privilege-options/mount/.krmignore: -------------------------------------------------------------------------------- 1 | schema 2 | .expected 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/resource-deletion/pkg/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/custom-pkg-path/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/custom-pkg-path/sub-pkg/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/exec/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/exec/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/image/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/image/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/match-selector/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/match-selector/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/no-save-when-fail/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/override-fn/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/preserve-kptfile-comments/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/preserve-kptfile-comments/Kptfile: -------------------------------------------------------------------------------- 1 | # header comment 2 | apiVersion: kpt.dev/v1 3 | kind: Kptfile # comment 1 4 | metadata: 5 | # comment 2 6 | name: app # comment 3 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/validator-type/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/save-fn/validator-type/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/selectors/basicpipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/selectors/exclude/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/selectors/out-of-place-fnchain-unwrap/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/selectors/selectors-with-exclude/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/short-image-path/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/simple-function-symlink/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/simple-function/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/structured-results-in-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | search-replace-conf.yaml 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkg-exclude-fn-config-by-default/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkg-has-samename-subdir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkg-has-samename-subdir/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: root-pkg 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkg-has-samename-subdir/pkg-a/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: pkg-a 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkg-include-meta-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkgs-with-krmignore/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | non-krm.yaml 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/subpkgs/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-eval/wasm-function/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/all-resource-deletion/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline-out-of-place/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline-symlink/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline-v1alpha1/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline-v1alpha2/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline-wasm/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/basicpipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/default-runtime/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/empty-pipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/empty-pipeline/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/exec-function-stderr/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/exec-function-with-args/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/exec-function-with-args/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | pipeline: 6 | mutators: 7 | - exec: "sed -e 's/foo/bar/'" 8 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/exec-without-permissions/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/exec-without-permissions/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | pipeline: 6 | mutators: 7 | - exec: "sed -e 's/foo/bar/'" 8 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fn-failure-output-no-truncate/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fn-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fn-success-with-stderr/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-ancestorfn-not-mutate-subpkg-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-cannot-refer-subpkgs/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-cannot-refer-subpkgs/db/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: db 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-in-subdir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-missing-name/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-multiple-config-one-file/.krmignore: -------------------------------------------------------------------------------- 1 | .expected -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-not-relative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-outside-package/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-pkgfn-refers-subdir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig-updated-in-render/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnresult-fn-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/fnresult-fn-success/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/format-on-success/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/generator-absolute-path/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/generator-subpkgs/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/generator-subpkgs/db/fn-config.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: db-map 5 | data: 6 | db-key: db-value 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/generator-subpkgs/fn-config.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: parent-map 5 | namespace: def 6 | data: 7 | parent-key: parent-value 8 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/generator/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/image-pull-policy-always/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/image-pull-policy-if-not-present/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/image-pull-policy-never/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/invalid-configmap-fnconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/invalid-kptfile/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/invalid-kptfile/Kptfile: -------------------------------------------------------------------------------- 1 | # Invalid Kptfile 2 | apiVersion: kpt.dev/v1 3 | kslsls 4 | ;s;s;s 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/kptfile-unknown-fields/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/krmignore/.krmignore: -------------------------------------------------------------------------------- 1 | resources.yaml 2 | .expected 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/kubeval-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/missing-fn-image/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/missing-fnconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/missing-kptfile/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/modify-legacy-path-annotation/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/modify-path-annotation/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/multiple-fnconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/mutate-legacy-path-index/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/mutate-path-index/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-fnconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-format-on-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-op/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-op/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | pipeline: 6 | mutators: 7 | - image: gcr.io/kpt-functions/no-op 8 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-pipeline-in-subpackage/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-pipeline-in-subpackage/db/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: db 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-pipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-pipeline/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/no-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/non-krm-resource-no-pipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/non-krm-resource-no-pipeline/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/non-krm-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-dir-exists-error/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-dir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-fnchain-stdout-results/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-fnchain-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-fnchain-unwrap/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/out-of-place-unwrap/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-ancestor/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-ancestor/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app-with-generator 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-current/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-descendent/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-descendent/db/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: db 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-duplicate/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-outofpackage/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/path-index-outofpackage/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: app-with-generator 5 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/preserve-comments/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/preserve-order-null-values/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/resource-deletion/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/resource-has-pkgname-prefix/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/selectors/basicpipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/selectors/exclude/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/selectors/generator/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/selectors/selectors-with-exclude/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/selectors/validate-subset/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/short-image-path/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/structured-results-from-muiltiple-fns/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-fn-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-invalid-kptfile/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-samename-subdir-empty-pipeline/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-samename-subdir-empty-pipeline/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: root-pkg 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-samename-subdir-empty-pipeline/pkg-a/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: pkg-a 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-samename-subdir/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-has-samename-subdir/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: root-pkg 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkg-resource-deletion/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkgs-with-krmignore/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkgs-with-krmignore/db/.krmignore: -------------------------------------------------------------------------------- 1 | non-krm.yaml -------------------------------------------------------------------------------- /e2e/testdata/fn-render/subpkgs/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/success-stdout/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/validate-generated-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/validate-resource-failure/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-render/validator-mutates-resources/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-sink/out-of-place-dir-exists-error-sink/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-sink/out-of-place-source-sink/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | out 3 | -------------------------------------------------------------------------------- /e2e/testdata/fn-source/subpkgs-with-krmignore/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /e2e/testdata/fn-source/subpkgs-with-krmignore/db/.krmignore: -------------------------------------------------------------------------------- 1 | non-krm.yaml -------------------------------------------------------------------------------- /e2e/testdata/live-apply/apply-depends-on/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: apply-depends-on -------------------------------------------------------------------------------- /e2e/testdata/live-apply/crd-and-cr/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: crd-and-cr 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-apply/dry-run-with-install-rg/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: dry-run-with-install-rg 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-apply/dry-run-without-rg/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: dry-run-without-rg 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-apply/install-rg-on-apply/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: install-rg-on-apply 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-apply/json-output/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: json-output 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-apply/prune-depends-on/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: prune-depends-on 5 | -------------------------------------------------------------------------------- /e2e/testdata/live-plan/prune/resources/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: prune 5 | inventory: 6 | namespace: prune 7 | name: prune 8 | inventoryID: prune -------------------------------------------------------------------------------- /firebase/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset5/wordpress/wordpress-description.txt: -------------------------------------------------------------------------------- 1 | This is wordpress description. -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset5/wordpress/wordpress-subdir/wordpress-subdir-description.txt: -------------------------------------------------------------------------------- 1 | This is wordpress-subdir description. -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset6/java/config-symlink: -------------------------------------------------------------------------------- 1 | java-configmap.resource.yaml -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset6/mysql-symlink: -------------------------------------------------------------------------------- 1 | mysql -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset6/wordpress/wordpress-description.txt: -------------------------------------------------------------------------------- 1 | This is wordpress description. -------------------------------------------------------------------------------- /internal/testutil/testdata/dataset6/wordpress/wordpress-subdir/wordpress-subdir-description.txt: -------------------------------------------------------------------------------- 1 | This is wordpress-subdir description. -------------------------------------------------------------------------------- /logo/KptLogoLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/logo/KptLogoLarge.png -------------------------------------------------------------------------------- /logo/KptLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/logo/KptLogoSmall.png -------------------------------------------------------------------------------- /package-examples/kustomize/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: kustomize-pkg 5 | info: 6 | description: kustomize kpt package 7 | -------------------------------------------------------------------------------- /package-examples/kustomize/overlays/dev/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: dev 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /package-examples/kustomize/overlays/prod/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: prod 5 | info: 6 | description: sample description 7 | -------------------------------------------------------------------------------- /package-examples/wordpress/README.md: -------------------------------------------------------------------------------- 1 | # wordpress 2 | 3 | Please refer to [kpt book] for consuming this package. 4 | 5 | [kpt book]: https://kpt.dev/book/03-packages/01-getting-a-package 6 | -------------------------------------------------------------------------------- /porch/README.md: -------------------------------------------------------------------------------- 1 | # Package Orchestration Server 2 | 3 | Porch is now part of the Nephio project: https://github.com/nephio-project/porch 4 | -------------------------------------------------------------------------------- /release/formula/README.md: -------------------------------------------------------------------------------- 1 | See [homebrew release instructions](../../Formula) 2 | -------------------------------------------------------------------------------- /rollouts/.dockerignore: -------------------------------------------------------------------------------- 1 | # More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file 2 | # Ignore build and test binaries. 3 | bin/ 4 | testbin/ 5 | -------------------------------------------------------------------------------- /scripts/schema-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft/2019-09/schema#", 3 | "type": "object", 4 | "anyOf": ["#/definitions/kptfile"] 5 | } 6 | -------------------------------------------------------------------------------- /site/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["@babel/plugin-proposal-optional-chaining"] 3 | } -------------------------------------------------------------------------------- /site/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | book/*/README.md 2 | coverage -------------------------------------------------------------------------------- /site/api-reference/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "API Reference" 3 | linkTitle: "API Reference" 4 | type: docs 5 | weight: 40 6 | description: > 7 | Overview of kpt declarative APIs 8 | --- 9 | -------------------------------------------------------------------------------- /site/reference/README.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | - [CLI Reference](/reference/cli/) 4 | - [Schema Reference](/reference/schema/) 5 | - [Annotations Reference](/reference/annotations/) 6 | -------------------------------------------------------------------------------- /site/reference/schema/README.md: -------------------------------------------------------------------------------- 1 | # Schema Reference 2 | 3 | This section contains the schema for all the custom resources used in kpt. 4 | -------------------------------------------------------------------------------- /site/reference/schema/function-result-list/README.md: -------------------------------------------------------------------------------- 1 | # FunctionResultList 2 | 3 | See 4 | [definition here](https://github.com/GoogleContainerTools/kpt/blob/next/pkg/api/fnresult/v1/types.go#L50) 5 | -------------------------------------------------------------------------------- /site/static/images/KptLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/KptLogoSmall.png -------------------------------------------------------------------------------- /site/static/images/fn-export/circleci-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/fn-export/circleci-result.png -------------------------------------------------------------------------------- /site/static/images/fn-export/github-actions-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/fn-export/github-actions-result.png -------------------------------------------------------------------------------- /site/static/images/fn-export/gitlab-ci-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/fn-export/gitlab-ci-result.png -------------------------------------------------------------------------------- /site/static/images/fn-export/jenkins-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/fn-export/jenkins-result.png -------------------------------------------------------------------------------- /site/static/images/fn-export/tekton-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/fn-export/tekton-result.png -------------------------------------------------------------------------------- /site/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/kpt/da273b6f7f7aed68ae7c994839d8cea31a577a3e/site/static/images/logo.png -------------------------------------------------------------------------------- /tools/licensescan/modules/bitbucket.org/creachadair/stringset/v0.0.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/bitbucket.org/creachadair/stringset@v0.0.8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/auth/oauth2adapt/v0.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/auth/oauth2adapt@v0.2.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/auth/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/auth@v0.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/bigtable/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/bigtable@v1.1.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/bigtable/v1.16.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/bigtable@v1.16.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/bigtable/v1.19.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/bigtable@v1.19.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/compute/metadata/v0.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/compute/metadata@v0.2.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/compute/metadata/v0.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/compute/metadata@v0.2.3 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/compute/metadata/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/compute/metadata@v0.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/compute/v1.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/compute@v1.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/compute/v1.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/compute@v1.7.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/iam/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/iam@v0.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/iam/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/iam@v1.1.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/iam/v1.1.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/iam@v1.1.7 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/longrunning/v0.5.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/longrunning@v0.5.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/longrunning/v0.5.6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/longrunning@v0.5.6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/storage/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/storage@v1.0.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/storage/v1.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go/storage@v1.6.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/v0.102.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go@v0.102.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/v0.110.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go@v0.110.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/v0.112.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go@v0.112.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/v0.50.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go@v0.50.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/cloud.google.com/go/v0.54.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/cloud.google.com/go@v0.54.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/contrib.go.opencensus.io/exporter/prometheus/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/contrib.go.opencensus.io/exporter/prometheus@v0.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/adal/v0.9.13.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest/adal@v0.9.13 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/adal/v0.9.16.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest/adal@v0.9.16 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/adal/v0.9.20.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest/adal@v0.9.20 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/date/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest/date@v0.3.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/v0.11.18.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest@v0.11.18 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/v0.11.21.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest@v0.11.21 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/autorest/v0.11.27.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/autorest@v0.11.27 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/logger/v0.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/logger@v0.2.1 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Azure/go-autorest/tracing/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Azure/go-autorest/tracing@v0.6.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/BurntSushi/toml/v0.3.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/BurntSushi/toml@v0.3.1 2 | license: MIT 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/MakeNowJust/heredoc/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/MakeNowJust/heredoc@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Masterminds/goutils/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Masterminds/goutils@v1.1.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Masterminds/semver/v3/v3.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Masterminds/semver/v3@v3.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/Masterminds/sprig/v3/v3.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/Masterminds/sprig/v3@v3.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/PuerkitoBio/purell/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/PuerkitoBio/purell@v1.1.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/VividCortex/ewma/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/VividCortex/ewma@v1.1.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/agext/levenshtein/v1.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/agext/levenshtein@v1.2.2 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/agext/levenshtein/v1.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/agext/levenshtein@v1.2.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/apparentlymart/go-cidr/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/apparentlymart/go-cidr@v1.0.1 2 | license: MIT 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/apparentlymart/go-cidr/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/apparentlymart/go-cidr@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/apparentlymart/go-textseg/v15/v15.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/apparentlymart/go-textseg/v15@v15.0.0 2 | license: Apache-2.0, MIT, Unicode-DFS-2016 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/armon/go-radix/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/armon/go-radix@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/aws/aws-sdk-go/v1.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/aws/aws-sdk-go@v1.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/aws/aws-sdk-go/v1.44.180.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/aws/aws-sdk-go@v1.44.180 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/beorn7/perks/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/beorn7/perks@v1.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/bgentry/go-netrc/v0.0.0-20140422174119-9fd32a8b3d3d.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/bgentry/go-netrc@v0.0.0-20140422174119-9fd32a8b3d3d 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/bgentry/speakeasy/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/bgentry/speakeasy@v0.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/blang/semver/v4/v4.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/blang/semver/v4@v4.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/bytecodealliance/wasmtime-go/v0.39.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go@v0.39.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cenkalti/backoff/v2.2.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cenkalti/backoff@v2.2.1+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/census-instrumentation/opencensus-proto/v0.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/census-instrumentation/opencensus-proto@v0.2.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/census-instrumentation/opencensus-proto/v0.4.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/census-instrumentation/opencensus-proto@v0.4.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cespare/xxhash/v2/v2.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cespare/xxhash/v2@v2.1.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cespare/xxhash/v2/v2.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cespare/xxhash/v2@v2.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/chai2010/gettext-go/v1.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/chai2010/gettext-go@v1.0.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cheggaaa/pb/v3/v3.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cheggaaa/pb/v3@v3.0.4 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cncf/udpa/go/v0.0.0-20200313221541-5f7e5dd04533.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cncf/udpa/go@v0.0.0-20200313221541-5f7e5dd04533 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cncf/xds/go/v0.0.0-20231128003011-0fa0005c9caa.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cncf/xds/go@v0.0.0-20231128003011-0fa0005c9caa 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/containerd/stargz-snapshotter/estargz/v0.12.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/containerd/stargz-snapshotter/estargz@v0.12.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/containerd/stargz-snapshotter/estargz/v0.14.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/containerd/stargz-snapshotter/estargz@v0.14.3 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cpuguy83/go-md2man/v2/v2.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cpuguy83/go-md2man/v2@v2.0.0 2 | license: MIT 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cpuguy83/go-md2man/v2/v2.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cpuguy83/go-md2man/v2@v2.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cpuguy83/go-md2man/v2/v2.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cpuguy83/go-md2man/v2@v2.0.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/cyphar/filepath-securejoin/v0.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/cyphar/filepath-securejoin@v0.2.2 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/davecgh/go-spew/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/davecgh/go-spew@v1.1.1 2 | license: ISC -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/cli/v20.10.17+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/cli@v20.10.17+incompatible 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/cli/v23.0.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/cli@v23.0.1+incompatible 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/distribution/v2.7.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/distribution@v2.7.1+incompatible 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/distribution/v2.8.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/distribution@v2.8.1+incompatible 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/distribution/v2.8.2+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/distribution@v2.8.2+incompatible 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker-credential-helpers/v0.6.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker-credential-helpers@v0.6.4 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker-credential-helpers/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker-credential-helpers@v0.7.0 2 | license: MIT 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker/v20.10.17+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker@v20.10.17+incompatible 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker/v23.0.6+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker@v23.0.6+incompatible 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker/v24.0.2+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker@v24.0.2+incompatible 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker/v24.0.7+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker@v24.0.7+incompatible 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/docker/docker/v27.1.2+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/docker/docker@v27.1.2+incompatible 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/dsnet/compress/v0.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/dsnet/compress@v0.0.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v2.16.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful@v2.16.0+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v2.9.5+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful@v2.9.5+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v3/v3.10.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful/v3@v3.10.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v3/v3.11.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful/v3@v3.11.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v3/v3.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful/v3@v3.8.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/emicklei/go-restful/v3/v3.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/emicklei/go-restful/v3@v3.9.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/envoyproxy/go-control-plane/v0.12.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/envoyproxy/go-control-plane@v0.12.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/envoyproxy/protoc-gen-validate/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/envoyproxy/protoc-gen-validate@v0.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/envoyproxy/protoc-gen-validate/v1.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/envoyproxy/protoc-gen-validate@v1.0.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/evanphx/json-patch/v4.12.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/evanphx/json-patch@v4.12.0+incompatible 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/evanphx/json-patch/v4.5.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/evanphx/json-patch@v4.5.0+incompatible 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/evanphx/json-patch/v4.9.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/evanphx/json-patch@v4.9.0+incompatible 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/evanphx/json-patch/v5.6.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/evanphx/json-patch@v5.6.0+incompatible 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/evanphx/json-patch/v5/v5.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/evanphx/json-patch/v5@v5.6.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fatih/camelcase/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fatih/camelcase@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fatih/color/v1.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fatih/color@v1.13.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fatih/color/v1.15.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fatih/color@v1.15.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fatih/color/v1.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fatih/color@v1.7.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/felixge/httpsnoop/v1.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/felixge/httpsnoop@v1.0.4 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/form3tech-oss/jwt-go/v3.2.3+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/form3tech-oss/jwt-go@v3.2.3+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fsnotify/fsnotify/v1.4.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fsnotify/fsnotify@v1.4.7 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fsnotify/fsnotify/v1.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fsnotify/fsnotify@v1.6.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fvbommel/sortorder/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fvbommel/sortorder@v1.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/fvbommel/sortorder/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/fvbommel/sortorder@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gammazero/deque/v0.0.0-20190521012701-46e4ffb7a622.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gammazero/deque@v0.0.0-20190521012701-46e4ffb7a622 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-errors/errors/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-errors/errors@v1.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-errors/errors/v1.4.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-errors/errors@v1.4.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/logr/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/logr@v0.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/logr/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/logr@v1.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/logr/v1.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/logr@v1.2.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/logr/v1.2.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/logr@v1.2.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/logr/v1.4.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/logr@v1.4.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/stdr/v1.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/stdr@v1.2.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-logr/zapr/v1.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-logr/zapr@v1.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonpointer/v0.19.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonpointer@v0.19.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonpointer/v0.19.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonpointer@v0.19.5 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonpointer/v0.19.6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonpointer@v0.19.6 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonreference/v0.19.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonreference@v0.19.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonreference/v0.19.6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonreference@v0.19.6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonreference/v0.20.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonreference@v0.20.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonreference/v0.20.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonreference@v0.20.1 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/jsonreference/v0.20.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/jsonreference@v0.20.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/spec/v0.19.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/spec@v0.19.5 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/swag/v0.19.6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/swag@v0.19.6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/swag/v0.21.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/swag@v0.21.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/go-openapi/swag/v0.22.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/go-openapi/swag@v0.22.3 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gobwas/glob/v0.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gobwas/glob@v0.2.3 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gogo/protobuf/v1.3.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gogo/protobuf@v1.3.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang-jwt/jwt/v4/v4.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang-jwt/jwt/v4@v4.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang-jwt/jwt/v4/v4.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang-jwt/jwt/v4@v4.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/glog/v0.0.0-20160126235308-23def4e6c14b.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/glog@v0.0.0-20160126235308-23def4e6c14b 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/glog/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/glog@v1.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/glog/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/glog@v1.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/glog/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/glog@v1.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/protobuf/v1.3.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/protobuf@v1.3.5 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/protobuf/v1.4.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/protobuf@v1.4.3 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/protobuf/v1.5.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/protobuf@v1.5.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/protobuf/v1.5.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/protobuf@v1.5.3 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/protobuf/v1.5.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/protobuf@v1.5.4 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/golang/snappy/v0.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/golang/snappy@v0.0.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/btree/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/btree@v1.0.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/btree/v1.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/btree@v1.1.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/gnostic-models/v0.6.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/gnostic-models@v0.6.8 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/gnostic/v0.5.7-v3refs.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/gnostic@v0.5.7-v3refs 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/gnostic/v0.6.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/gnostic@v0.6.9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.4.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.5.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.5.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.5.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.5.7 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.5.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.5.8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.5.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.5.9 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cmp/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cmp@v0.6.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-containerregistry/v0.11.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-containerregistry@v0.11.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-containerregistry/v0.14.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-containerregistry@v0.14.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/go-cpy/v0.0.0-20211218193943-a9c933c06932.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/go-cpy@v0.0.0-20211218193943-a9c933c06932 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/gofuzz/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/gofuzz@v1.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/gofuzz/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/gofuzz@v1.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/s2a-go/v0.1.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/s2a-go@v0.1.7 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/shlex/v0.0.0-20191202100458-e7afc7fbc510.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/uuid/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/uuid@v1.1.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/uuid/v1.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/uuid@v1.1.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/uuid/v1.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/uuid@v1.3.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/uuid/v1.3.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/uuid@v1.3.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/google/uuid/v1.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/google/uuid@v1.6.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/enterprise-certificate-proxy/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/enterprise-certificate-proxy@v0.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/enterprise-certificate-proxy/v0.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/enterprise-certificate-proxy@v0.2.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/enterprise-certificate-proxy/v0.3.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/enterprise-certificate-proxy@v0.3.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gax-go/v2/v2.0.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gax-go/v2@v2.0.5 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gax-go/v2/v2.11.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gax-go/v2@v2.11.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gax-go/v2/v2.12.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gax-go/v2@v2.12.3 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gax-go/v2/v2.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gax-go/v2@v2.4.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gnostic/v0.3.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gnostic@v0.3.1 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gnostic/v0.4.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gnostic@v0.4.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/googleapis/gnostic/v0.5.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/googleapis/gnostic@v0.5.5 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gophercloud/gophercloud/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gophercloud/gophercloud@v0.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gosimple/slug/v1.13.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gosimple/slug@v1.13.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/gosimple/unidecode/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/gosimple/unidecode@v1.0.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/grpc-ecosystem/go-grpc-middleware/v1.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/grpc-ecosystem/go-grpc-middleware@v1.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/errwrap/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/errwrap@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-checkpoint/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-checkpoint@v0.5.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-cleanhttp/v0.5.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-cleanhttp@v0.5.2 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-cty/v1.4.1-0.20200414143053-d3edf31b6320.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-cty@v1.4.1-0.20200414143053-d3edf31b6320 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-getter/v1.6.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-getter@v1.6.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-hclog/v0.9.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-hclog@v0.9.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-hclog/v1.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-hclog@v1.2.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-multierror/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-multierror@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-multierror/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-multierror@v1.1.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-plugin/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-plugin@v1.0.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-plugin/v1.4.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-plugin@v1.4.4 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-plugin/v1.4.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-plugin@v1.4.8 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-safetemp/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-safetemp@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-uuid/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-uuid@v1.0.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-uuid/v1.0.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-uuid@v1.0.3 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-version/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-version@v1.2.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/go-version/v1.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/go-version@v1.6.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/hc-install/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/hc-install@v0.4.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/hcl/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/hcl@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/hcl/v2/v2.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/hcl/v2@v2.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/hcl/v2/v2.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/hcl/v2@v2.13.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/hcl/v2/v2.19.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/hcl/v2@v2.19.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/logutils/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/logutils@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-exec/v0.17.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-exec@v0.17.2 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-exec/v0.17.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-exec@v0.17.3 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-json/v0.14.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-json@v0.14.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-framework/v1.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-framework@v1.1.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-go/v0.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-go@v0.10.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-go/v0.14.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-go@v0.14.3 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-log/v0.4.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-log@v0.4.1 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-log/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-log@v0.7.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-sdk/v1.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk@v1.4.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-sdk/v2/v2.18.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk/v2@v2.18.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-plugin-sdk/v2/v2.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk/v2@v2.24.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-provider-google-beta/(devel).yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-provider-google-beta@(devel) 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/terraform-registry-address/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/terraform-registry-address@v0.1.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/hashicorp/yamux/v0.0.0-20181012175058-2f1d1f20f75d.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/hashicorp/yamux@v0.0.0-20181012175058-2f1d1f20f75d 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/huandu/xstrings/v1.3.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/huandu/xstrings@v1.3.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/imdario/mergo/v0.3.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/imdario/mergo@v0.3.12 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/imdario/mergo/v0.3.13.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/imdario/mergo@v0.3.13 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/imdario/mergo/v0.3.15.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/imdario/mergo@v0.3.15 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/imdario/mergo/v0.3.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/imdario/mergo@v0.3.8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/jedib0t/go-pretty/v6/v6.4.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/jedib0t/go-pretty/v6@v6.4.4 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/jmespath/go-jmespath/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/jmespath/go-jmespath@v0.4.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/jonboulle/clockwork/v0.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/jonboulle/clockwork@v0.2.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/josharian/intern/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/josharian/intern@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/json-iterator/go/v1.1.10.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/json-iterator/go@v1.1.10 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/json-iterator/go/v1.1.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/json-iterator/go@v1.1.12 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/json-iterator/go/v1.1.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/json-iterator/go@v1.1.9 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/klauspost/compress/v1.11.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/klauspost/compress@v1.11.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/klauspost/compress/v1.15.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/klauspost/compress@v1.15.8 2 | license: Apache-2.0, BSD-3-Clause, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/klauspost/compress/v1.15.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/klauspost/compress@v1.15.9 2 | license: Apache-2.0, BSD-3-Clause, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/klauspost/compress/v1.16.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/klauspost/compress@v1.16.0 2 | license: Apache-2.0, BSD-3-Clause, MIT 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/kr/pretty/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/kr/pretty@v0.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/kr/text/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/kr/text@v0.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/kylelemons/godebug/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/kylelemons/godebug@v1.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mailru/easyjson/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mailru/easyjson@v0.7.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mailru/easyjson/v0.7.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mailru/easyjson@v0.7.7 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-colorable/v0.1.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-colorable@v0.1.12 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-colorable/v0.1.13.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-colorable@v0.1.13 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-colorable/v0.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-colorable@v0.1.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-isatty/v0.0.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-isatty@v0.0.12 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-isatty/v0.0.14.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-isatty@v0.0.14 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-isatty/v0.0.17.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-isatty@v0.0.17 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-runewidth/v0.0.13.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-runewidth@v0.0.13 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-runewidth/v0.0.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-runewidth@v0.0.7 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mattn/go-runewidth/v0.0.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mattn/go-runewidth@v0.0.9 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/matttproud/golang_protobuf_extensions/v1.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/matttproud/golang_protobuf_extensions@v1.0.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/matttproud/golang_protobuf_extensions/v1.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/matttproud/golang_protobuf_extensions@v1.0.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/matttproud/golang_protobuf_extensions/v2/v2.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/matttproud/golang_protobuf_extensions/v2@v2.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mholt/archiver/v3.1.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mholt/archiver@v3.1.1+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/cli/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/cli@v1.0.0 2 | license: MPL-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/copystructure/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/copystructure@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/copystructure/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/copystructure@v1.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/go-homedir/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/go-homedir@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/go-testing-interface/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/go-testing-interface@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/go-testing-interface/v1.14.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/go-testing-interface@v1.14.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/go-wordwrap/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/go-wordwrap@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/go-wordwrap/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/go-wordwrap@v1.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/hashstructure/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/hashstructure@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/hashstructure/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/hashstructure@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/mapstructure/v1.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/mapstructure@v1.1.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/mapstructure/v1.4.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/mapstructure@v1.4.3 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/mapstructure/v1.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/mapstructure@v1.5.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/reflectwalk/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/reflectwalk@v1.0.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/mitchellh/reflectwalk/v1.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/mitchellh/reflectwalk@v1.0.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/moby/spdystream/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/moby/spdystream@v0.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/moby/term/v0.0.0-20210619224110-3f7ff695adc6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/moby/term@v0.0.0-20210619224110-3f7ff695adc6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/moby/term/v0.0.0-20220808134915-39b0c02b01ae.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/moby/term@v0.0.0-20220808134915-39b0c02b01ae 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/moby/term/v0.0.0-20221205130635-1aeaba878587.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/moby/term@v0.0.0-20221205130635-1aeaba878587 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/modern-go/reflect2/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/modern-go/reflect2@v1.0.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/modern-go/reflect2/v1.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/modern-go/reflect2@v1.0.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/natefinch/lumberjack/v2.0.0+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/natefinch/lumberjack@v2.0.0+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/nwaples/rardecode/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/nwaples/rardecode@v1.0.0 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/oklog/run/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/oklog/run@v1.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/olekukonko/tablewriter/v0.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/olekukonko/tablewriter@v0.0.4 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/olekukonko/tablewriter/v0.0.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/olekukonko/tablewriter@v0.0.5 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/olekukonko/ts/v0.0.0-20171002115256-78ecb04241c0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/olekukonko/ts@v0.0.0-20171002115256-78ecb04241c0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/opencontainers/image-spec/v1.1.0-rc2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/opencontainers/image-spec@v1.1.0-rc2 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/opencontainers/image-spec/v1.1.0-rc3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/opencontainers/image-spec@v1.1.0-rc3 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/otiai10/copy/v1.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/otiai10/copy@v1.7.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/peterbourgon/diskv/v2.0.1+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/peterbourgon/diskv@v2.0.1+incompatible 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/pierrec/lz4/v2.2.7+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/pierrec/lz4@v2.2.7+incompatible 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/pkg/errors/v0.9.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/pkg/errors@v0.9.1 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/pmezard/go-difflib/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/pmezard/go-difflib@v1.0.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/posener/complete/v1.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/posener/complete@v1.2.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/posener/complete/v2/v2.0.1-alpha.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/posener/complete/v2@v2.0.1-alpha.12 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/posener/script/v1.0.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/posener/script@v1.0.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prep/wasmexec/v0.0.0-20220807105708-6554945c1dec.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prep/wasmexec@v0.0.0-20220807105708-6554945c1dec 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_golang/v1.14.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_golang@v1.14.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_golang/v1.16.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_golang@v1.16.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_golang/v1.18.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_golang@v1.18.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_model/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_model@v0.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_model/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_model@v0.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_model/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_model@v0.4.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/client_model/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/client_model@v0.5.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/common/v0.37.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/common@v0.37.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/common/v0.44.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/common@v0.44.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/common/v0.45.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/common@v0.45.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/procfs/v0.10.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/procfs@v0.10.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/procfs/v0.12.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/procfs@v0.12.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/prometheus/procfs/v0.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/prometheus/procfs@v0.8.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/rivo/uniseg/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/rivo/uniseg@v0.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/russross/blackfriday/v1.5.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/russross/blackfriday@v1.5.2 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/russross/blackfriday/v1.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/russross/blackfriday@v1.6.0 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/russross/blackfriday/v2/v2.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/russross/blackfriday/v2@v2.0.1 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/russross/blackfriday/v2/v2.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/russross/blackfriday/v2@v2.1.0 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/sergi/go-diff/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/sergi/go-diff@v1.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/shurcooL/sanitized_anchor_name/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/shurcooL/sanitized_anchor_name@v1.0.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/sirupsen/logrus/v1.8.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/sirupsen/logrus@v1.8.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/sirupsen/logrus/v1.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/sirupsen/logrus@v1.9.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/afero/v1.2.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/afero@v1.2.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cast/v1.3.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cast@v1.3.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.2.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.4.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.5.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.6.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.6.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/cobra/v1.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/cobra@v1.7.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spf13/pflag/v1.0.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spf13/pflag@v1.0.5 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spyzhov/ajson/v0.4.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spyzhov/ajson@v0.4.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spyzhov/ajson/v0.7.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spyzhov/ajson@v0.7.1 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spyzhov/ajson/v0.7.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spyzhov/ajson@v0.7.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/spyzhov/ajson/v0.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/spyzhov/ajson@v0.9.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/stoewer/go-strcase/v1.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/stoewer/go-strcase@v1.0.2 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/stretchr/testify/v1.8.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/stretchr/testify@v1.8.4 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/ulikunitz/xz/v0.5.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/ulikunitz/xz@v0.5.8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/vbatts/tar-split/v0.11.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/vbatts/tar-split@v0.11.2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/vmihailenco/msgpack/v4.0.4+incompatible.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/vmihailenco/msgpack@v4.0.4+incompatible 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/vmihailenco/msgpack/v4/v4.3.12.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/vmihailenco/msgpack/v4@v4.3.12 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/vmihailenco/tagparser/v0.1.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/vmihailenco/tagparser@v0.1.1 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/vmihailenco/tagparser/v0.1.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/vmihailenco/tagparser@v0.1.2 2 | license: BSD-2-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/xeipuuv/gojsonschema/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/xeipuuv/gojsonschema@v1.1.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/xlab/treeprint/v0.0.0-20181112141820-a009c3971eca.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/xlab/treeprint@v0.0.0-20181112141820-a009c3971eca 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/xlab/treeprint/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/xlab/treeprint@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/xlab/treeprint/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/xlab/treeprint@v1.2.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/zclconf/go-cty-yaml/v1.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/zclconf/go-cty-yaml@v1.0.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/zclconf/go-cty/v1.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/zclconf/go-cty@v1.10.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/zclconf/go-cty/v1.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/zclconf/go-cty@v1.13.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/github.com/zclconf/go-cty/v1.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/github.com/zclconf/go-cty@v1.4.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opencensus.io/v0.22.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opencensus.io@v0.22.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opencensus.io/v0.22.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opencensus.io@v0.22.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opencensus.io/v0.23.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opencensus.io@v0.23.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opencensus.io/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opencensus.io@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opentelemetry.io/otel/metric/v1.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opentelemetry.io/otel/metric@v1.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opentelemetry.io/otel/trace/v1.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opentelemetry.io/otel/trace@v1.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.opentelemetry.io/otel/v1.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.opentelemetry.io/otel@v1.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/go.starlark.net/v0.0.0-20200306205701-8dd3e2ee1dd5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.starlark.net@v0.0.0-20200306205701-8dd3e2ee1dd5 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/go.starlark.net/v0.0.0-20210901212718-87f333178d59.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.starlark.net@v0.0.0-20210901212718-87f333178d59 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/go.starlark.net/v0.0.0-20230525235612-a134d8f9ddca.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.starlark.net@v0.0.0-20230525235612-a134d8f9ddca 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/go.uber.org/atomic/v1.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.uber.org/atomic@v1.4.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/go.uber.org/multierr/v1.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.uber.org/multierr@v1.1.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/go.uber.org/multierr/v1.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.uber.org/multierr@v1.10.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/go.uber.org/zap/v1.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.uber.org/zap@v1.10.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/go.uber.org/zap/v1.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/go.uber.org/zap@v1.26.0 2 | license: MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.0.0-20220214200702-86341886e292.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.0.0-20220214200702-86341886e292 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.0.0-20220315160706-3147a52a75dd.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.0.0-20220315160706-3147a52a75dd 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.0.0-20220331220935-ae2d96664a29.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.0.0-20220331220935-ae2d96664a29 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.0.0-20220517005047-85d78b3ac167.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.0.0-20220517005047-85d78b3ac167 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.14.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.14.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.17.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.17.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/crypto/v0.22.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/crypto@v0.22.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.10.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.11.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.11.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.6.0-dev.0.20220106191415-9b9b3d81d5e3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.6.0-dev.0.20220419223038-86c51ed26bb4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.6.0-dev.0.20220419223038-86c51ed26bb4 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.7.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.8.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/mod/v0.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/mod@v0.9.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.0.0-20220127200216-cd36cc0744dd.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.0.0-20220127200216-cd36cc0744dd 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.0.0-20220412020605-290c469a71a5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.0.0-20220412020605-290c469a71a5 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.0.0-20220708220712-1185a9018129.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.0.0-20220708220712-1185a9018129 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.0.0-20221004154528-8021a29435af.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.0.0-20221004154528-8021a29435af 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.17.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.17.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.2.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.24.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.5.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.7.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.8.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/net/v0.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/net@v0.9.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20190604053449-0f29369cfe45.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20200107190931-bf48bf16ab8d.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20200107190931-bf48bf16ab8d 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20220411215720-9780585627b5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20220411215720-9780585627b5 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20220622183110-fd043fe589d2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20220622183110-fd043fe589d2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20220718184931-c8730f7fcb92.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20220718184931-c8730f7fcb92 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.0.0-20221014153046-6fdb5e3db783.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.0.0-20221014153046-6fdb5e3db783 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.10.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.10.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.19.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.19.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.6.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/oauth2/v0.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/oauth2@v0.8.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.0.0-20220601150217-0de741cfad7f.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.0.0-20220601150217-0de741cfad7f 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.0.0-20220722155255-886fb9371eb4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.0.0-20220722155255-886fb9371eb4 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.1.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.1.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.2.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.3.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sync/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sync@v0.7.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.0.0-20220412211240-33da011f77ad.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.0.0-20220412211240-33da011f77ad 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.0.0-20220517195934-5e4e11fc645e.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.0.0-20220517195934-5e4e11fc645e 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.0.0-20220715151400-c0bba94af5f8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.0.0-20220715151400-c0bba94af5f8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.0.0-20220728004956-3c1f35247d10.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.0.0-20220728004956-3c1f35247d10 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.13.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.15.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.15.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.19.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.19.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.2.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.4.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.5.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.6.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/sys/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/sys@v0.7.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.0.0-20210927222741-03fcf44c2211.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.0.0-20210927222741-03fcf44c2211 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.13.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.15.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.15.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.19.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.19.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.2.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.4.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.5.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.6.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/term/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/term@v0.7.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.13.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.14.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.14.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.3.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.3.7 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.4.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.6.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.7.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.7.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.8.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.8.0 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/text/v0.9.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/text@v0.9.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.0.0-20190921001708-c4c64cad1fd0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.0.0-20190921001708-c4c64cad1fd0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.0.0-20200630173020-3af7569d3a1e.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.0.0-20200630173020-3af7569d3a1e 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.0.0-20210723032227-1f47c861a9ac.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.0.0-20210723032227-1f47c861a9ac 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.0.0-20220210224613-90d013bbcef8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.0.0-20220210224613-90d013bbcef8 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.0.0-20220609170525-579cf78fd858.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.0.0-20220609170525-579cf78fd858 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.3.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/time/v0.5.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/time@v0.5.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/xerrors/v0.0.0-20200804184101-5ec99f83aff1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/xerrors@v0.0.0-20200804184101-5ec99f83aff1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/xerrors/v0.0.0-20220609144429-65e65417b02f.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/xerrors@v0.0.0-20220609144429-65e65417b02f 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/golang.org/x/xerrors/v0.0.0-20220907171357-04be3eba64a2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/golang.org/x/xerrors@v0.0.0-20220907171357-04be3eba64a2 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/gomodules.xyz/jsonpatch/v2/v2.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gomodules.xyz/jsonpatch/v2@v2.3.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/api/v0.177.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/api@v0.177.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/api/v0.22.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/api@v0.22.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/api/v0.92.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/api@v0.92.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/genproto/v0.0.0-20191223191004-3caeed10a8bf.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/genproto@v0.0.0-20191223191004-3caeed10a8bf 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/genproto/v0.0.0-20200526211855-cb27e3aa2013.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/genproto@v0.0.0-20200526211855-cb27e3aa2013 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/genproto/v0.0.0-20220725144611-272f38e5d71b.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/genproto@v0.0.0-20220725144611-272f38e5d71b 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/genproto/v0.0.0-20230711160842-782d3b101e98.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/genproto@v0.0.0-20230711160842-782d3b101e98 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/genproto/v0.0.0-20240401170217-c3f982113cda.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/genproto@v0.0.0-20240401170217-c3f982113cda 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/grpc/v1.28.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/grpc@v1.28.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/grpc/v1.48.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/grpc@v1.48.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/grpc/v1.58.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/grpc@v1.58.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/grpc/v1.63.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/grpc@v1.63.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.25.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.25.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.28.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.28.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.28.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.28.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.29.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.29.1 2 | license: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.31.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.31.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.33.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.33.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/google.golang.org/protobuf/v1.34.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/google.golang.org/protobuf@v1.34.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/evanphx/json-patch.v5/v5.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/evanphx/json-patch.v5@v5.6.0 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/inf.v0/v0.9.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/inf.v0@v0.9.1 2 | license: BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/yaml.v2/v2.2.8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/yaml.v2@v2.2.8 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/yaml.v2/v2.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/yaml.v2@v2.4.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/yaml.v3/v3.0.0-20191026110619-0b21df46bc1d.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/yaml.v3@v3.0.0-20191026110619-0b21df46bc1d 2 | license: Apache-2.0, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/yaml.v3/v3.0.0-20210107192922-496545a6307b.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b 2 | license: Apache-2.0, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/gopkg.in/yaml.v3/v3.0.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/gopkg.in/yaml.v3@v3.0.1 2 | license: Apache-2.0, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/helm.sh/helm/v3/v3.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/helm.sh/helm/v3@v3.2.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/istio.io/api/v0.0.0-20200724154434-34e474846e0d.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/istio.io/api@v0.0.0-20200724154434-34e474846e0d 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/istio.io/gogo-genproto/v0.0.0-20200709220749-8607e17318e8.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/istio.io/gogo-genproto@v0.0.0-20200709220749-8607e17318e8 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/istio.io/pkg/v0.0.0-20200709220414-14d5de656564.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/istio.io/pkg@v0.0.0-20200709220414-14d5de656564 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.18.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.18.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.20.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.20.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.23.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.23.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.26.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.27.11.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.27.11 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/api/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/api@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apiextensions-apiserver/v0.18.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apiextensions-apiserver@v0.18.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apiextensions-apiserver/v0.23.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apiextensions-apiserver@v0.23.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apiextensions-apiserver/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apiextensions-apiserver@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apiextensions-apiserver/v0.27.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apiextensions-apiserver@v0.27.9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.18.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.18.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.20.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.20.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.23.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.23.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.25.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.25.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.26.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.27.11.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.27.11 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/apimachinery/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/apimachinery@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.26.0 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/cli-runtime/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/cli-runtime@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.18.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.18.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.20.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.20.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.23.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.23.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.26.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.27.11.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.27.11 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/client-go/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/client-go@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.26.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.27.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.27.9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/component-base/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/component-base@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v1.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog@v1.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.100.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.100.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.4.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.60.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.60.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.70.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.70.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.90.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.90.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/klog/v2/v2.90.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/klog/v2@v2.90.1 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20200410145947-61e04a5be9a6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20200410145947-61e04a5be9a6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20211115234752-e816edb12b65.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20211115234752-e816edb12b65 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20220401212409-b28bf2818661.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20220401212409-b28bf2818661 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20220413171646-5e7f5fdc6da6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20220413171646-5e7f5fdc6da6 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20220803162953-67bda5d908f1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20220803162953-67bda5d908f1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20230109183929-3758b55a6596.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20230109183929-3758b55a6596 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20230501164219-8b0f38b5fd1f.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20230501164219-8b0f38b5fd1f 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kube-openapi/v0.0.0-20230717233707-2695361300d9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kube-openapi@v0.0.0-20230717233707-2695361300d9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.18.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.18.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.24.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.24.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.25.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.25.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.26.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.26.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.26.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.26.7 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.26.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.26.9 2 | license: Apache-2.0 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/kubectl/v0.28.4.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/kubectl@v0.28.4 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20200324210504-a9aa75ae1b89.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20200324210504-a9aa75ae1b89 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20201110183641-67b214c5f920.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20201110183641-67b214c5f920 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20220210201930-3a6ce19ff2f9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20220210201930-3a6ce19ff2f9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20220823124924-e9cbc92d1a73.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20220823124924-e9cbc92d1a73 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20221108210102-8e77b1f39fe2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20221108210102-8e77b1f39fe2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20230115233650-391b47cb4029.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20230115233650-391b47cb4029 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20230505201702-9f6742963106.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20230505201702-9f6742963106 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/k8s.io/utils/v0.0.0-20230726121419-3b25d923346b.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/k8s.io/utils@v0.0.0-20230726121419-3b25d923346b 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/cli-utils/v0.32.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/cli-utils@v0.32.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/cli-utils/v0.33.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/cli-utils@v0.33.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/cli-utils/v0.34.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/cli-utils@v0.34.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/cli-utils/v0.35.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/cli-utils@v0.35.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/cli-utils/v0.36.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/cli-utils@v0.36.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.11.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.11.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.11.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.11.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.13.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.13.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.14.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.14.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.15.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.15.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.16.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.16.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/controller-runtime/v0.6.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.6.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/json/v0.0.0-20211020170558-c049b76a60c6.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/json@v0.0.0-20211020170558-c049b76a60c6 2 | license: Apache-2.0, BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/json/v0.0.0-20211208200746-9f7c6b3444d2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/json@v0.0.0-20211208200746-9f7c6b3444d2 2 | license: Apache-2.0, BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/json/v0.0.0-20220713155537-f223a00ba0e2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/json@v0.0.0-20220713155537-f223a00ba0e2 2 | license: Apache-2.0, BSD-3-Clause -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/json/v0.0.0-20221116044647-bc3834ca7abd.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/json@v0.0.0-20221116044647-bc3834ca7abd 2 | license: Apache-2.0,BSD-3-Clause 3 | -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kubebuilder-declarative-pattern/v0.15.0-beta.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kubebuilder-declarative-pattern@v0.15.0-beta.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/api/v0.11.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/api@v0.11.5 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/api/v0.12.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/api@v0.12.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/api/v0.15.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/api@v0.15.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/kyaml/v0.0.5.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/kyaml@v0.0.5 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/kyaml/v0.13.7.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/kyaml@v0.13.7 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/kyaml/v0.13.9.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/kyaml@v0.13.9 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/kustomize/kyaml/v0.15.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/kustomize/kyaml@v0.15.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v3/v3.0.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v3@v3.0.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v4/v4.0.2.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v4@v4.0.2 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v4/v4.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v4@v4.2.0 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v4/v4.2.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v4@v4.2.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v4/v4.2.3.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v4@v4.2.3 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/structured-merge-diff/v4/v4.4.1.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/structured-merge-diff/v4@v4.4.1 2 | license: Apache-2.0 -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/yaml/v1.2.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/yaml@v1.2.0 2 | license: BSD-3-Clause, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/yaml/v1.3.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/yaml@v1.3.0 2 | license: BSD-3-Clause, MIT -------------------------------------------------------------------------------- /tools/licensescan/modules/sigs.k8s.io/yaml/v1.4.0.yaml: -------------------------------------------------------------------------------- 1 | # https://pkg.go.dev/sigs.k8s.io/yaml@v1.4.0 2 | license: BSD-3-Clause, MIT --------------------------------------------------------------------------------