-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redirect imports to OpenCHAMI smd and rehome
- Loading branch information
1 parent
0da5f71
commit 898b116
Showing
11 changed files
with
58 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,5 @@ kubernetes/.packaged/ | |
*.csr | ||
*.key | ||
*.pem | ||
dist/ | ||
|
||
# compiled go command | ||
boot-script-service |
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
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 |
---|---|---|
@@ -1,16 +1,53 @@ | ||
module github.com/Cray-HPE/hms-bss | ||
module github.com/OpenCHAMI/bss | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/Cray-HPE/hms-base v1.15.0 | ||
github.com/Cray-HPE/hms-hmetcd v1.10.2 | ||
github.com/Cray-HPE/hms-s3 v1.9.2 | ||
github.com/Cray-HPE/hms-smd v1.30.9 | ||
|
||
github.com/docker/distribution v2.7.1+incompatible | ||
github.com/evanphx/json-patch v4.9.0+incompatible | ||
github.com/google/uuid v1.1.1 | ||
github.com/jmoiron/sqlx v1.2.0 | ||
github.com/lib/pq v1.3.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/Cray-HPE/hms-certs v1.3.2 // indirect | ||
github.com/Cray-HPE/hms-securestorage v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go v1.29.2 // indirect | ||
github.com/coreos/etcd v3.3.13+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.1 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/api v1.0.4 // indirect | ||
github.com/hashicorp/vault/sdk v0.1.13 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.3.0 // indirect | ||
github.com/pierrec/lz4 v2.4.1+incompatible // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
go.etcd.io/etcd v3.3.13+incompatible // indirect | ||
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 // indirect | ||
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc // indirect | ||
golang.org/x/sys v0.0.0-20200817155316-9781c653f443 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
google.golang.org/genproto v0.0.0-20200815001618-f69a88009b70 // indirect | ||
google.golang.org/grpc v1.29.1 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.3.1 // indirect | ||
) |
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