-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OSTree Plugin #28
Merged
Merged
OSTree Plugin #28
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
4c078da
adds plugins.md as starting point for plugin how-to documentation
1a683b2
adds IsTLSMiddleware for convenience
f94b00e
ignore intellij project state files
60456e8
refactors service to a non-generic form
e3c4d74
initial implementation of ostree plugin (without mirroring)
a0e014e
gofumpt
0124423
gofumpt
f34ec0c
adds plugins.md as starting point for plugin how-to documentation
052611d
adds IsTLSMiddleware for convenience
46978c5
ignore intellij project state files
4375255
refactors service to a non-generic form
95adf48
initial implementation of ostree plugin (without mirroring)
29f5dbb
gofumpt
80d309d
gofumpt
d4db914
Merge branch 'main' into docs
d75a5b1
various changes from PR review
efa5db0
Merge remote-tracking branch 'origin/docs' into docs
7b00e6d
more fixes for linter
6fb8f97
Merge branch 'main' into docs
70da0f2
adds libostree testdata to gitignore
aac24f2
libostree finished
9478fb4
fixes various bugs discovered after manual testing
7876f55
gofumpt
4320e9c
removes unused dockerfile
3158651
fixes unit test build failure by introducing buildEnv and buildExecSt…
feae074
removes mistaken C import causing mage to no longer see test targets.
793ac41
fixes logic error in Depth() libostree option
0109dc8
Merge remote-tracking branch 'upstream/main' into docs
9d39093
rebase upstream main
fb8337f
removed comments again...
85c6ea5
fixes linter issues
7049ce3
adds libostree testdata
bca7378
adds libostree testdata
a95e957
adds --priviledged option to test:unit container
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The loop introduced to set up the environment for the linter based on each binary's settings could lead to conflicts if binaries have different settings. Consider implementing a check to ensure that there are no conflicting settings or redesigning this to isolate environments per binary.