generated from d2iq-archive/golang-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support repository path prefix for serve bundle (#810)
This allows for specifying different repositories for a previously built bundle, very useful when building air-gapped environments to mimic Harbor which requires inserting a prefix for the project name.
- Loading branch information
1 parent
39333cf
commit 5ec2bb8
Showing
4 changed files
with
156 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
{ | ||
"packages": [ | ||
"actionlint@latest", | ||
"coreutils@latest", | ||
"crane@latest", | ||
"fd@latest", | ||
"ginkgo@latest", | ||
"git@latest", | ||
"gnused@latest", | ||
"gnugrep@latest", | ||
"go@latest", | ||
"go-task@latest", | ||
"gojq@latest", | ||
"golangci-lint@latest", | ||
"golines@latest", | ||
"goreleaser@latest", | ||
"gotestsum@latest", | ||
"ko@latest", | ||
"kubernetes-helm@latest", | ||
"pre-commit@latest", | ||
"shfmt@latest", | ||
"upx@latest", | ||
"path:./hack/flakes#go-mod-upgrade", | ||
"path:./hack/flakes#govulncheck" | ||
] | ||
"packages": { | ||
"actionlint": "latest", | ||
"coreutils": "latest", | ||
"crane": "latest", | ||
"darwin.Security": { | ||
"version": "latest", | ||
"platforms": ["aarch64-darwin"] | ||
}, | ||
"fd": "latest", | ||
"ginkgo": "latest", | ||
"git": "latest", | ||
"gnused": "latest", | ||
"gnugrep": "latest", | ||
"go": "latest", | ||
"go-task": "latest", | ||
"gojq": "latest", | ||
"golangci-lint": "latest", | ||
"golines": "latest", | ||
"goreleaser": "latest", | ||
"gotestsum": "latest", | ||
"ko": "latest", | ||
"kubernetes-helm": "latest", | ||
"pre-commit": "latest", | ||
"shfmt": "latest", | ||
"upx": "latest", | ||
"path:./hack/flakes#go-mod-upgrade": "", | ||
"path:./hack/flakes#govulncheck": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters