-
Notifications
You must be signed in to change notification settings - Fork 1
chore: update usage of minio admin library #28
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
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 hidden or 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,102 @@ | ||
# Folders | ||
_obj | ||
_test | ||
.cover | ||
|
||
# IntelliJ IDEA project files | ||
.idea | ||
*.ipr | ||
*.iml | ||
*.iws | ||
|
||
### Logs ### | ||
*.log | ||
logs/ | ||
|
||
### direnv ### | ||
.envrc | ||
.direnv/ | ||
|
||
### Temp directories ### | ||
tmp/ | ||
temp/ | ||
|
||
### Visual Studio ### | ||
.vscode/ | ||
|
||
### macOS ### | ||
# General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
### Git ### | ||
# Created by git for backups. To disable backups in Git: | ||
# $ git config --global mergetool.keepBackup false | ||
*.orig | ||
|
||
# Created by git when using merge tools for conflicts | ||
*.BACKUP.* | ||
*.BASE.* | ||
*.LOCAL.* | ||
*.REMOTE.* | ||
*_BACKUP_*.txt | ||
*_BASE_*.txt | ||
*_LOCAL_*.txt | ||
*_REMOTE_*.txt | ||
|
||
### Go ### | ||
# Files that shouldn't be shared | ||
go.work | ||
go.work.sum | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
### Tags ### | ||
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope | ||
TAGS | ||
.TAGS | ||
!TAGS/ | ||
tags | ||
.tags | ||
!tags/ | ||
gtags.files | ||
GTAGS | ||
GRTAGS | ||
GPATH | ||
GSYMS | ||
cscope.files | ||
cscope.out | ||
cscope.in.out | ||
cscope.po.out | ||
|
||
# Log files (if you are creating logs in debug mode, uncomment this) | ||
# *.log | ||
|
||
### Vagrant Patch ### | ||
*.box | ||
|
||
### Vim ### | ||
# Swap | ||
[._]*.s[a-v][a-z] | ||
[._]*.sw[a-p] | ||
[._]s[a-rt-v][a-z] | ||
[._]ss[a-gi-z] | ||
[._]sw[a-p] |
This file contains hidden or 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,9 @@ | ||
This product includes software developed at MinIO, Inc. | ||
(https://min.io/). | ||
|
||
The Boundary MinIO Plugin contains unmodified | ||
subcomponents of the Minio madmin-go library v1.7.5 | ||
(https://github.com/minio/madmin-go/tree/v1.7.5), | ||
licensed under the Apache License 2.0. | ||
|
||
See `madmin/LICENSE` for the full license text. |
This file contains hidden or 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,92 +1,74 @@ | ||
module github.com/hashicorp/boundary-plugin-minio | ||
|
||
go 1.22.2 | ||
go 1.23.4 | ||
|
||
replace github.com/hashicorp/boundary-plugin-minio/madmin => ./madmin | ||
johanbrandhorst marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
require ( | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.5.0 | ||
github.com/hashicorp/boundary/sdk v0.0.43-0.20240717182311-a20aae98794a | ||
github.com/google/uuid v1.6.0 | ||
github.com/hashicorp/boundary-plugin-minio/madmin v0.0.0-00010101000000-000000000000 | ||
github.com/hashicorp/boundary/sdk v0.0.49 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/minio/madmin-go/v3 v3.0.48 | ||
github.com/minio/minio-go/v7 v7.0.67 | ||
github.com/ory/dockertest/v3 v3.10.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/minio/minio-go/v7 v7.0.83 | ||
github.com/ory/dockertest/v3 v3.11.0 | ||
github.com/stretchr/testify v1.9.0 | ||
google.golang.org/grpc v1.61.0 | ||
google.golang.org/protobuf v1.33.0 | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect | ||
github.com/Microsoft/go-winio v0.6.2 // indirect | ||
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect | ||
github.com/cenkalti/backoff/v4 v4.1.3 // indirect | ||
github.com/containerd/continuity v0.3.0 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/containerd/continuity v0.4.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/cli v20.10.17+incompatible // indirect | ||
github.com/docker/docker v24.0.9+incompatible // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/docker/cli v26.1.4+incompatible // indirect | ||
github.com/docker/docker v27.5.0+incompatible // indirect | ||
github.com/docker/go-connections v0.5.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/go-ini/ini v1.67.0 // indirect | ||
github.com/goccy/go-json v0.10.4 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/eventlogger v0.2.6-0.20231025104552-802587e608f0 // indirect | ||
github.com/hashicorp/eventlogger/filters/encrypt v0.1.8-0.20231025104552-802587e608f0 // indirect | ||
github.com/hashicorp/go-kms-wrapping/v2 v2.0.14 // indirect | ||
github.com/hashicorp/go-uuid v1.0.3 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.17.4 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.6 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20230110061619-bbe2e5e100de // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.9 // indirect | ||
github.com/minio/md5-simd v1.1.2 // indirect | ||
github.com/minio/sha256-simd v1.0.1 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/pointerstructure v1.2.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/moby/docker-image-spec v1.3.1 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/opencontainers/runc v1.1.14 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/prometheus/prom2json v1.3.3 // indirect | ||
github.com/rs/xid v1.5.0 // indirect | ||
github.com/safchain/ethtool v0.3.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/rs/xid v1.6.0 // indirect | ||
github.com/secure-io/sio-go v0.3.1 // indirect | ||
github.com/shirou/gopsutil/v3 v3.23.12 // indirect | ||
github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/tinylib/msgp v1.1.8 // indirect | ||
github.com/tklauser/go-sysconf v0.3.12 // indirect | ||
github.com/tklauser/numcpus v0.6.1 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.3 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/mod v0.9.0 // indirect | ||
golang.org/x/net v0.24.0 // indirect | ||
golang.org/x/sync v0.5.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.7.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.