-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adds plugins.md as starting point for plugin how-to documentation links README.md to plugins.md * adds IsTLSMiddleware for convenience refactors repository.Manager to non-generic form to allow nil without needing to satisfy generic constraints refactors code depending on generic repository.Manager to new non-generic form various comments * ignore intellij project state files * refactors service to a non-generic form * initial implementation of ostree plugin (without mirroring) refactors yum plugin executable to use new non-generic Serve refactors static plugin executable to use new non-generic Serve * gofumpt refactors beskctl to use cobra adds beskarctl ostree sub-command tree adds beskarctl static file sub-command tree documents beskarctl * gofumpt fixes kun command typos adds summary.sig as known tag changes regex separator from file to repo refactors beskarctl to use cobra refactors beskarctl subcommands into packages implements beskarctl ostree push fixes ostree router.rego request body issue * adds plugins.md as starting point for plugin how-to documentation links README.md to plugins.md * adds IsTLSMiddleware for convenience refactors repository.Manager to non-generic form to allow nil without needing to satisfy generic constraints refactors code depending on generic repository.Manager to new non-generic form various comments * ignore intellij project state files * refactors service to a non-generic form * initial implementation of ostree plugin (without mirroring) refactors yum plugin executable to use new non-generic Serve refactors static plugin executable to use new non-generic Serve * gofumpt refactors beskctl to use cobra adds beskarctl ostree sub-command tree adds beskarctl static file sub-command tree documents beskarctl * gofumpt fixes kun command typos adds summary.sig as known tag changes regex separator from file to repo refactors beskarctl to use cobra refactors beskarctl subcommands into packages implements beskarctl ostree push fixes ostree router.rego request body issue * various changes from PR review fixes for linter * more fixes for linter adds ostree helm chart regens ostree api for future work * adds libostree testdata to gitignore * libostree finished ostree plugin finished (needs testing) * fixes various bugs discovered after manual testing renames ostree to libostree to better represent what it does implements GCancellable to allow c functions to respect go context.Context * gofumpt linter fixes * removes unused dockerfile * fixes unit test build failure by introducing buildEnv and buildExecStmts from binaryConfigs attempts to ignore ALL intellij files this time renames free freeFunc to deferFree deferredFreeFn for a more clear api bumps beskar-ostree go version to match others * removes mistaken C import causing mage to no longer see test targets. removes intellij files fixes timeFormat constant per coderabbit suggestion * fixes logic error in Depth() libostree option * rebase upstream main fixes copyright headers * removed comments again... * fixes linter issues * adds libostree testdata adds documentation about generating libostree testdata * adds libostree testdata changes libostree to write to /tmp instead of ./testdata * adds --priviledged option to test:unit container
- Loading branch information
Kyle Ishie
authored
Jan 15, 2024
1 parent
6aec20b
commit 01976d3
Showing
93 changed files
with
4,750 additions
and
163 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 |
---|---|---|
|
@@ -3,3 +3,7 @@ build/output | |
.envrc.local | ||
vendor | ||
go.work.sum | ||
|
||
|
||
*/.idea | ||
/.idea/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v2 | ||
description: A Helm chart for Beskar OSTree Repository Plugin | ||
name: beskar-ostree | ||
version: 0.0.1 | ||
appVersion: 0.0.1 | ||
home: https://github.com/ctrliq/beskar | ||
maintainers: | ||
- email: [email protected] | ||
name: CtrlIQ Inc. | ||
url: https://github.com/ctrliq/beskar | ||
sources: | ||
- https://github.com/ctrliq/beskar |
Oops, something went wrong.