From 2c4a8bcaf406cd98f7804ba1cd573e3dcab9a171 Mon Sep 17 00:00:00 2001 From: Mike Buchmann <76961856+mbuchmann-hpe@users.noreply.github.com> Date: Wed, 28 Jul 2021 16:28:28 -0500 Subject: [PATCH] Github3 csm1.1 (#10) * Replaced stash with github.com * Update to artifactory server * Version to 1.8.3 * Changed vault-kv-enabler version to 1.12.5 --- .version | 2 +- CHANGELOG.md | 7 ++ Dockerfile | 10 +- Dockerfile.functionaltesting.Dockerfile | 8 +- Dockerfile.integration.Dockerfile | 10 +- Dockerfile.unittesting.Dockerfile | 18 +-- cmd/hms-firmware-action/main.go | 16 +-- cmd/hms-firmware-action/updateScheduler.go | 10 +- docker-compose.developer.environment.yaml | 12 +- docker-compose.developer.full.yaml | 12 +- docker-compose.test.integration.yaml | 10 +- docker-compose.test.unit.yaml | 10 +- go.mod | 20 +-- go.sum | 118 ++++-------------- internal/api/actions.go | 8 +- internal/api/actions_test.go | 8 +- internal/api/api_helpers.go | 2 +- internal/api/images.go | 8 +- internal/api/images_test.go | 8 +- internal/api/loader.go | 4 +- internal/api/service_status.go | 2 +- internal/api/service_status_test.go | 2 +- internal/api/snapshots.go | 6 +- internal/api/snapshots_test.go | 8 +- internal/api/unit_test_helpers.go | 10 +- internal/domain/actions.go | 6 +- internal/domain/actions_test.go | 4 +- internal/domain/createUpdateList.go | 6 +- internal/domain/globals.go | 8 +- internal/domain/images.go | 6 +- internal/domain/images_test.go | 4 +- internal/domain/loader.go | 4 +- internal/domain/service_status.go | 2 +- internal/domain/snapshots.go | 8 +- internal/domain/snapshots_test.go | 4 +- internal/domain/unit_test_helpers.go | 6 +- internal/domain/validation.go | 6 +- internal/domain/validation_test.go | 2 +- internal/domain/version.go | 8 +- internal/hsm/interface.go | 2 +- internal/hsm/models.go | 10 +- internal/hsm/models_test.go | 6 +- internal/hsm/state_manager.go | 6 +- internal/hsm/vault.go | 4 +- internal/presentation/actions.go | 4 +- internal/presentation/images.go | 4 +- internal/presentation/snapshots.go | 2 +- internal/storage/actions.go | 6 +- internal/storage/base_parameters.go | 2 +- internal/storage/etcd_impl.go | 2 +- internal/storage/images.go | 2 +- internal/storage/snapshots.go | 2 +- internal/test/mock.go | 6 +- .../cray-hms-firmware-action/Chart.yaml | 2 +- test/integration/py/Dockerfile | 10 +- .../Cray-HPE}/hms-base/.gitignore | 0 vendor/github.com/Cray-HPE/hms-base/.version | 1 + .../Cray-HPE}/hms-base/CHANGELOG.md | 12 ++ .../Cray-HPE}/hms-base/Dockerfile | 6 +- .../Cray-HPE}/hms-base/Dockerfile.build-base | 4 +- .../Cray-HPE}/hms-base/Dockerfile.coverage | 2 +- .../Cray-HPE}/hms-base/Dockerfile.testing | 2 +- .../Cray-HPE/hms-base/Jenkinsfile.github | 34 +++++ .../Cray-HPE}/hms-base/LICENSE | 0 vendor/github.com/Cray-HPE/hms-base/Makefile | 11 ++ .../Cray-HPE}/hms-base/configWatch.go | 0 .../Cray-HPE}/hms-base/doc.go | 0 .../Cray-HPE}/hms-base/go.mod | 2 +- .../Cray-HPE}/hms-base/go.sum | 1 - .../Cray-HPE}/hms-base/hmserr.go | 0 .../Cray-HPE}/hms-base/hmslimits.go | 0 .../Cray-HPE}/hms-base/hmstypes.go | 0 .../Cray-HPE}/hms-base/http.go | 0 .../Cray-HPE}/hms-base/runCoverage.sh | 0 .../Cray-HPE}/hms-base/runUnitTest.sh | 0 .../Cray-HPE}/hms-base/util.go | 0 .../Cray-HPE}/hms-base/worker-pool.go | 0 .../Cray-HPE}/hms-certs/LICENSE | 0 .../hms-certs/pkg/hms_certs/certs.go | 4 +- .../Cray-HPE}/hms-compcredentials/.gitignore | 0 .../Cray-HPE/hms-compcredentials/.version | 1 + .../hms-compcredentials/CHANGELOG.md | 12 ++ .../Cray-HPE}/hms-compcredentials/Dockerfile | 6 +- .../hms-compcredentials/Dockerfile.build-base | 4 +- .../hms-compcredentials/Dockerfile.coverage | 2 +- .../hms-compcredentials/Dockerfile.testing | 2 +- .../Cray-HPE}/hms-compcredentials/Jenkinsfile | 0 .../hms-compcredentials/Jenkinsfile.github | 34 +++++ .../Cray-HPE}/hms-compcredentials/LICENSE | 0 .../Cray-HPE/hms-compcredentials/Makefile | 11 ++ .../hms-compcredentials/compCredentials.go | 6 +- .../Cray-HPE}/hms-compcredentials/go.mod | 4 +- .../Cray-HPE}/hms-compcredentials/go.sum | 6 +- .../hms-compcredentials/runCoverage.sh | 0 .../hms-compcredentials/runUnitTest.sh | 0 .../Cray-HPE}/hms-hmetcd/.gitignore | 0 .../github.com/Cray-HPE/hms-hmetcd/.version | 1 + .../Cray-HPE}/hms-hmetcd/CHANGELOG.md | 12 ++ .../Cray-HPE}/hms-hmetcd/Dockerfile | 6 +- .../hms-hmetcd/Dockerfile.build-base | 4 +- .../Cray-HPE}/hms-hmetcd/Dockerfile.coverage | 2 +- .../Cray-HPE}/hms-hmetcd/Dockerfile.testing | 2 +- .../Cray-HPE}/hms-hmetcd/Jenkinsfile | 0 .../Cray-HPE/hms-hmetcd/Jenkinsfile.github | 40 ++++++ .../Cray-HPE}/hms-hmetcd/LICENSE | 0 .../github.com/Cray-HPE/hms-hmetcd/Makefile | 34 +++++ .../Cray-HPE}/hms-hmetcd/README.txt | 0 .../Cray-HPE}/hms-hmetcd/doc.go | 0 .../Cray-HPE}/hms-hmetcd/go.mod | 5 +- .../Cray-HPE}/hms-hmetcd/go.sum | 19 --- .../Cray-HPE}/hms-hmetcd/kvs_etcd.go | 0 .../Cray-HPE}/hms-hmetcd/runCoverage.sh | 0 .../Cray-HPE}/hms-hmetcd/runUnitTest.sh | 0 .../Cray-HPE}/hms-securestorage/.gitignore | 0 .../Cray-HPE/hms-securestorage/.version | 1 + .../Cray-HPE}/hms-securestorage/CHANGELOG.md | 12 ++ .../Cray-HPE}/hms-securestorage/Dockerfile | 6 +- .../hms-securestorage/Dockerfile.build-base | 4 +- .../hms-securestorage/Dockerfile.coverage | 2 +- .../hms-securestorage/Dockerfile.testing | 2 +- .../Cray-HPE}/hms-securestorage/Jenkinsfile | 0 .../hms-securestorage/Jenkinsfile.github | 34 +++++ .../Cray-HPE}/hms-securestorage/LICENSE | 0 .../Cray-HPE/hms-securestorage/Makefile | 11 ++ .../Cray-HPE}/hms-securestorage/go.mod | 2 +- .../Cray-HPE}/hms-securestorage/go.sum | 0 .../hms-securestorage/mockAdapter.go | 0 .../Cray-HPE}/hms-securestorage/namespace | 0 .../hms-securestorage/runCoverage.sh | 0 .../hms-securestorage/runUnitTest.sh | 0 .../hms-securestorage/secureStorage.go | 0 .../Cray-HPE}/hms-securestorage/token | 0 .../hms-securestorage/vaultAdapter.go | 0 .../Cray-HPE}/hms-smd/LICENSE | 0 .../Cray-HPE}/hms-smd/pkg/redfish/README | 0 .../hms-smd/pkg/redfish/redfish-assembly.go | 0 .../hms-smd/pkg/redfish/redfish-hpe.go | 0 .../hms-smd/pkg/redfish/redfish-network.go | 0 .../hms-smd/pkg/redfish/redfish-power.go | 0 .../hms-smd/pkg/redfish/redfish-storage.go | 0 .../hms-smd/pkg/redfish/redfish-support.go | 0 .../Cray-HPE}/hms-smd/pkg/redfish/redfish.go | 0 .../Cray-HPE}/hms-smd/pkg/redfish/rfclient.go | 2 +- .../pkg/redfish/rfcomponents-assembly.go | 2 +- .../hms-smd/pkg/redfish/rfcomponents-hpe.go | 2 +- .../pkg/redfish/rfcomponents-network.go | 2 +- .../hms-smd/pkg/redfish/rfcomponents-power.go | 2 +- .../pkg/redfish/rfcomponents-storage.go | 2 +- .../hms-smd/pkg/redfish/rfcomponents.go | 7 +- .../hms-smd/pkg/redfish/rfendpoints.go | 4 +- .../hms-smd/pkg/redfish/rfservices.go | 2 +- .../Cray-HPE}/hms-smd/pkg/redfish/util.go | 0 .../pkg/service-reservations/interface.go | 2 +- .../pkg/service-reservations/models.go | 0 .../hms-smd/pkg/sm/compethinterfaces.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/complocks.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/comps.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/endpoints.go | 4 +- .../Cray-HPE}/hms-smd/pkg/sm/events.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/groups.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/hwinv.go | 4 +- .../Cray-HPE}/hms-smd/pkg/sm/hwinvhist.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/misc.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/nodemap.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/powermap.go | 2 +- .../Cray-HPE}/hms-smd/pkg/sm/subscriptions.go | 0 .../Cray-HPE}/hms-trs-app-api/LICENSE | 0 .../pkg/trs_http_api/helpers.go | 0 .../pkg/trs_http_api/models.go | 0 .../pkg/trs_http_api/trshttp_interface.go | 2 +- .../pkg/trs_http_api/trshttp_local.go | 2 +- .../pkg/trs_http_api/trshttp_remote.go | 4 +- .../Cray-HPE}/hms-trs-kafkalib/LICENSE | 0 .../pkg/trs-kafkalib/library.go | 0 .../hashicorp/go-retryablehttp/client.go | 2 +- vendor/github.com/sirupsen/logrus/.travis.yml | 14 +-- .../github.com/sirupsen/logrus/CHANGELOG.md | 36 ++++++ vendor/github.com/sirupsen/logrus/README.md | 2 +- vendor/github.com/sirupsen/logrus/entry.go | 73 ++++++----- vendor/github.com/sirupsen/logrus/go.sum | 2 - .../sirupsen/logrus/json_formatter.go | 5 +- vendor/github.com/sirupsen/logrus/logger.go | 2 +- .../sirupsen/logrus/terminal_check_unix.go | 2 +- .../sirupsen/logrus/text_formatter.go | 7 +- vendor/modules.txt | 56 ++++++--- .../stash.us.cray.com/HMS/hms-base/.version | 1 - .../HMS/hms-base/Jenkinsfile | 13 -- .../HMS/hms-compcredentials/.version | 1 - .../stash.us.cray.com/HMS/hms-hmetcd/.version | 1 - .../HMS/hms-securestorage/.version | 1 - 190 files changed, 669 insertions(+), 449 deletions(-) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/.gitignore (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-base/.version rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/CHANGELOG.md (96%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/Dockerfile (90%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/Dockerfile.build-base (93%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/Dockerfile.coverage (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/Dockerfile.testing (96%) create mode 100644 vendor/github.com/Cray-HPE/hms-base/Jenkinsfile.github rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/LICENSE (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-base/Makefile rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/configWatch.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/doc.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/go.mod (80%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/go.sum (90%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/hmserr.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/hmslimits.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/hmstypes.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/http.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/runCoverage.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/runUnitTest.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/util.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-base/worker-pool.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-certs/LICENSE (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-certs/pkg/hms_certs/certs.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/.gitignore (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-compcredentials/.version rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/CHANGELOG.md (94%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/Dockerfile (87%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/Dockerfile.build-base (89%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/Dockerfile.coverage (94%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/Dockerfile.testing (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/Jenkinsfile (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile.github rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/LICENSE (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-compcredentials/Makefile rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/compCredentials.go (97%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/go.mod (56%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/go.sum (97%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/runCoverage.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-compcredentials/runUnitTest.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/.gitignore (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-hmetcd/.version rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/CHANGELOG.md (94%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/Dockerfile (90%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/Dockerfile.build-base (92%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/Dockerfile.coverage (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/Dockerfile.testing (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/Jenkinsfile (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile.github rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/LICENSE (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-hmetcd/Makefile rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/README.txt (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/doc.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/go.mod (91%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/go.sum (89%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/kvs_etcd.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/runCoverage.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-hmetcd/runUnitTest.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/.gitignore (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-securestorage/.version rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/CHANGELOG.md (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/Dockerfile (89%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/Dockerfile.build-base (91%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/Dockerfile.coverage (94%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/Dockerfile.testing (95%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/Jenkinsfile (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile.github rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/LICENSE (100%) create mode 100644 vendor/github.com/Cray-HPE/hms-securestorage/Makefile rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/go.mod (68%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/go.sum (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/mockAdapter.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/namespace (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/runCoverage.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/runUnitTest.sh (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/secureStorage.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/token (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-securestorage/vaultAdapter.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/LICENSE (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/README (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-assembly.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-hpe.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-network.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-power.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-storage.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish-support.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/redfish.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfclient.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents-assembly.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents-hpe.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents-network.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents-power.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents-storage.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfcomponents.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfendpoints.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/rfservices.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/redfish/util.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/service-reservations/interface.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/service-reservations/models.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/compethinterfaces.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/complocks.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/comps.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/endpoints.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/events.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/groups.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/hwinv.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/hwinvhist.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/misc.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/nodemap.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/powermap.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-smd/pkg/sm/subscriptions.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/LICENSE (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/pkg/trs_http_api/helpers.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/pkg/trs_http_api/models.go (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go (99%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go (98%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-kafkalib/LICENSE (100%) rename vendor/{stash.us.cray.com/HMS => github.com/Cray-HPE}/hms-trs-kafkalib/pkg/trs-kafkalib/library.go (100%) delete mode 100644 vendor/stash.us.cray.com/HMS/hms-base/.version delete mode 100644 vendor/stash.us.cray.com/HMS/hms-base/Jenkinsfile delete mode 100644 vendor/stash.us.cray.com/HMS/hms-compcredentials/.version delete mode 100644 vendor/stash.us.cray.com/HMS/hms-hmetcd/.version delete mode 100644 vendor/stash.us.cray.com/HMS/hms-securestorage/.version diff --git a/.version b/.version index 53adb84c..a7ee35a3 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.8.2 +1.8.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index bb9919ed..0228d9ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.8.3] - 2021-07-28 + +### Added +- Conversion for github phase 3 + - Changed artifactory server + - Updated docker images in docker-compose files for csm-built images + ## [1.8.2] - 2021-07-20 ### Added diff --git a/Dockerfile b/Dockerfile index 39815b47..ce024945 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,15 +35,15 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto # Copy all the necessary files to the image. -COPY cmd $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/cmd -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/vendor -COPY internal $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/internal -COPY .version $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/.version +COPY cmd $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/cmd +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/vendor +COPY internal $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/internal +COPY .version $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/.version ### Build Stage ### FROM base AS builder -RUN set -ex && go build -v -i -o /usr/local/bin/hms-firmware-action stash.us.cray.com/HMS/hms-firmware-action/cmd/hms-firmware-action +RUN set -ex && go build -v -i -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action ### Build python base ### diff --git a/Dockerfile.functionaltesting.Dockerfile b/Dockerfile.functionaltesting.Dockerfile index 9c9bae43..36ed0d37 100644 --- a/Dockerfile.functionaltesting.Dockerfile +++ b/Dockerfile.functionaltesting.Dockerfile @@ -61,11 +61,11 @@ ENV CRAY_VAULT_JWT_FILE "/go/configs/token" ENV API_URL "http://firmware-action" ENV API_SERVER_PORT ":28800" -COPY cmd $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/cmd +COPY cmd $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/cmd COPY configs configs -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/vendor -COPY internal $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/internal -COPY .version $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/.version +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/vendor +COPY internal $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/internal +COPY .version $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/.version COPY test/functional /test/functional COPY test/integration /test/integration diff --git a/Dockerfile.integration.Dockerfile b/Dockerfile.integration.Dockerfile index 4114cdfc..8a714e44 100644 --- a/Dockerfile.integration.Dockerfile +++ b/Dockerfile.integration.Dockerfile @@ -35,15 +35,15 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto # Copy all the necessary files to the image. -COPY cmd $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/cmd -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/vendor -COPY internal $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/internal -COPY .version $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/.version +COPY cmd $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/cmd +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/vendor +COPY internal $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/internal +COPY .version $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/.version ### Build Stage ### FROM base AS builder -RUN set -ex && go build -v -i -o /usr/local/bin/hms-firmware-action stash.us.cray.com/HMS/hms-firmware-action/cmd/hms-firmware-action +RUN set -ex && go build -v -i -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action ### Build python base ### diff --git a/Dockerfile.unittesting.Dockerfile b/Dockerfile.unittesting.Dockerfile index fa491893..cd71707f 100644 --- a/Dockerfile.unittesting.Dockerfile +++ b/Dockerfile.unittesting.Dockerfile @@ -48,18 +48,18 @@ ENV CRAY_VAULT_JWT_FILE "/go/configs/token" RUN go env -w GO111MODULE=auto -COPY cmd $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/cmd +COPY cmd $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/cmd COPY configs configs -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/vendor -COPY internal $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/internal -COPY .version $GOPATH/src/stash.us.cray.com/HMS/hms-firmware-action/.version +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/vendor +COPY internal $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/internal +COPY .version $GOPATH/src/github.com/Cray-HPE/hms-firmware-action/.version # if you use CMD, then it will run like a service; we want this to execute the tests and quit #RUN go test -v ./... RUN set -ex \ && go version \ - && go test -cover -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/domain \ - && go test -cover -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/api \ - && go test -cover -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/model \ - && go test -cover -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/storage \ - && go test -cover -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/hsm + && go test -cover -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/domain \ + && go test -cover -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/api \ + && go test -cover -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/model \ + && go test -cover -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/storage \ + && go test -cover -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/hsm diff --git a/cmd/hms-firmware-action/main.go b/cmd/hms-firmware-action/main.go index 92258d9e..b8320cac 100644 --- a/cmd/hms-firmware-action/main.go +++ b/cmd/hms-firmware-action/main.go @@ -39,14 +39,14 @@ import ( "github.com/hashicorp/go-retryablehttp" "github.com/namsral/flag" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-base" - "stash.us.cray.com/HMS/hms-firmware-action/internal/api" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/logger" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - trsapi "stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" + "github.com/Cray-HPE/hms-base" + "github.com/Cray-HPE/hms-firmware-action/internal/api" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/logger" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + trsapi "github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" ) // Default Port to use diff --git a/cmd/hms-firmware-action/updateScheduler.go b/cmd/hms-firmware-action/updateScheduler.go index 89d40ee5..da59afca 100644 --- a/cmd/hms-firmware-action/updateScheduler.go +++ b/cmd/hms-firmware-action/updateScheduler.go @@ -45,11 +45,11 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" ) type VerifyStatus int diff --git a/docker-compose.developer.environment.yaml b/docker-compose.developer.environment.yaml index 5107d450..0aeeb092 100644 --- a/docker-compose.developer.environment.yaml +++ b/docker-compose.developer.environment.yaml @@ -39,7 +39,7 @@ services: networks: - rts vault-kv-enabler: - image: arti.dev.cray.com/csm-docker-master-local/vault-kv-enabler:1.11.3 + image: artifactory.algol60.net/csm-docker/stable/vault-kv-enabler:1.12.5 environment: - VAULT_ADDR=http://vault:8200 - VAULT_TOKEN=hms @@ -67,7 +67,7 @@ services: networks: - rts cray-smd-init: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - SMD_DBHOST=hmsds-postgres - SMD_DBPORT=5432 @@ -77,7 +77,7 @@ services: - rts command: /entrypoint.sh smd-init cray-smd: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - POSTGRES_HOST=hmsds-postgres - POSTGRES_PORT=5432 @@ -125,7 +125,7 @@ services: networks: - rts cray-hms-hmcollector: - image: arti.dev.cray.com/csm-docker-master-local/hms-hmcollector:latest + image: artifactory.algol60.net/csm-docker/stable/hms-hmcollector:2.11.3 environment: - LOG_LEVEL=TRACE - SM_URL=http://cray-smd:27779 @@ -144,7 +144,7 @@ services: networks: - rts redfish-simulator: - image: arti.dev.cray.com/csm-docker-master-local/hms-redfish-translation-service:latest + image: artifactory.algol60.net/csm-docker/stable/hms-redfish-translation-service:1.12.4 environment: - SCHEMA_VERSION=2019.1 - LOG_LEVEL=TRACE @@ -179,4 +179,4 @@ services: rts: aliases: - x0c0s1b0 - - x0c0s2b0 \ No newline at end of file + - x0c0s2b0 diff --git a/docker-compose.developer.full.yaml b/docker-compose.developer.full.yaml index b241de53..5caab88d 100644 --- a/docker-compose.developer.full.yaml +++ b/docker-compose.developer.full.yaml @@ -64,7 +64,7 @@ services: networks: - rts vault-kv-enabler: - image: arti.dev.cray.com/csm-docker-master-local/vault-kv-enabler:1.11.3 + image: artifactory.algol60.net/csm-docker/stable/vault-kv-enabler:1.12.5 environment: - VAULT_ADDR=http://vault:8200 - VAULT_TOKEN=hms @@ -92,7 +92,7 @@ services: networks: - rts cray-smd-init: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - SMD_DBHOST=hmsds-postgres - SMD_DBPORT=5432 @@ -102,7 +102,7 @@ services: - rts command: /entrypoint.sh smd-init cray-smd: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - POSTGRES_HOST=hmsds-postgres - POSTGRES_PORT=5432 @@ -150,7 +150,7 @@ services: networks: - rts cray-hms-hmcollector: - image: arti.dev.cray.com/csm-docker-master-local/hms-hmcollector:latest + image: artifactory.algol60.net/csm-docker/stable/hms-hmcollector:2.11.3 environment: - LOG_LEVEL=TRACE - SM_URL=http://cray-smd:27779 @@ -169,7 +169,7 @@ services: networks: - rts redfish-simulator: - image: arti.dev.cray.com/csm-docker-master-local/hms-redfish-translation-service:latest + image: artifactory.algol60.net/csm-docker/stable/hms-redfish-translation-service:1.12.4 environment: - SCHEMA_VERSION=2019.1 - LOG_LEVEL=TRACE @@ -204,4 +204,4 @@ services: rts: aliases: - x0c0s1b0 - - x0c0s2b0 \ No newline at end of file + - x0c0s2b0 diff --git a/docker-compose.test.integration.yaml b/docker-compose.test.integration.yaml index fc3d0b49..e946334a 100644 --- a/docker-compose.test.integration.yaml +++ b/docker-compose.test.integration.yaml @@ -60,7 +60,7 @@ services: networks: - rts vault-kv-enabler: - image: arti.dev.cray.com/csm-docker-master-local/vault-kv-enabler:1.11.3 + image: artifactory.algol60.net/csm-docker/stable/vault-kv-enabler:1.12.5 environment: - VAULT_ADDR=http://vault:8200 - VAULT_TOKEN=hms @@ -84,7 +84,7 @@ services: networks: - rts cray-smd-init: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - SMD_DBHOST=hmsds-postgres - SMD_DBPORT=5432 @@ -94,7 +94,7 @@ services: - rts command: /entrypoint.sh smd-init cray-smd: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - POSTGRES_HOST=hmsds-postgres - POSTGRES_PORT=5432 @@ -136,7 +136,7 @@ services: networks: - rts cray-hms-hmcollector: - image: arti.dev.cray.com/csm-docker-master-local/hms-hmcollector:latest + image: artifactory.algol60.net/csm-docker/stable/hms-hmcollector:2.11.3 environment: - LOG_LEVEL=TRACE - SM_URL=http://cray-smd:27779 @@ -155,7 +155,7 @@ services: networks: - rts redfish-simulator: - image: arti.dev.cray.com/csm-docker-master-local/hms-redfish-translation-service:latest + image: artifactory.algol60.net/csm-docker/stable/hms-redfish-translation-service:1.12.4 environment: - SCHEMA_VERSION=2019.1 - LOG_LEVEL=TRACE diff --git a/docker-compose.test.unit.yaml b/docker-compose.test.unit.yaml index 251918e9..7e72f5f8 100644 --- a/docker-compose.test.unit.yaml +++ b/docker-compose.test.unit.yaml @@ -24,7 +24,7 @@ services: networks: - rts vault-kv-enabler: - image: arti.dev.cray.com/csm-docker-master-local/vault-kv-enabler:1.11.3 + image: artifactory.algol60.net/csm-docker/stable/vault-kv-enabler:1.12.5 environment: - VAULT_ADDR=http://vault:8200 - VAULT_TOKEN=hms @@ -48,7 +48,7 @@ services: networks: - rts cray-smd-init: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - SMD_DBHOST=hmsds-postgres - SMD_DBPORT=5432 @@ -58,7 +58,7 @@ services: - rts command: /entrypoint.sh smd-init cray-smd: - image: arti.dev.cray.com/csm-docker-master-local/cray-smd:latest + image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.29.10 environment: - POSTGRES_HOST=hmsds-postgres - POSTGRES_PORT=5432 @@ -100,7 +100,7 @@ services: networks: - rts cray-hms-hmcollector: - image: arti.dev.cray.com/csm-docker-master-local/hms-hmcollector:latest + image: artifactory.algol60.net/csm-docker/stable/hms-hmcollector:2.11.3 environment: - LOG_LEVEL=TRACE - SM_URL=http://cray-smd:27779 @@ -119,7 +119,7 @@ services: networks: - rts redfish-simulator: - image: arti.dev.cray.com/csm-docker-master-local/hms-redfish-translation-service:latest + image: artifactory.algol60.net/csm-docker/stable/hms-redfish-translation-service:1.12.4 environment: - SCHEMA_VERSION=2019.1 - LOG_LEVEL=TRACE diff --git a/go.mod b/go.mod index c86aac51..73262a08 100644 --- a/go.mod +++ b/go.mod @@ -1,22 +1,22 @@ -module stash.us.cray.com/HMS/hms-firmware-action +module github.com/Cray-HPE/hms-firmware-action go 1.16 require ( + github.com/Cray-HPE/hms-base v1.15.0 + github.com/Cray-HPE/hms-certs v1.3.2 + github.com/Cray-HPE/hms-compcredentials v1.11.2 + github.com/Cray-HPE/hms-hmetcd v1.10.2 + github.com/Cray-HPE/hms-securestorage v1.12.2 + github.com/Cray-HPE/hms-smd v1.29.10 + github.com/Cray-HPE/hms-trs-app-api v1.6.2 github.com/Masterminds/semver v1.5.0 github.com/google/uuid v1.2.0 github.com/gorilla/mux v1.8.0 - github.com/hashicorp/go-retryablehttp v0.6.8 + github.com/hashicorp/go-retryablehttp v0.7.0 github.com/looplab/fsm v0.2.0 github.com/namsral/flag v1.7.4-pre - github.com/sirupsen/logrus v1.7.0 + github.com/sirupsen/logrus v1.8.1 github.com/stretchr/testify v1.7.0 go.etcd.io/etcd v3.3.25+incompatible // indirect - stash.us.cray.com/HMS/hms-base v1.13.0 - stash.us.cray.com/HMS/hms-certs v1.3.0 - stash.us.cray.com/HMS/hms-compcredentials v1.11.0 - stash.us.cray.com/HMS/hms-hmetcd v1.10.0 - stash.us.cray.com/HMS/hms-securestorage v1.12.0 - stash.us.cray.com/HMS/hms-smd v1.29.5 - stash.us.cray.com/HMS/hms-trs-app-api v1.6.0 ) diff --git a/go.sum b/go.sum index db1a51f4..58d19aec 100644 --- a/go.sum +++ b/go.sum @@ -23,6 +23,24 @@ github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/ClickHouse/clickhouse-go v1.3.12/go.mod h1:EaI/sW7Azgz9UATzd5ZdZHRUhHgv5+JMS9NSr2smCJI= +github.com/Cray-HPE/hms-base v1.15.0 h1:VaQj6cY9OAs6rcD1miE133eqQnRTkEcX1lnwJA/SUuU= +github.com/Cray-HPE/hms-base v1.15.0/go.mod h1:+G8KFLPtanLC5lQ602hrf3MDfLTmIXedTavVCOdz5XA= +github.com/Cray-HPE/hms-certs v1.3.2 h1:Prd7PTwiSMULYuL8bhsvw7LSICx+pSvpWlA9fQKvW9s= +github.com/Cray-HPE/hms-certs v1.3.2/go.mod h1:6DymilWScLtbQkaQRMuf55K1MzEi0kYCoXfT212yLjY= +github.com/Cray-HPE/hms-compcredentials v1.11.2 h1:Ug7e7vMSx1STHKkniWY27ddD1X49pQAEljQmTcVkng4= +github.com/Cray-HPE/hms-compcredentials v1.11.2/go.mod h1:tmurR+zsOtB61n6j3GlEfsl7wmNIAGJqErFymOUb0Hw= +github.com/Cray-HPE/hms-go-http-lib v1.5.3/go.mod h1:BKlB4HKAGW5GgS3x01y7zxxYFLaJM2byACUunmes2z8= +github.com/Cray-HPE/hms-hmetcd v1.10.2 h1:gtCi9r3IB9OasjtJ/WgjjeJzCcUsQTEv7yYphSb8tTI= +github.com/Cray-HPE/hms-hmetcd v1.10.2/go.mod h1:cL/imOEh++ErJ1x30HEeo1a38gxBAJgviA8V4j8Wrus= +github.com/Cray-HPE/hms-msgbus v1.10.2/go.mod h1:DM5Iw58ejMxbCOX2KgmcBwDS5YWIlba3BOW9JsDQl4w= +github.com/Cray-HPE/hms-securestorage v1.12.2 h1:H5n0i6ldzewd5p7PI2Hktr/+9cYfSCui+0367p2L6n8= +github.com/Cray-HPE/hms-securestorage v1.12.2/go.mod h1:P4CMKqQVlx/lv+AdyEjNQubZw2FKNyo/IAtFNgQ3VuI= +github.com/Cray-HPE/hms-smd v1.29.10 h1:GQf+UkgfGLZgxWO6q2xYJh13zViFw87Gs7eDSdrDIZc= +github.com/Cray-HPE/hms-smd v1.29.10/go.mod h1:9TFpxIiPnmgBphq0QfFt1BmKiuSZ8VXu5N7A5EJz6L4= +github.com/Cray-HPE/hms-trs-app-api v1.6.2 h1:yzf2E+8QM0+S7AFc47JIyu4yTLM/HKvY1BHtdGSEXFY= +github.com/Cray-HPE/hms-trs-app-api v1.6.2/go.mod h1:RbB2pYCrZ5N3d0ho4nzTAz9ifI2GYpAdf4Qeco748KQ= +github.com/Cray-HPE/hms-trs-kafkalib v1.5.2 h1:MhV6SE0HmEcMnuAb/dVclfXd+49udbVCYr2ze0CDXoI= +github.com/Cray-HPE/hms-trs-kafkalib v1.5.2/go.mod h1:jo5bCP12PYVHeyaSa9okvz36pgwwY1czjZzUi96Ryjg= github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww= @@ -41,7 +59,6 @@ github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRF github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/aws/aws-sdk-go v1.17.7 h1:/4+rDPe0W95KBmNGYCG+NUvdL8ssPYBMxL+aSCg6nIA= github.com/aws/aws-sdk-go v1.17.7/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= @@ -66,7 +83,6 @@ github.com/coreos/etcd v3.3.13+incompatible h1:8F3hqu9fGYLBifCmRCJsicFqDx/D68Rt3 github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f h1:JOrtw2xFKzlg+cbHpyrpLDmnN1HqhBfnX7WDiW7eG2c= github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= @@ -103,7 +119,6 @@ github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5Kwzbycv github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= -github.com/frankban/quicktest v1.4.1 h1:Wv2VwvNn73pAdFIVUQRXYDFp31lXKbqblIXo/Q5GPSg= github.com/frankban/quicktest v1.4.1/go.mod h1:36zfPVQyHxymz4cH7wlDmVwDrJuljRB60qkgn7rorfQ= github.com/frankban/quicktest v1.7.3 h1:kV0lw0TH1j1hozahVmcpFCsbV5hcS4ZalH+U7UoeTow= github.com/frankban/quicktest v1.7.3/go.mod h1:V1d2J5pfxYH6EjBAgSK7YNXcXlTWxUHdE1sVDXkjnig= @@ -126,14 +141,11 @@ github.com/gobuffalo/here v0.6.0/go.mod h1:wAG085dHOYqUpf+Ap+WOdrPTp5IYcDAs/x7PL github.com/gocql/gocql v0.0.0-20190301043612-f6df8288f9b4/go.mod h1:4Fw1eo5iaEhDUs8XyuhSVCVy52Jq3L+/3GJgYkwc+/0= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/golang-migrate/migrate/v4 v4.11.0/go.mod h1:nqbpDbckcYjsCD5I8q5+NI9Tkk7SVcmaF40Ax1eAWhg= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef h1:veQD95Isof8w9/WXiA+pa3tz3fJXkt5B7QaRBrM62gk= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -144,10 +156,8 @@ github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= @@ -165,10 +175,8 @@ github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Z github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1 h1:JFrFEBb2xKufg6XkJsJr+WbKb4FQlURi5RUcBveYu9k= @@ -181,7 +189,6 @@ github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OI github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -191,7 +198,6 @@ github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51 github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.4 h1:VuZ8uybHlWmqV03+zRzdwKL4tUnIp1MAQtp1mIFE1bc= github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= @@ -206,30 +212,23 @@ github.com/grpc-ecosystem/grpc-gateway v1.8.6/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed/go.mod h1:tMWxXQ9wFIaZeTI9F+hmhFiGpFmhOHzyShyFUhRm0H4= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0 h1:wvCrVc9TjDls6+YGAF2hAifE1E5U1+b4tH6KdvN3Gig= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.1 h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd/go.mod h1:9bjs9uLqI8l75knNv3lV1kA55veR+WUPSiKIWcQHudI= github.com/hashicorp/go-hclog v0.8.0/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-hclog v0.9.2 h1:CG6TE5H9/JXsFWJCfoIVpKFIkFe6ysEuHirp4DxCsHI= github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v0.14.1 h1:nQcJDQwIAGnmoUWp8ubocEX40cCml/17YkF6csQLReU= github.com/hashicorp/go-hclog v0.14.1/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= github.com/hashicorp/go-multierror v1.1.0 h1:B9UzwGQJehnUY1yNrnwREHc3fGbC2xefo8g4TbElacI= github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= github.com/hashicorp/go-plugin v1.0.1/go.mod h1:++UyYGoz3o5w9ZzAdZxtQKrWWP+iqPBn3cQptSMzBuY= github.com/hashicorp/go-retryablehttp v0.5.4/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= -github.com/hashicorp/go-retryablehttp v0.6.0/go.mod h1:EM1UNuajSSS84RdcM8GK0q0UIPtYqPHVLu9oE2Wm8FY= -github.com/hashicorp/go-retryablehttp v0.6.4 h1:BbgctKO892xEyOXnGiaAwIoSq1QZ/SS4AhjoAh9DnfY= github.com/hashicorp/go-retryablehttp v0.6.4/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= -github.com/hashicorp/go-retryablehttp v0.6.7 h1:8/CAEZt/+F7kR7GevNHulKkUjLht3CPmn7egmhieNKo= -github.com/hashicorp/go-retryablehttp v0.6.7/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= -github.com/hashicorp/go-retryablehttp v0.6.8 h1:92lWxgpa+fF3FozM4B3UZtHZMJX8T5XT+TFdCxsPyWs= -github.com/hashicorp/go-retryablehttp v0.6.8/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= +github.com/hashicorp/go-retryablehttp v0.7.0 h1:eu1EI/mbirUgP5C8hVsTNaGZreBDlYiwC1FZWkvQPQ4= +github.com/hashicorp/go-retryablehttp v0.7.0/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= github.com/hashicorp/go-rootcerts v1.0.1 h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8= github.com/hashicorp/go-rootcerts v1.0.1/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= github.com/hashicorp/go-sockaddr v1.0.2 h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc= @@ -276,7 +275,6 @@ github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0f github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= github.com/jcmturner/gofork v0.0.0-20190328161633-dc7c13fece03 h1:FUwcHNlEqkqLjLBdCp5PRlCFijNjvcYANOZXzCfXwCM= github.com/jcmturner/gofork v0.0.0-20190328161633-dc7c13fece03/go.mod h1:MK8+TM0La+2rjBD4jE12Kj1pCCxK7d2LK/UM3ncEo0o= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= github.com/jonboulle/clockwork v0.1.0 h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo= @@ -294,14 +292,8 @@ github.com/klauspost/compress v1.8.2 h1:Bx0qjetmNjdFXASH02NSAREKpiaDwkO1DRZ3dV2K github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/cpuid v1.2.2 h1:1xAgYebNnsb9LKCdLOvFWtAxGU/33mjJtyOVbmUa0Us= github.com/klauspost/cpuid v1.2.2/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid v1.3.1 h1:5JNjFYYQrZeKRJ0734q51WCEEn2huer72Dc7K+R/b6s= -github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4= -github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3 h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -339,7 +331,6 @@ github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.0 h1:iDwIio/3gk2QtLLEsqU5lInaMzos0hDTz8a6lazSFVw= github.com/mitchellh/mapstructure v1.3.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -369,38 +360,29 @@ github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zM github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= -github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4 v2.2.6+incompatible h1:6aCX4/YZ9v8q69hTyiR7dNLnTA3fgtKHVVW5BCd5Znw= github.com/pierrec/lz4 v2.2.6+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pierrec/lz4 v2.4.1+incompatible h1:mFe7ttWaflA46Mhqh+jUfjp2qTbPYxLB2/OyBppH9dg= github.com/pierrec/lz4 v2.4.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.2 h1:awm861/B8OKDd2I/6o1dy3ra4BamzKhYOiGItCeZ740= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 h1:D+CiwcpGTW6pL6bv6KI3KbyEyCKyS+1JWS2h8PNDnGA= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f h1:BVwpUVJDADN2ufcGik7W992pyps0wZ888b/y9GXcLTU= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275 h1:PnBWHBf+6L0jOqq0gIVUe6Yk0/QMZ640k6NvkxcBf+8= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0 h1:kUZDBDTdBVBYBj5Tmh2NZLlF60mfjA27rM34b+cVwNU= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a h1:9a8MnZMP0X2nLJdBg+pBmGgkJlSaKC2KaQmTCk1XDtE= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1 h1:/K3IL0Z1quvmJ7X0A1AwNEK7CRkVK3YwfOU/QAL4WGg= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -418,16 +400,11 @@ github.com/ryanuber/go-glob v1.0.0/go.mod h1:807d1WSdnB0XRJzKNil9Om6lcp/3a0v4qIH github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1 h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= -github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.5.0 h1:1N5EYkVAPEywqZRJd7cwnRtCb6xJx7NH3T3WUTF980Q= github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo= -github.com/sirupsen/logrus v1.6.0 h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM= -github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= +github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/soheilhy/cmux v0.1.4 h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= @@ -435,11 +412,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= @@ -453,9 +427,6 @@ github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5 github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= gitlab.com/nyarla/go-crypt v0.0.0-20160106005555-d9a5dc2b789b/go.mod h1:T3BPAOm2cqquPa0MKWeNkmOM5RQsRhkrwMWonFMN7fE= -go.etcd.io/bbolt v1.3.2 h1:Z/90sZLPOeCy2PwprqkFa25PdkusRzaj9P8zm/KNyvk= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/etcd v3.3.13+incompatible h1:jCejD5EMnlGxFvcGRyEV4VGlENZc7oPQX6o0t7n3xbw= go.etcd.io/etcd v3.3.13+incompatible/go.mod h1:yaeTdrJi5lOmYerz05bd8+V7KubZs8YSFZfzsF9A6aI= go.etcd.io/etcd v3.3.25+incompatible h1:V1RzkZJj9LqsJRy+TUBgpWSbZXITLB819lstuTFoZOY= go.etcd.io/etcd v3.3.25+incompatible/go.mod h1:yaeTdrJi5lOmYerz05bd8+V7KubZs8YSFZfzsF9A6aI= @@ -476,13 +447,11 @@ go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 h1:bselrhR0Or1vomJZC8ZIjWtbDmn9OYFLX5Ik9alpJpE= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 h1:ObdrDkeb4kJdCP557AjRjq69pTHfNouLtWZG7j9rPN8= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -527,7 +496,6 @@ golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -537,7 +505,6 @@ golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2 h1:CCH4IOTTfewWjGOlSp+zGcjutRKlBEZQ6wTn8ozI/nI= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc h1:zK/HqS5bZxDptfPJNq8v7vJfXtkU7r9TLIoSr1bXaP4= golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= @@ -564,7 +531,6 @@ golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e h1:nFYrTHrdrAOpShe27kaFHjsqYSEQ0KWqdWLu3xuZJts= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -575,7 +541,6 @@ golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9 h1:L2auWcuQIvxz9xSEqzESnV/QN/gNRXNApHi3fYwl2w0= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -590,17 +555,13 @@ golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200817155316-9781c653f443 h1:X18bCaipMcoJGm27Nv7zr4XYPKGUy92GtqboKC2Hxaw= golang.org/x/sys v0.0.0-20200817155316-9781c653f443/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db h1:6/JqlYfC1CCaLnGceQTI+sDGhC9UBSPAsBqI0Gun6kU= golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 h1:SvFZT6jyqRaOeXpc5h/JSfZenJ2O330aBsf7JfSUXmQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e h1:EHBhcS0mlXEAVwNyO2dLfjToGsyY4j24pTs2ScHnX7s= golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -637,13 +598,11 @@ golang.org/x/tools v0.0.0-20200128002243-345141a36859/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200213224642-88e652f7a869 h1:DPqS0AlgYBVHhG5jnEVScBXXIS+xjgn7O8s1E3sDqxc= golang.org/x/tools v0.0.0-20200213224642-88e652f7a869/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -662,13 +621,10 @@ google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7 google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 h1:Nw54tB0rB7hY/N0NQvRW8DG4Yk3Q6T9cu9RcFQDu1tc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107 h1:xtNn7qFlagY2mQNFHMSRPjT2RkOV4OXM7P5TVy9xATo= google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb h1:i1Ppqkc3WQXikh8bXiwHqAN5Rv3/qDCcRk0/Otx73BY= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= @@ -681,7 +637,6 @@ google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200128133413-58ce757ed39b/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce h1:1mbrb1tUU+Zmt5C94IGKADBTJZjZXAd+BubWi7r9EiI= google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200815001618-f69a88009b70 h1:wboULUXGF3c5qdUnKp+6gLAccE6PRpa/czkYvQ4UXv8= @@ -689,7 +644,6 @@ google.golang.org/genproto v0.0.0-20200815001618-f69a88009b70/go.mod h1:FWY/as6D google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1 h1:Hz2g2wirWK7H0qIIhGIqRGTuMwTE8HEKFnDZZ7lm9NU= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.22.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= @@ -697,7 +651,6 @@ google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1 h1:zvIju4sqAGvwKspUQOhwnpcqSbzi7/H6QomNNjTL4sk= google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.29.1 h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= @@ -736,9 +689,7 @@ gopkg.in/square/go-jose.v2 v2.3.1 h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4 gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= -gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo= @@ -767,28 +718,3 @@ modernc.org/zappy v1.0.0/go.mod h1:hHe+oGahLVII/aTTyWK/b53VDHMAGCBYYeZ9sn83HC4= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -stash.us.cray.com/HMS/hms-base v1.11.1/go.mod h1:2bT2ZeXBgXsrIsAtw0P6ILlTNilgOzzpJ/1NV545Tl0= -stash.us.cray.com/HMS/hms-base v1.12.0 h1:LsEi7z1fnv9qOuli2+ThA8TF3yPqNINOrBVu/9OpV+s= -stash.us.cray.com/HMS/hms-base v1.12.0/go.mod h1:2bT2ZeXBgXsrIsAtw0P6ILlTNilgOzzpJ/1NV545Tl0= -stash.us.cray.com/HMS/hms-base v1.13.0 h1:S2KodHGI0+PFOw7yQ5TxbFTNTO5aRkdRy8W78kQHVdw= -stash.us.cray.com/HMS/hms-base v1.13.0/go.mod h1:NT3V4GI750dm2tQzBkGZiFmJIpR8cerIcP8KWcYYuUY= -stash.us.cray.com/HMS/hms-certs v1.2.0 h1:sntICwYa5W04CeXBkoHyk1K6P1TGqO1s8Y+DNXw8+Sk= -stash.us.cray.com/HMS/hms-certs v1.2.0/go.mod h1:G8+mHi2izwVRF6WkxobnRAnAgcE79CIgvmtJU4HkIcI= -stash.us.cray.com/HMS/hms-certs v1.3.0 h1:ddXIeI+L3hrMv/+zVFZtxIVhvfLv/8g8d8/tUSQPmGw= -stash.us.cray.com/HMS/hms-certs v1.3.0/go.mod h1:81nsECscfHezWuUm9DB6e5Hy/GKBLe2Mq0ASN0KHUgI= -stash.us.cray.com/HMS/hms-compcredentials v1.11.0 h1:mPpLCZ8UDpMLOLxeoicIlJHgvMFoXOysjuI2spmuHQI= -stash.us.cray.com/HMS/hms-compcredentials v1.11.0/go.mod h1:tztoWGfjwVOVV/W4i4KgEmLkso9bQ1Hhmr3iB8+B1tQ= -stash.us.cray.com/HMS/hms-go-http-lib v1.5.0/go.mod h1:jOhxzTUxjfXhPsv4L95fvJH8JgaMtWkBpppx972rmoQ= -stash.us.cray.com/HMS/hms-hmetcd v1.10.0 h1:6wkqLcscgh2s033PaVZ7pYGp8UGYFeRoY6eQjvFojAg= -stash.us.cray.com/HMS/hms-hmetcd v1.10.0/go.mod h1:zXoKvgSp7VmpNu4rV7vIukqAfatF4X9sbSQk874y/ZE= -stash.us.cray.com/HMS/hms-msgbus v1.10.0/go.mod h1:aFcLnKNIoNfYfWNMxK8MDI6QYT5BCmXRtmdpeEYJQUA= -stash.us.cray.com/HMS/hms-securestorage v1.11.0 h1:VEW860tXgGqD0jSB8cAsEdvd5tb1m34kq84Ur83VqPs= -stash.us.cray.com/HMS/hms-securestorage v1.11.0/go.mod h1:/tRNXYwCBvVdbhu6a+i5R3Jftag4x8921qWwA+jo4JA= -stash.us.cray.com/HMS/hms-securestorage v1.12.0 h1:hAtFIx2GfBn7xE7QvaY3ISOwOcCrj2CR8qJ8TYsHoME= -stash.us.cray.com/HMS/hms-securestorage v1.12.0/go.mod h1:uZsuLZtZ7P0SKopU4xveI2pZ28xnh7U13HEMP7yRBm0= -stash.us.cray.com/HMS/hms-smd v1.29.5 h1:7iJ2+3cIYedA/v8qZNlgepd6yrAn1tCjWuVyTcjQYqY= -stash.us.cray.com/HMS/hms-smd v1.29.5/go.mod h1:KG8dsfWvP1tpnhBZ4FH/cWkQNlseZEYqXal+RCOb+jY= -stash.us.cray.com/HMS/hms-trs-app-api v1.6.0 h1:gH0aAZ6AHPWwxuysb/th8zAggaoo7cRuAEpX/Y8FF6s= -stash.us.cray.com/HMS/hms-trs-app-api v1.6.0/go.mod h1:HFzdvdJTlrzf3mwJiDRt6uSiwsputw+d7bQZc/fo9sI= -stash.us.cray.com/HMS/hms-trs-kafkalib v1.4.0 h1:9rOfEbKr62dO5SS1nxFm6YTgp79z3O/UAnhW9+Uh9CM= -stash.us.cray.com/HMS/hms-trs-kafkalib v1.4.0/go.mod h1:mRVX41+rV1PqToi6tPJp52OvseeAUoCrwU4qo1Fauy4= diff --git a/internal/api/actions.go b/internal/api/actions.go index f6a794a7..9453abe9 100644 --- a/internal/api/actions.go +++ b/internal/api/actions.go @@ -33,10 +33,10 @@ import ( "github.com/google/uuid" "github.com/gorilla/mux" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) // CreateAction - creates an action and will trigger an 'update' diff --git a/internal/api/actions_test.go b/internal/api/actions_test.go index dd116988..b2ad7d8a 100644 --- a/internal/api/actions_test.go +++ b/internal/api/actions_test.go @@ -36,10 +36,10 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Update_TS struct { diff --git a/internal/api/api_helpers.go b/internal/api/api_helpers.go index c7977620..e85e886a 100644 --- a/internal/api/api_helpers.go +++ b/internal/api/api_helpers.go @@ -30,7 +30,7 @@ import ( "github.com/gorilla/mux" logrus "github.com/sirupsen/logrus" "net/http" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) // WriteJSON - writes JSON to the open http connection diff --git a/internal/api/images.go b/internal/api/images.go index 4263af8f..a6de1a8a 100644 --- a/internal/api/images.go +++ b/internal/api/images.go @@ -32,10 +32,10 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) // CreateImage - will create an image record diff --git a/internal/api/images_test.go b/internal/api/images_test.go index e1e49d81..6b5e77cf 100644 --- a/internal/api/images_test.go +++ b/internal/api/images_test.go @@ -35,10 +35,10 @@ import ( "github.com/google/uuid" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Images_TS struct { diff --git a/internal/api/loader.go b/internal/api/loader.go index a4ab50c4..8a15b751 100644 --- a/internal/api/loader.go +++ b/internal/api/loader.go @@ -35,8 +35,8 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) type LoaderID struct { diff --git a/internal/api/service_status.go b/internal/api/service_status.go index 363a6c2d..4e86a00e 100644 --- a/internal/api/service_status.go +++ b/internal/api/service_status.go @@ -27,7 +27,7 @@ package api import ( "fmt" "net/http" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" ) func ServiceStatus(w http.ResponseWriter, req *http.Request) { diff --git a/internal/api/service_status_test.go b/internal/api/service_status_test.go index 75c26014..1c361f25 100644 --- a/internal/api/service_status_test.go +++ b/internal/api/service_status_test.go @@ -32,7 +32,7 @@ import ( "testing" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" ) type ServiceStatus_TS struct { diff --git a/internal/api/snapshots.go b/internal/api/snapshots.go index 64c0dac2..898dbab3 100644 --- a/internal/api/snapshots.go +++ b/internal/api/snapshots.go @@ -31,9 +31,9 @@ import ( "github.com/sirupsen/logrus" "io/ioutil" "net/http" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" "strconv" "strings" ) diff --git a/internal/api/snapshots_test.go b/internal/api/snapshots_test.go index b8556338..844050e7 100644 --- a/internal/api/snapshots_test.go +++ b/internal/api/snapshots_test.go @@ -37,10 +37,10 @@ import ( "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Snapshot_TS struct { diff --git a/internal/api/unit_test_helpers.go b/internal/api/unit_test_helpers.go index 7417c67c..11c3c940 100644 --- a/internal/api/unit_test_helpers.go +++ b/internal/api/unit_test_helpers.go @@ -32,11 +32,11 @@ import ( "sync" "time" - "stash.us.cray.com/HMS/hms-firmware-action/internal/domain" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - "stash.us.cray.com/HMS/hms-firmware-action/internal/test" + "github.com/Cray-HPE/hms-firmware-action/internal/domain" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/test" ) var DSP storage.StorageProvider diff --git a/internal/domain/actions.go b/internal/domain/actions.go index a4366319..666244a2 100644 --- a/internal/domain/actions.go +++ b/internal/domain/actions.go @@ -30,9 +30,9 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) // TriggerFirmwareUpdate - will construct an ID, and async fire off work diff --git a/internal/domain/actions_test.go b/internal/domain/actions_test.go index 041d3c94..22f84c6f 100644 --- a/internal/domain/actions_test.go +++ b/internal/domain/actions_test.go @@ -33,8 +33,8 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Actions_TS struct { diff --git a/internal/domain/createUpdateList.go b/internal/domain/createUpdateList.go index 6ce55e1e..d4e2493d 100644 --- a/internal/domain/createUpdateList.go +++ b/internal/domain/createUpdateList.go @@ -30,9 +30,9 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) //Create Update List for this Update ActionID and add to Master Update List diff --git a/internal/domain/globals.go b/internal/domain/globals.go index ef73d614..e40f49a4 100644 --- a/internal/domain/globals.go +++ b/internal/domain/globals.go @@ -26,10 +26,10 @@ package domain import ( "sync" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - "stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" ) var GLOB *DOMAIN_GLOBALS diff --git a/internal/domain/images.go b/internal/domain/images.go index fbadd782..57304db9 100644 --- a/internal/domain/images.go +++ b/internal/domain/images.go @@ -29,9 +29,9 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) // CreateImage - will create an image diff --git a/internal/domain/images_test.go b/internal/domain/images_test.go index a4f4f5a3..21317153 100644 --- a/internal/domain/images_test.go +++ b/internal/domain/images_test.go @@ -32,8 +32,8 @@ import ( "github.com/google/uuid" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) func Helper_GetDefaultRawImage() (rImage presentation.RawImage) { diff --git a/internal/domain/loader.go b/internal/domain/loader.go index e80e4223..a57a19dc 100644 --- a/internal/domain/loader.go +++ b/internal/domain/loader.go @@ -35,8 +35,8 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" ) var LoaderRunning bool = false diff --git a/internal/domain/service_status.go b/internal/domain/service_status.go index 1d26314c..bb801df4 100644 --- a/internal/domain/service_status.go +++ b/internal/domain/service_status.go @@ -31,7 +31,7 @@ import ( "strings" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) func ServiceStatusDetails(check CheckServiceStatus) (pb model.Passback) { diff --git a/internal/domain/snapshots.go b/internal/domain/snapshots.go index f87d2931..0cfdd5db 100644 --- a/internal/domain/snapshots.go +++ b/internal/domain/snapshots.go @@ -30,10 +30,10 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) func GetAllExpiredSnapshots() (expiredSnapshots storage.Snapshots) { diff --git a/internal/domain/snapshots_test.go b/internal/domain/snapshots_test.go index 542749a7..9331b853 100644 --- a/internal/domain/snapshots_test.go +++ b/internal/domain/snapshots_test.go @@ -31,8 +31,8 @@ import ( "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/presentation" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/presentation" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Snapshot_TS struct { diff --git a/internal/domain/unit_test_helpers.go b/internal/domain/unit_test_helpers.go index bf9508e4..78be0a89 100644 --- a/internal/domain/unit_test_helpers.go +++ b/internal/domain/unit_test_helpers.go @@ -29,9 +29,9 @@ import ( "os" "sync" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - "stash.us.cray.com/HMS/hms-firmware-action/internal/test" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/test" ) var IsHandledCSFUT bool diff --git a/internal/domain/validation.go b/internal/domain/validation.go index e35e8d58..5434e8bd 100644 --- a/internal/domain/validation.go +++ b/internal/domain/validation.go @@ -29,9 +29,9 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - base "stash.us.cray.com/HMS/hms-base" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + base "github.com/Cray-HPE/hms-base" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) // ValidateActionParameters -> will VALIDATE the parameters, and set a few defaults along the way. diff --git a/internal/domain/validation_test.go b/internal/domain/validation_test.go index 39cfbc05..f08d6b38 100644 --- a/internal/domain/validation_test.go +++ b/internal/domain/validation_test.go @@ -32,7 +32,7 @@ import ( "github.com/google/uuid" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Validation_TS struct { diff --git a/internal/domain/version.go b/internal/domain/version.go index ea8763bc..827ca786 100644 --- a/internal/domain/version.go +++ b/internal/domain/version.go @@ -38,10 +38,10 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" ) //passing in a copy! diff --git a/internal/hsm/interface.go b/internal/hsm/interface.go index 2ccc789e..31bd4009 100644 --- a/internal/hsm/interface.go +++ b/internal/hsm/interface.go @@ -25,7 +25,7 @@ package hsm import ( - "stash.us.cray.com/HMS/hms-base" + "github.com/Cray-HPE/hms-base" ) type HSMv0 struct { diff --git a/internal/hsm/models.go b/internal/hsm/models.go index 2a4ea141..317fa676 100644 --- a/internal/hsm/models.go +++ b/internal/hsm/models.go @@ -27,11 +27,11 @@ package hsm import ( "sync" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-compcredentials" - "stash.us.cray.com/HMS/hms-smd/pkg/redfish" - reservation "stash.us.cray.com/HMS/hms-smd/pkg/service-reservations" - trsapi "stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" + "github.com/Cray-HPE/hms-compcredentials" + "github.com/Cray-HPE/hms-smd/pkg/redfish" + reservation "github.com/Cray-HPE/hms-smd/pkg/service-reservations" + trsapi "github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" ) type HsmData struct { diff --git a/internal/hsm/models_test.go b/internal/hsm/models_test.go index 73852389..80e6a320 100644 --- a/internal/hsm/models_test.go +++ b/internal/hsm/models_test.go @@ -27,11 +27,11 @@ package hsm import ( "testing" - "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + "github.com/Cray-HPE/hms-smd/pkg/redfish" "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" - "stash.us.cray.com/HMS/hms-firmware-action/internal/logger" - "stash.us.cray.com/HMS/hms-firmware-action/internal/test" + "github.com/Cray-HPE/hms-firmware-action/internal/logger" + "github.com/Cray-HPE/hms-firmware-action/internal/test" ) type Models_TS struct { diff --git a/internal/hsm/state_manager.go b/internal/hsm/state_manager.go index ddba9a14..1089c826 100644 --- a/internal/hsm/state_manager.go +++ b/internal/hsm/state_manager.go @@ -39,9 +39,9 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-base" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" - "stash.us.cray.com/HMS/hms-smd/pkg/sm" + "github.com/Cray-HPE/hms-base" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" + "github.com/Cray-HPE/hms-smd/pkg/sm" ) const crayModelRedfishPath = "/redfish/v1/Chassis/Enclosure" diff --git a/internal/hsm/vault.go b/internal/hsm/vault.go index cde30295..919b6f9f 100644 --- a/internal/hsm/vault.go +++ b/internal/hsm/vault.go @@ -27,8 +27,8 @@ package hsm import ( "errors" "fmt" - "stash.us.cray.com/HMS/hms-compcredentials" - "stash.us.cray.com/HMS/hms-securestorage" + "github.com/Cray-HPE/hms-compcredentials" + "github.com/Cray-HPE/hms-securestorage" "time" ) diff --git a/internal/presentation/actions.go b/internal/presentation/actions.go index 9d3eda76..cdead6ec 100644 --- a/internal/presentation/actions.go +++ b/internal/presentation/actions.go @@ -29,8 +29,8 @@ package presentation import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type OperationKey struct { diff --git a/internal/presentation/images.go b/internal/presentation/images.go index 194a3b11..f5feefad 100644 --- a/internal/presentation/images.go +++ b/internal/presentation/images.go @@ -30,8 +30,8 @@ import ( "github.com/Masterminds/semver" "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type Images struct { diff --git a/internal/presentation/snapshots.go b/internal/presentation/snapshots.go index dfed3e5f..711dece1 100644 --- a/internal/presentation/snapshots.go +++ b/internal/presentation/snapshots.go @@ -31,7 +31,7 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/storage" + "github.com/Cray-HPE/hms-firmware-action/internal/storage" ) type SnapshotName struct { diff --git a/internal/storage/actions.go b/internal/storage/actions.go index 8cb4d69c..884b590d 100644 --- a/internal/storage/actions.go +++ b/internal/storage/actions.go @@ -29,13 +29,13 @@ import ( "errors" "time" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" "github.com/google/uuid" "github.com/looplab/fsm" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/hsm" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/hsm" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) type ActionID struct { diff --git a/internal/storage/base_parameters.go b/internal/storage/base_parameters.go index 902ede46..c2b29f3b 100644 --- a/internal/storage/base_parameters.go +++ b/internal/storage/base_parameters.go @@ -26,7 +26,7 @@ package storage import ( "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) //StateComponentFilter -> queries hsm/state/components -> lockable components that were discovered diff --git a/internal/storage/etcd_impl.go b/internal/storage/etcd_impl.go index 2937b1e1..93cc2859 100644 --- a/internal/storage/etcd_impl.go +++ b/internal/storage/etcd_impl.go @@ -34,7 +34,7 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - hmetcd "stash.us.cray.com/HMS/hms-hmetcd" + hmetcd "github.com/Cray-HPE/hms-hmetcd" ) const ( diff --git a/internal/storage/images.go b/internal/storage/images.go index 92d41967..8adef7d3 100644 --- a/internal/storage/images.go +++ b/internal/storage/images.go @@ -28,7 +28,7 @@ import ( "database/sql" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/model" "github.com/Masterminds/semver" "github.com/google/uuid" diff --git a/internal/storage/snapshots.go b/internal/storage/snapshots.go index 2db41a77..a03dbf5b 100644 --- a/internal/storage/snapshots.go +++ b/internal/storage/snapshots.go @@ -30,7 +30,7 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-firmware-action/internal/model" + "github.com/Cray-HPE/hms-firmware-action/internal/model" ) type Snapshots struct { diff --git a/internal/test/mock.go b/internal/test/mock.go index 4a782f64..4f2b9261 100644 --- a/internal/test/mock.go +++ b/internal/test/mock.go @@ -28,9 +28,9 @@ import ( "github.com/sirupsen/logrus" "net/http" "os" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" - "stash.us.cray.com/HMS/hms-firmware-action/internal/logger" - trsapi "stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" + "github.com/Cray-HPE/hms-firmware-action/internal/logger" + trsapi "github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api" "time" ) diff --git a/kubernetes/cray-hms-firmware-action/Chart.yaml b/kubernetes/cray-hms-firmware-action/Chart.yaml index 9a925859..6f16a941 100644 --- a/kubernetes/cray-hms-firmware-action/Chart.yaml +++ b/kubernetes/cray-hms-firmware-action/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 description: "Kubernetes resources for cray-hms-firmware-action" name: "cray-hms-firmware-action" home: "HMS/hms-firmware-action" -version: 1.8.2 +version: 1.8.3 diff --git a/test/integration/py/Dockerfile b/test/integration/py/Dockerfile index f8465f87..05dc2ab6 100644 --- a/test/integration/py/Dockerfile +++ b/test/integration/py/Dockerfile @@ -45,11 +45,11 @@ RUN set -ex \ ##if you use CMD, then it will run like a service; we want this to execute the tests and quit ##RUN go test -v ./... #RUN set -ex \ -# && go test -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/domain \ -# && go test -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/api \ -# && go test -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/model \ -# && go test -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/storage \ -# && go test -v -o firmware-action stash.us.cray.com/HMS/hms-firmware-action/internal/hsm +# && go test -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/domain \ +# && go test -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/api \ +# && go test -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/model \ +# && go test -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/storage \ +# && go test -v -o firmware-action github.com/Cray-HPE/hms-firmware-action/internal/hsm #RUN set -ex \ # && apk add --no-cache \ diff --git a/vendor/stash.us.cray.com/HMS/hms-base/.gitignore b/vendor/github.com/Cray-HPE/hms-base/.gitignore similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/.gitignore rename to vendor/github.com/Cray-HPE/hms-base/.gitignore diff --git a/vendor/github.com/Cray-HPE/hms-base/.version b/vendor/github.com/Cray-HPE/hms-base/.version new file mode 100644 index 00000000..141f2e80 --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-base/.version @@ -0,0 +1 @@ +1.15.0 diff --git a/vendor/stash.us.cray.com/HMS/hms-base/CHANGELOG.md b/vendor/github.com/Cray-HPE/hms-base/CHANGELOG.md similarity index 96% rename from vendor/stash.us.cray.com/HMS/hms-base/CHANGELOG.md rename to vendor/github.com/Cray-HPE/hms-base/CHANGELOG.md index cc6c2f65..3b273ce9 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/CHANGELOG.md +++ b/vendor/github.com/Cray-HPE/hms-base/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.15.0] - 2021-07-16 + +### Changed + +- Replaced Stash Go module name with GitHub version. + +## [1.14.0] - 2021-07-01 + +### Changed + +- Bumped version to represent migration to GitHub. + ## [1.13.0] - 2021-06-28 ### Security diff --git a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile b/vendor/github.com/Cray-HPE/hms-base/Dockerfile similarity index 90% rename from vendor/stash.us.cray.com/HMS/hms-base/Dockerfile rename to vendor/github.com/Cray-HPE/hms-base/Dockerfile index d6e91f81..36752b9b 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile +++ b/vendor/github.com/Cray-HPE/hms-base/Dockerfile @@ -35,11 +35,11 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto -COPY *.go $GOPATH/src/stash.us.cray.com/HMS/hms-base/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-base/vendor +COPY *.go $GOPATH/src/github.com/Cray-HPE/hms-base/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-base/vendor # Now we can build. FROM base RUN set -ex \ - && go build -v stash.us.cray.com/HMS/hms-base/... + && go build -v github.com/Cray-HPE/hms-base/... diff --git a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.build-base b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.build-base similarity index 93% rename from vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.build-base rename to vendor/github.com/Cray-HPE/hms-base/Dockerfile.build-base index 629bb894..0d822575 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.build-base +++ b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.build-base @@ -35,5 +35,5 @@ FROM build-base RUN go env -w GO111MODULE=auto -COPY *.go $GOPATH/src/stash.us.cray.com/HMS/hms-base/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-base/vendor +COPY *.go $GOPATH/src/github.com/Cray-HPE/hms-base/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-base/vendor diff --git a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.coverage b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.coverage similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.coverage rename to vendor/github.com/Cray-HPE/hms-base/Dockerfile.coverage index c5ab62ef..40a53c1c 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.coverage +++ b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.coverage @@ -26,4 +26,4 @@ FROM cray/hms-base-build-base # Run coverage. RUN set -ex \ - && go test -cover -v stash.us.cray.com/HMS/hms-base/... + && go test -cover -v github.com/Cray-HPE/hms-base/... diff --git a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.testing b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.testing similarity index 96% rename from vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.testing rename to vendor/github.com/Cray-HPE/hms-base/Dockerfile.testing index 043f4ada..fccd2eab 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/Dockerfile.testing +++ b/vendor/github.com/Cray-HPE/hms-base/Dockerfile.testing @@ -27,4 +27,4 @@ FROM cray/hms-base-build-base # Run any tests that might be present. RUN set -ex \ - && go test -v stash.us.cray.com/HMS/hms-base + && go test -v github.com/Cray-HPE/hms-base diff --git a/vendor/github.com/Cray-HPE/hms-base/Jenkinsfile.github b/vendor/github.com/Cray-HPE/hms-base/Jenkinsfile.github new file mode 100644 index 00000000..c5c0c38d --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-base/Jenkinsfile.github @@ -0,0 +1,34 @@ +@Library('csm-shared-library') _ + +pipeline { + agent { + label "metal-gcp-builder" + } + + options { + buildDiscarder(logRotator(numToKeepStr: "10")) + timestamps() + } + + environment { + NAME = "hms-base" + DESCRIPTION = "Cray Hardware Management System Base library" + IS_STABLE = getBuildIsStable() + VERSION = getDockerBuildVersion(isStable: env.IS_STABLE) + DOCKER_ARGS = getDockerBuildArgs(name: env.NAME, description: env.DESCRIPTION) + } + + stages { + stage("Run Unit Tests") { + steps { + sh "make unittest" + } + } + + stage("Run Coverage Tests") { + steps { + sh "make coverage" + } + } + } +} diff --git a/vendor/stash.us.cray.com/HMS/hms-base/LICENSE b/vendor/github.com/Cray-HPE/hms-base/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/LICENSE rename to vendor/github.com/Cray-HPE/hms-base/LICENSE diff --git a/vendor/github.com/Cray-HPE/hms-base/Makefile b/vendor/github.com/Cray-HPE/hms-base/Makefile new file mode 100644 index 00000000..c7a63b11 --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-base/Makefile @@ -0,0 +1,11 @@ +NAME ?= hms-base +VERSION ?= $(shell cat .version) + +all : unittest coverage + +unittest: + docker build --pull ${DOCKER_ARGS} --tag '${NAME}:${VERSION}' . + ./runUnitTest.sh + +coverage: + ./runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-base/configWatch.go b/vendor/github.com/Cray-HPE/hms-base/configWatch.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/configWatch.go rename to vendor/github.com/Cray-HPE/hms-base/configWatch.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/doc.go b/vendor/github.com/Cray-HPE/hms-base/doc.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/doc.go rename to vendor/github.com/Cray-HPE/hms-base/doc.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/go.mod b/vendor/github.com/Cray-HPE/hms-base/go.mod similarity index 80% rename from vendor/stash.us.cray.com/HMS/hms-base/go.mod rename to vendor/github.com/Cray-HPE/hms-base/go.mod index f7757dc6..020ab348 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/go.mod +++ b/vendor/github.com/Cray-HPE/hms-base/go.mod @@ -1,4 +1,4 @@ -module stash.us.cray.com/HMS/hms-base +module github.com/Cray-HPE/hms-base go 1.16 diff --git a/vendor/stash.us.cray.com/HMS/hms-base/go.sum b/vendor/github.com/Cray-HPE/hms-base/go.sum similarity index 90% rename from vendor/stash.us.cray.com/HMS/hms-base/go.sum rename to vendor/github.com/Cray-HPE/hms-base/go.sum index 224a12cc..6d536faf 100644 --- a/vendor/stash.us.cray.com/HMS/hms-base/go.sum +++ b/vendor/github.com/Cray-HPE/hms-base/go.sum @@ -1,6 +1,5 @@ github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/hashicorp/go-cleanhttp v0.5.0 h1:wvCrVc9TjDls6+YGAF2hAifE1E5U1+b4tH6KdvN3Gig= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.1 h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= diff --git a/vendor/stash.us.cray.com/HMS/hms-base/hmserr.go b/vendor/github.com/Cray-HPE/hms-base/hmserr.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/hmserr.go rename to vendor/github.com/Cray-HPE/hms-base/hmserr.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/hmslimits.go b/vendor/github.com/Cray-HPE/hms-base/hmslimits.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/hmslimits.go rename to vendor/github.com/Cray-HPE/hms-base/hmslimits.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/hmstypes.go b/vendor/github.com/Cray-HPE/hms-base/hmstypes.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/hmstypes.go rename to vendor/github.com/Cray-HPE/hms-base/hmstypes.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/http.go b/vendor/github.com/Cray-HPE/hms-base/http.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/http.go rename to vendor/github.com/Cray-HPE/hms-base/http.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/runCoverage.sh b/vendor/github.com/Cray-HPE/hms-base/runCoverage.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/runCoverage.sh rename to vendor/github.com/Cray-HPE/hms-base/runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-base/runUnitTest.sh b/vendor/github.com/Cray-HPE/hms-base/runUnitTest.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/runUnitTest.sh rename to vendor/github.com/Cray-HPE/hms-base/runUnitTest.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-base/util.go b/vendor/github.com/Cray-HPE/hms-base/util.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/util.go rename to vendor/github.com/Cray-HPE/hms-base/util.go diff --git a/vendor/stash.us.cray.com/HMS/hms-base/worker-pool.go b/vendor/github.com/Cray-HPE/hms-base/worker-pool.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-base/worker-pool.go rename to vendor/github.com/Cray-HPE/hms-base/worker-pool.go diff --git a/vendor/stash.us.cray.com/HMS/hms-certs/LICENSE b/vendor/github.com/Cray-HPE/hms-certs/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-certs/LICENSE rename to vendor/github.com/Cray-HPE/hms-certs/LICENSE diff --git a/vendor/stash.us.cray.com/HMS/hms-certs/pkg/hms_certs/certs.go b/vendor/github.com/Cray-HPE/hms-certs/pkg/hms_certs/certs.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-certs/pkg/hms_certs/certs.go rename to vendor/github.com/Cray-HPE/hms-certs/pkg/hms_certs/certs.go index 1c99e03d..ad7c9e1c 100644 --- a/vendor/stash.us.cray.com/HMS/hms-certs/pkg/hms_certs/certs.go +++ b/vendor/github.com/Cray-HPE/hms-certs/pkg/hms_certs/certs.go @@ -41,8 +41,8 @@ import ( "crypto/tls" "crypto/x509" - "stash.us.cray.com/HMS/hms-base" - sstorage "stash.us.cray.com/HMS/hms-securestorage" + "github.com/Cray-HPE/hms-base" + sstorage "github.com/Cray-HPE/hms-securestorage" "github.com/sirupsen/logrus" "github.com/hashicorp/go-retryablehttp" ) diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/.gitignore b/vendor/github.com/Cray-HPE/hms-compcredentials/.gitignore similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/.gitignore rename to vendor/github.com/Cray-HPE/hms-compcredentials/.gitignore diff --git a/vendor/github.com/Cray-HPE/hms-compcredentials/.version b/vendor/github.com/Cray-HPE/hms-compcredentials/.version new file mode 100644 index 00000000..ca717669 --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/.version @@ -0,0 +1 @@ +1.11.2 diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/CHANGELOG.md b/vendor/github.com/Cray-HPE/hms-compcredentials/CHANGELOG.md similarity index 94% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/CHANGELOG.md rename to vendor/github.com/Cray-HPE/hms-compcredentials/CHANGELOG.md index 307bb154..6ea55cd8 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/CHANGELOG.md +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.11.2] - 2021-07-26 + +### Changed + +- Replaced all references to Stash with GitHub. + +## [1.11.1] - 2021-07-20 + +### Changed + +- Bumped version to represent migration to GitHub. + ## [1.11.0] - 2021-06-28 ### Security diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile similarity index 87% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile rename to vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile index 895a0339..a79d6b9f 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile @@ -35,11 +35,11 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto -COPY compCredentials.go compCredentials_test.go $GOPATH/src/stash.us.cray.com/HMS/hms-compcredentials/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-compcredentials/vendor +COPY compCredentials.go compCredentials_test.go $GOPATH/src/github.com/Cray-HPE/hms-compcredentials/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-compcredentials/vendor # Now we can build. FROM base RUN set -ex \ - && go build -v stash.us.cray.com/HMS/hms-compcredentials/... + && go build -v github.com/Cray-HPE/hms-compcredentials/... diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.build-base b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.build-base similarity index 89% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.build-base rename to vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.build-base index 58c5cb9d..4a87622b 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.build-base +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.build-base @@ -35,5 +35,5 @@ FROM build-base RUN go env -w GO111MODULE=auto -COPY compCredentials.go compCredentials_test.go $GOPATH/src/stash.us.cray.com/HMS/hms-compcredentials/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-compcredentials/vendor +COPY compCredentials.go compCredentials_test.go $GOPATH/src/github.com/Cray-HPE/hms-compcredentials/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-compcredentials/vendor diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.coverage b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.coverage similarity index 94% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.coverage rename to vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.coverage index 6a5ba999..e86aa32d 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.coverage +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.coverage @@ -26,4 +26,4 @@ FROM cray/hms-compcredentials-build-base # Run coverage. RUN set -ex \ - && go test -cover -v stash.us.cray.com/HMS/hms-compcredentials/... + && go test -cover -v github.com/Cray-HPE/hms-compcredentials/... diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.testing b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.testing similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.testing rename to vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.testing index d03befea..4ac42a78 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Dockerfile.testing +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Dockerfile.testing @@ -26,4 +26,4 @@ FROM cray/hms-compcredentials-build-base # Run any tests that might be present. RUN set -ex \ - && go test -v stash.us.cray.com/HMS/hms-compcredentials/... + && go test -v github.com/Cray-HPE/hms-compcredentials/... diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/Jenkinsfile b/vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/Jenkinsfile rename to vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile diff --git a/vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile.github b/vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile.github new file mode 100644 index 00000000..2d006d3d --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Jenkinsfile.github @@ -0,0 +1,34 @@ +@Library('csm-shared-library') _ + +pipeline { + agent { + label "metal-gcp-builder" + } + + options { + buildDiscarder(logRotator(numToKeepStr: "10")) + timestamps() + } + + environment { + NAME = "hms-compcredentials" + DESCRIPTION = "HMS package containing helpers for managing component credentials." + IS_STABLE = getBuildIsStable() + VERSION = getDockerBuildVersion(isStable: env.IS_STABLE) + DOCKER_ARGS = getDockerBuildArgs(name: env.NAME, description: env.DESCRIPTION) + } + + stages { + stage("Run Unit Tests") { + steps { + sh "make unittest" + } + } + + stage("Run Coverage Tests") { + steps { + sh "make coverage" + } + } + } +} diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/LICENSE b/vendor/github.com/Cray-HPE/hms-compcredentials/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/LICENSE rename to vendor/github.com/Cray-HPE/hms-compcredentials/LICENSE diff --git a/vendor/github.com/Cray-HPE/hms-compcredentials/Makefile b/vendor/github.com/Cray-HPE/hms-compcredentials/Makefile new file mode 100644 index 00000000..3f8813bf --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/Makefile @@ -0,0 +1,11 @@ +NAME ?= hms-compcredentials +VERSION ?= $(shell cat .version) + +all : unittest coverage + +unittest: + docker build --pull ${DOCKER_ARGS} --tag '${NAME}:${VERSION}' . + ./runUnitTest.sh + +coverage: + ./runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/compCredentials.go b/vendor/github.com/Cray-HPE/hms-compcredentials/compCredentials.go similarity index 97% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/compCredentials.go rename to vendor/github.com/Cray-HPE/hms-compcredentials/compCredentials.go index 7fd9e130..462b6b12 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/compCredentials.go +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/compCredentials.go @@ -28,7 +28,7 @@ import ( "fmt" log "github.com/sirupsen/logrus" - sstorage "stash.us.cray.com/HMS/hms-securestorage" + sstorage "github.com/Cray-HPE/hms-securestorage" ) const DefaultCompCredPath = "hms-creds" @@ -36,8 +36,8 @@ const DefaultCompCredPath = "hms-creds" // Usage example using vault as the backing secure storage: //import ( // "log" -// sstorage "stash.us.cray.com/HMS/hms-securestorage" -// cc "stash.us.cray.com/HMS/hms-compcredentials" +// sstorage "github.com/Cray-HPE/hms-securestorage" +// cc "github.com/Cray-HPE/hms-compcredentials" //) //func compCredVaultExample() { // // Create the Vault adapter and connect to Vault diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/go.mod b/vendor/github.com/Cray-HPE/hms-compcredentials/go.mod similarity index 56% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/go.mod rename to vendor/github.com/Cray-HPE/hms-compcredentials/go.mod index 1595d59c..2a0fd46a 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/go.mod +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/go.mod @@ -1,9 +1,9 @@ -module stash.us.cray.com/HMS/hms-compcredentials +module github.com/Cray-HPE/hms-compcredentials go 1.16 require ( + github.com/Cray-HPE/hms-securestorage v1.12.2 github.com/sirupsen/logrus v1.4.1 golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 // indirect - stash.us.cray.com/HMS/hms-securestorage v1.11.0 ) diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/go.sum b/vendor/github.com/Cray-HPE/hms-compcredentials/go.sum similarity index 97% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/go.sum rename to vendor/github.com/Cray-HPE/hms-compcredentials/go.sum index 91f02141..c4c960f1 100644 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/go.sum +++ b/vendor/github.com/Cray-HPE/hms-compcredentials/go.sum @@ -1,5 +1,7 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/Cray-HPE/hms-securestorage v1.12.2 h1:H5n0i6ldzewd5p7PI2Hktr/+9cYfSCui+0367p2L6n8= +github.com/Cray-HPE/hms-securestorage v1.12.2/go.mod h1:P4CMKqQVlx/lv+AdyEjNQubZw2FKNyo/IAtFNgQ3VuI= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= @@ -59,7 +61,6 @@ github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.0 h1:iDwIio/3gk2QtLLEsqU5lInaMzos0hDTz8a6lazSFVw= github.com/mitchellh/mapstructure v1.3.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -92,7 +93,6 @@ golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -131,5 +131,3 @@ gopkg.in/square/go-jose.v2 v2.3.1 h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4 gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -stash.us.cray.com/HMS/hms-securestorage v1.11.0 h1:VEW860tXgGqD0jSB8cAsEdvd5tb1m34kq84Ur83VqPs= -stash.us.cray.com/HMS/hms-securestorage v1.11.0/go.mod h1:/tRNXYwCBvVdbhu6a+i5R3Jftag4x8921qWwA+jo4JA= diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/runCoverage.sh b/vendor/github.com/Cray-HPE/hms-compcredentials/runCoverage.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/runCoverage.sh rename to vendor/github.com/Cray-HPE/hms-compcredentials/runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/runUnitTest.sh b/vendor/github.com/Cray-HPE/hms-compcredentials/runUnitTest.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-compcredentials/runUnitTest.sh rename to vendor/github.com/Cray-HPE/hms-compcredentials/runUnitTest.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/.gitignore b/vendor/github.com/Cray-HPE/hms-hmetcd/.gitignore similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/.gitignore rename to vendor/github.com/Cray-HPE/hms-hmetcd/.gitignore diff --git a/vendor/github.com/Cray-HPE/hms-hmetcd/.version b/vendor/github.com/Cray-HPE/hms-hmetcd/.version new file mode 100644 index 00000000..5ad2491c --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/.version @@ -0,0 +1 @@ +1.10.2 diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/CHANGELOG.md b/vendor/github.com/Cray-HPE/hms-hmetcd/CHANGELOG.md similarity index 94% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/CHANGELOG.md rename to vendor/github.com/Cray-HPE/hms-hmetcd/CHANGELOG.md index 0a8f4b35..c7b1afb1 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/CHANGELOG.md +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.10.2] - 2021-07-21 + +### Changed + +- Moved all stash references to GitHub. + +## [1.10.1] - 2021-07-19 + +### Changed + +- Add support for building within the CSM Jenkins. + ## [1.10.0] - 2021-06-28 ### Security diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile similarity index 90% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile rename to vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile index 7a9cd2b3..cd7672ba 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile @@ -35,11 +35,11 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto -COPY *.go $GOPATH/src/stash.us.cray.com/HMS/hms-hmetcd/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-hmetcd/vendor +COPY *.go $GOPATH/src/github.com/Cray-HPE/hms-hmetcd/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-hmetcd/vendor # Now we can build. FROM base RUN set -ex \ - && go build -v stash.us.cray.com/HMS/hms-hmetcd/... + && go build -v github.com/Cray-HPE/hms-hmetcd/... diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.build-base b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.build-base similarity index 92% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.build-base rename to vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.build-base index 96a9d8f3..5ac9e21a 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.build-base +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.build-base @@ -35,5 +35,5 @@ FROM build-base RUN go env -w GO111MODULE=auto -COPY *.go $GOPATH/src/stash.us.cray.com/HMS/hms-hmetcd/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-hmetcd/vendor +COPY *.go $GOPATH/src/github.com/Cray-HPE/hms-hmetcd/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-hmetcd/vendor diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.coverage b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.coverage similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.coverage rename to vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.coverage index 96cd4e15..a00b930e 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.coverage +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.coverage @@ -26,4 +26,4 @@ FROM cray/hms-hmetcd-build-base # Run coverage. RUN set -ex \ - && go test -cover -v stash.us.cray.com/HMS/hms-hmetcd/... + && go test -cover -v github.com/Cray-HPE/hms-hmetcd/... diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.testing b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.testing similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.testing rename to vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.testing index 67c30b84..33978d23 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Dockerfile.testing +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Dockerfile.testing @@ -26,4 +26,4 @@ FROM cray/hms-hmetcd-build-base # Run any tests that might be present. RUN set -ex \ - && go test -v stash.us.cray.com/HMS/hms-hmetcd/... + && go test -v github.com/Cray-HPE/hms-hmetcd/... diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/Jenkinsfile b/vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/Jenkinsfile rename to vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile diff --git a/vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile.github b/vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile.github new file mode 100644 index 00000000..5cb00d3a --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Jenkinsfile.github @@ -0,0 +1,40 @@ +@Library('csm-shared-library') _ + +pipeline { + agent { + label "metal-gcp-builder" + } + + options { + buildDiscarder(logRotator(numToKeepStr: "10")) + timestamps() + } + + environment { + NAME = "hms-hmetcd" + DESCRIPTION = "Cray HMS hmetcd code." + IS_STABLE = getBuildIsStable() + VERSION = getDockerBuildVersion(isStable: env.IS_STABLE) + DOCKER_ARGS = getDockerBuildArgs(name: env.NAME, description: env.DESCRIPTION, version: env.VERSION) + } + + stages { + stage("Image") { + steps { + sh "make image" + } + } + + stage("Run Unit Tests") { + steps { + sh "make unittest" + } + } + + stage("Run Coverage Tests") { + steps { + sh "make coverage" + } + } + } +} diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/LICENSE b/vendor/github.com/Cray-HPE/hms-hmetcd/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/LICENSE rename to vendor/github.com/Cray-HPE/hms-hmetcd/LICENSE diff --git a/vendor/github.com/Cray-HPE/hms-hmetcd/Makefile b/vendor/github.com/Cray-HPE/hms-hmetcd/Makefile new file mode 100644 index 00000000..5907523a --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/Makefile @@ -0,0 +1,34 @@ +# (C) Copyright 2021 Hewlett Packard Enterprise Development LP +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. + +NAME ?= hms-hmetcd +VERSION ?= $(shell cat .version) + +all: image unittest coverage + +image: + docker build --pull ${DOCKER_ARGS} --tag '${NAME}:${VERSION}' . + +unittest: + ./runUnitTest.sh + +coverage: + ./runCoverage.sh + diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/README.txt b/vendor/github.com/Cray-HPE/hms-hmetcd/README.txt similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/README.txt rename to vendor/github.com/Cray-HPE/hms-hmetcd/README.txt diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/doc.go b/vendor/github.com/Cray-HPE/hms-hmetcd/doc.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/doc.go rename to vendor/github.com/Cray-HPE/hms-hmetcd/doc.go diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/go.mod b/vendor/github.com/Cray-HPE/hms-hmetcd/go.mod similarity index 91% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/go.mod rename to vendor/github.com/Cray-HPE/hms-hmetcd/go.mod index 2ae26fa8..a6a2462e 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/go.mod +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/go.mod @@ -1,4 +1,4 @@ -module stash.us.cray.com/HMS/hms-hmetcd +module github.com/Cray-HPE/hms-hmetcd go 1.16 @@ -20,14 +20,11 @@ require ( github.com/json-iterator/go v1.1.6 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.1 // indirect - github.com/pkg/errors v0.8.1 // indirect github.com/prometheus/client_golang v0.9.2 // indirect github.com/sirupsen/logrus v1.4.1 // indirect github.com/soheilhy/cmux v0.1.4 // indirect - github.com/stretchr/testify v1.3.0 // indirect github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect - go.etcd.io/bbolt v1.3.2 // indirect go.etcd.io/etcd v3.3.13+incompatible go.uber.org/atomic v1.4.0 // indirect go.uber.org/multierr v1.1.0 // indirect diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/go.sum b/vendor/github.com/Cray-HPE/hms-hmetcd/go.sum similarity index 89% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/go.sum rename to vendor/github.com/Cray-HPE/hms-hmetcd/go.sum index 71b48f7d..acd3b804 100644 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/go.sum +++ b/vendor/github.com/Cray-HPE/hms-hmetcd/go.sum @@ -15,8 +15,6 @@ github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e h1:Wf6HqHfScWJN9 github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= @@ -27,7 +25,6 @@ github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef h1:veQD95Isof8w9/WXiA+pa3tz3fJXkt5B7QaRBrM62gk= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -56,10 +53,8 @@ github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvW github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= @@ -67,13 +62,9 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.2 h1:awm861/B8OKDd2I/6o1dy3ra4BamzKhYOiGItCeZ740= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= @@ -86,17 +77,12 @@ github.com/sirupsen/logrus v1.4.1 h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/soheilhy/cmux v0.1.4 h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -go.etcd.io/bbolt v1.3.2 h1:Z/90sZLPOeCy2PwprqkFa25PdkusRzaj9P8zm/KNyvk= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/etcd v3.3.13+incompatible h1:jCejD5EMnlGxFvcGRyEV4VGlENZc7oPQX6o0t7n3xbw= go.etcd.io/etcd v3.3.13+incompatible/go.mod h1:yaeTdrJi5lOmYerz05bd8+V7KubZs8YSFZfzsF9A6aI= go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU= @@ -130,7 +116,6 @@ golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e h1:nFYrTHrdrAOpShe27kaFHjsqYSEQ0KWqdWLu3xuZJts= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db h1:6/JqlYfC1CCaLnGceQTI+sDGhC9UBSPAsBqI0Gun6kU= golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -142,10 +127,8 @@ golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -google.golang.org/appengine v1.1.0 h1:igQkv0AAhEIvTEpD5LIpAfav2eeVO9HBTjvKHVJPRSs= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 h1:Nw54tB0rB7hY/N0NQvRW8DG4Yk3Q6T9cu9RcFQDu1tc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= @@ -155,10 +138,8 @@ google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQ google.golang.org/grpc v1.29.1 h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7 h1:+t9dhfO+GNOIGJof6kPOAenx7YgrZMTdRPV+EsnPabk= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/kvs_etcd.go b/vendor/github.com/Cray-HPE/hms-hmetcd/kvs_etcd.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/kvs_etcd.go rename to vendor/github.com/Cray-HPE/hms-hmetcd/kvs_etcd.go diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/runCoverage.sh b/vendor/github.com/Cray-HPE/hms-hmetcd/runCoverage.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/runCoverage.sh rename to vendor/github.com/Cray-HPE/hms-hmetcd/runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/runUnitTest.sh b/vendor/github.com/Cray-HPE/hms-hmetcd/runUnitTest.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-hmetcd/runUnitTest.sh rename to vendor/github.com/Cray-HPE/hms-hmetcd/runUnitTest.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/.gitignore b/vendor/github.com/Cray-HPE/hms-securestorage/.gitignore similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/.gitignore rename to vendor/github.com/Cray-HPE/hms-securestorage/.gitignore diff --git a/vendor/github.com/Cray-HPE/hms-securestorage/.version b/vendor/github.com/Cray-HPE/hms-securestorage/.version new file mode 100644 index 00000000..6b89d58f --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-securestorage/.version @@ -0,0 +1 @@ +1.12.2 diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/CHANGELOG.md b/vendor/github.com/Cray-HPE/hms-securestorage/CHANGELOG.md similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/CHANGELOG.md rename to vendor/github.com/Cray-HPE/hms-securestorage/CHANGELOG.md index 259c2640..899fd559 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/CHANGELOG.md +++ b/vendor/github.com/Cray-HPE/hms-securestorage/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.12.2] - 2021-07-21 + +### Changed + +- Replaced all references to Stash with GitHub. + +## [1.12.1] - 2021-07-20 + +### Changed + +- Bumped version to represent migration to GitHub. + ## [1.12.0] - 2021-06-28 ### Security diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile similarity index 89% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile rename to vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile index cf56900c..45167081 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile @@ -35,11 +35,11 @@ FROM build-base AS base RUN go env -w GO111MODULE=auto -COPY *.go $GOPATH/src/stash.us.cray.com/HMS/hms-securestorage/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-securestorage/vendor +COPY *.go $GOPATH/src/github.com/Cray-HPE/hms-securestorage/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-securestorage/vendor # Now we can build. FROM base RUN set -ex \ - && go build -v stash.us.cray.com/HMS/hms-securestorage/... + && go build -v github.com/Cray-HPE/hms-securestorage/... diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.build-base b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.build-base similarity index 91% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.build-base rename to vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.build-base index e8e5139b..005739b1 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.build-base +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.build-base @@ -35,5 +35,5 @@ FROM build-base RUN go env -w GO111MODULE=auto -COPY *.go namespace token $GOPATH/src/stash.us.cray.com/HMS/hms-securestorage/ -COPY vendor $GOPATH/src/stash.us.cray.com/HMS/hms-securestorage/vendor +COPY *.go namespace token $GOPATH/src/github.com/Cray-HPE/hms-securestorage/ +COPY vendor $GOPATH/src/github.com/Cray-HPE/hms-securestorage/vendor diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.coverage b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.coverage similarity index 94% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.coverage rename to vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.coverage index 3527e6e5..84350c4b 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.coverage +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.coverage @@ -26,4 +26,4 @@ FROM cray/hms-securestorage-build-base # Run coverage. RUN set -ex \ - && go test -cover -v stash.us.cray.com/HMS/hms-securestorage/... + && go test -cover -v github.com/Cray-HPE/hms-securestorage/... diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.testing b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.testing similarity index 95% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.testing rename to vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.testing index 62d3644f..e1545c02 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/Dockerfile.testing +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Dockerfile.testing @@ -26,4 +26,4 @@ FROM cray/hms-securestorage-build-base # Run any tests that might be present. RUN set -ex \ - && go test -v stash.us.cray.com/HMS/hms-securestorage/... + && go test -v github.com/Cray-HPE/hms-securestorage/... diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/Jenkinsfile b/vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/Jenkinsfile rename to vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile diff --git a/vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile.github b/vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile.github new file mode 100644 index 00000000..d58a0211 --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Jenkinsfile.github @@ -0,0 +1,34 @@ +@Library('csm-shared-library') _ + +pipeline { + agent { + label "metal-gcp-builder" + } + + options { + buildDiscarder(logRotator(numToKeepStr: "10")) + timestamps() + } + + environment { + NAME = "hms-securestorage" + DESCRIPTION = "Cray Hardware Management System Secure Storage library" + IS_STABLE = getBuildIsStable() + VERSION = getDockerBuildVersion(isStable: env.IS_STABLE) + DOCKER_ARGS = getDockerBuildArgs(name: env.NAME, description: env.DESCRIPTION) + } + + stages { + stage("Run Unit Tests") { + steps { + sh "make unittest" + } + } + + stage("Run Coverage Tests") { + steps { + sh "make coverage" + } + } + } +} diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/LICENSE b/vendor/github.com/Cray-HPE/hms-securestorage/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/LICENSE rename to vendor/github.com/Cray-HPE/hms-securestorage/LICENSE diff --git a/vendor/github.com/Cray-HPE/hms-securestorage/Makefile b/vendor/github.com/Cray-HPE/hms-securestorage/Makefile new file mode 100644 index 00000000..32b198be --- /dev/null +++ b/vendor/github.com/Cray-HPE/hms-securestorage/Makefile @@ -0,0 +1,11 @@ +NAME ?= hms-securestorage +VERSION ?= $(shell cat .version) + +all : unittest coverage + +unittest: + docker build --pull ${DOCKER_ARGS} --tag '${NAME}:${VERSION}' . + ./runUnitTest.sh + +coverage: + ./runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/go.mod b/vendor/github.com/Cray-HPE/hms-securestorage/go.mod similarity index 68% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/go.mod rename to vendor/github.com/Cray-HPE/hms-securestorage/go.mod index b6ad7d87..b4e6596a 100644 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/go.mod +++ b/vendor/github.com/Cray-HPE/hms-securestorage/go.mod @@ -1,4 +1,4 @@ -module stash.us.cray.com/HMS/hms-securestorage +module github.com/Cray-HPE/hms-securestorage go 1.16 diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/go.sum b/vendor/github.com/Cray-HPE/hms-securestorage/go.sum similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/go.sum rename to vendor/github.com/Cray-HPE/hms-securestorage/go.sum diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/mockAdapter.go b/vendor/github.com/Cray-HPE/hms-securestorage/mockAdapter.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/mockAdapter.go rename to vendor/github.com/Cray-HPE/hms-securestorage/mockAdapter.go diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/namespace b/vendor/github.com/Cray-HPE/hms-securestorage/namespace similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/namespace rename to vendor/github.com/Cray-HPE/hms-securestorage/namespace diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/runCoverage.sh b/vendor/github.com/Cray-HPE/hms-securestorage/runCoverage.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/runCoverage.sh rename to vendor/github.com/Cray-HPE/hms-securestorage/runCoverage.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/runUnitTest.sh b/vendor/github.com/Cray-HPE/hms-securestorage/runUnitTest.sh similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/runUnitTest.sh rename to vendor/github.com/Cray-HPE/hms-securestorage/runUnitTest.sh diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/secureStorage.go b/vendor/github.com/Cray-HPE/hms-securestorage/secureStorage.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/secureStorage.go rename to vendor/github.com/Cray-HPE/hms-securestorage/secureStorage.go diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/token b/vendor/github.com/Cray-HPE/hms-securestorage/token similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/token rename to vendor/github.com/Cray-HPE/hms-securestorage/token diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/vaultAdapter.go b/vendor/github.com/Cray-HPE/hms-securestorage/vaultAdapter.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-securestorage/vaultAdapter.go rename to vendor/github.com/Cray-HPE/hms-securestorage/vaultAdapter.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/LICENSE b/vendor/github.com/Cray-HPE/hms-smd/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/LICENSE rename to vendor/github.com/Cray-HPE/hms-smd/LICENSE diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/README b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/README similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/README rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/README diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-assembly.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-assembly.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-assembly.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-assembly.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-hpe.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-hpe.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-hpe.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-hpe.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-network.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-network.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-network.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-network.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-power.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-power.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-power.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-power.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-storage.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-storage.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-storage.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-storage.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-support.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-support.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish-support.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish-support.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/redfish.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/redfish.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfclient.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfclient.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfclient.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfclient.go index e67a224e..c6cc954e 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfclient.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfclient.go @@ -25,7 +25,7 @@ package rf import ( "os" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" ) var httpRFClient *hms_certs.HTTPClientPair diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-assembly.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-assembly.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-assembly.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-assembly.go index 33df7170..5b9ef651 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-assembly.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-assembly.go @@ -26,7 +26,7 @@ import ( "encoding/json" "fmt" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) ///////////////////////////////////////////////////////////////////////////// diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-hpe.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-hpe.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-hpe.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-hpe.go index 6b2362a8..427e0d91 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-hpe.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-hpe.go @@ -29,7 +29,7 @@ import ( "strconv" "strings" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) ///////////////////////////////////////////////////////////////////////////// diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-network.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-network.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-network.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-network.go index 44dce429..675502e1 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-network.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-network.go @@ -26,7 +26,7 @@ import ( "encoding/json" "fmt" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) ///////////////////////////////////////////////////////////////////////////// diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-power.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-power.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-power.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-power.go index 2eb7f74b..7d7244b9 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-power.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-power.go @@ -28,7 +28,7 @@ import ( "sort" "strconv" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" //"strings" ) diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-storage.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-storage.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-storage.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-storage.go index 77951b11..70f43595 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents-storage.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents-storage.go @@ -28,7 +28,7 @@ import ( "sort" "strconv" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) ///////////////////////////////////////////////////////////////////////////// diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents.go index 1c7daecf..a61a8c7d 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfcomponents.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfcomponents.go @@ -30,7 +30,7 @@ import ( "strings" "time" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) ///////////////////////////////////////////////////////////////////////////// @@ -1222,7 +1222,10 @@ func (s *EpSystem) discoverRemotePhase1() { } // Discover HPE devices to find GPUs - if strings.ToLower(s.SystemRF.Manufacturer) == "hpe" && nodeChassis.ChassisRF.OEM.Hpe.Links.Devices.Oid != "" { + if strings.ToLower(s.SystemRF.Manufacturer) == "hpe" && + nodeChassis.ChassisRF.OEM != nil && + nodeChassis.ChassisRF.OEM.Hpe != nil && + nodeChassis.ChassisRF.OEM.Hpe.Links.Devices.Oid != "" { path = nodeChassis.ChassisRF.OEM.Hpe.Links.Devices.Oid url = s.epRF.FQDN + path devicesJSON, err := s.epRF.GETRelative(path) diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfendpoints.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfendpoints.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfendpoints.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfendpoints.go index b2eddfd0..48985621 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfendpoints.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfendpoints.go @@ -38,8 +38,8 @@ import ( "time" "unicode" - base "stash.us.cray.com/HMS/hms-base" - "stash.us.cray.com/HMS/hms-certs/pkg/hms_certs" + base "github.com/Cray-HPE/hms-base" + "github.com/Cray-HPE/hms-certs/pkg/hms_certs" ) const PKG_VERSION = "0.2" diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfservices.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfservices.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfservices.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfservices.go index e3579d56..b1b318ea 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/rfservices.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/rfservices.go @@ -25,7 +25,7 @@ package rf import ( //"bytes" "encoding/json" - //base "stash.us.cray.com/HMS/hms-base" + //base "github.com/Cray-HPE/hms-base" //"io/ioutil" //"path" //"strings" diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/util.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/util.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/redfish/util.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/redfish/util.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/service-reservations/interface.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/service-reservations/interface.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/service-reservations/interface.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/service-reservations/interface.go index eb56f00b..ed5a442a 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/service-reservations/interface.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/service-reservations/interface.go @@ -36,7 +36,7 @@ import ( "github.com/hashicorp/go-retryablehttp" "github.com/sirupsen/logrus" - "stash.us.cray.com/HMS/hms-base" + "github.com/Cray-HPE/hms-base" ) const HSM_DEFAULT_RESERVATION_PATH = "/hsm/v2/locks/service/reservations" diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/service-reservations/models.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/service-reservations/models.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/service-reservations/models.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/service-reservations/models.go diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/compethinterfaces.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/compethinterfaces.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/compethinterfaces.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/compethinterfaces.go index d6b3fe45..7ee571fe 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/compethinterfaces.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/compethinterfaces.go @@ -28,7 +28,7 @@ package sm import ( "strings" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) // diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/complocks.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/complocks.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/complocks.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/complocks.go index cadf2286..d56448dd 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/complocks.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/complocks.go @@ -30,7 +30,7 @@ import ( "math" "strings" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) // diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/comps.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/comps.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/comps.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/comps.go index fd5a4418..fd4f7fde 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/comps.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/comps.go @@ -24,7 +24,7 @@ package sm import ( "fmt" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) // The payload for a Components POST diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/endpoints.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/endpoints.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/endpoints.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/endpoints.go index 79f1439d..80a9cc6d 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/endpoints.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/endpoints.go @@ -24,8 +24,8 @@ package sm import ( "encoding/json" - base "stash.us.cray.com/HMS/hms-base" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + base "github.com/Cray-HPE/hms-base" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" ) // This is a generic link to a resource owned by state manager, i.e. a diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/events.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/events.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/events.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/events.go index d230d08f..54ecff1d 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/events.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/events.go @@ -23,7 +23,7 @@ package sm import ( - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) type SMEventType string diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/groups.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/groups.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/groups.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/groups.go index eb5e17b5..e2727d58 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/groups.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/groups.go @@ -26,7 +26,7 @@ package sm import ( "regexp" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" "strings" ) diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinv.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinv.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinv.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinv.go index 57010832..f6cb5a90 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinv.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinv.go @@ -27,8 +27,8 @@ import ( "regexp" "strconv" - base "stash.us.cray.com/HMS/hms-base" - rf "stash.us.cray.com/HMS/hms-smd/pkg/redfish" + base "github.com/Cray-HPE/hms-base" + rf "github.com/Cray-HPE/hms-smd/pkg/redfish" ) var ErrHWLocInvalid = base.NewHMSError("sm", "ID is empty or not a valid xname") diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinvhist.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinvhist.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinvhist.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinvhist.go index 09c956cd..3841d1e6 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/hwinvhist.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/hwinvhist.go @@ -24,7 +24,7 @@ package sm import ( "strings" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) var ErrHWHistEventTypeInvalid = base.NewHMSError("sm", "Invalid hardware inventory history event type") diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/misc.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/misc.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/misc.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/misc.go index ace6bd2a..af28d211 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/misc.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/misc.go @@ -27,7 +27,7 @@ import ( "fmt" "log" "os" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) //////////////////////////////////////////////////////////////////////////// diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/nodemap.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/nodemap.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/nodemap.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/nodemap.go index 583a23c4..125e4fd2 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/nodemap.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/nodemap.go @@ -25,7 +25,7 @@ package sm import ( "encoding/json" "fmt" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) // An entry mapping a node xname to a NID diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/powermap.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/powermap.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/powermap.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/powermap.go index 23149d15..ed11a6d1 100644 --- a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/powermap.go +++ b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/powermap.go @@ -24,7 +24,7 @@ package sm import ( "fmt" - base "stash.us.cray.com/HMS/hms-base" + base "github.com/Cray-HPE/hms-base" ) // An entry mapping an xname to a power supplies diff --git a/vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/subscriptions.go b/vendor/github.com/Cray-HPE/hms-smd/pkg/sm/subscriptions.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-smd/pkg/sm/subscriptions.go rename to vendor/github.com/Cray-HPE/hms-smd/pkg/sm/subscriptions.go diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/LICENSE b/vendor/github.com/Cray-HPE/hms-trs-app-api/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/LICENSE rename to vendor/github.com/Cray-HPE/hms-trs-app-api/LICENSE diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/helpers.go b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/helpers.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/helpers.go rename to vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/helpers.go diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/models.go b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/models.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/models.go rename to vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/models.go diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go rename to vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go index cba5bff3..2d3bee4b 100644 --- a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go +++ b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_interface.go @@ -30,7 +30,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/go-retryablehttp" "github.com/sirupsen/logrus" - tkafka "stash.us.cray.com/HMS/hms-trs-kafkalib/pkg/trs-kafkalib" + tkafka "github.com/Cray-HPE/hms-trs-kafkalib/pkg/trs-kafkalib" "sync" "time" ) diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go similarity index 99% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go rename to vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go index 2b22eecb..824ef3f4 100644 --- a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go +++ b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_local.go @@ -34,7 +34,7 @@ import ( "github.com/sirupsen/logrus" "net/http" "time" - "stash.us.cray.com/HMS/hms-base" + "github.com/Cray-HPE/hms-base" ) const ( diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go similarity index 98% rename from vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go rename to vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go index a6f26b0f..2193a846 100644 --- a/vendor/stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go +++ b/vendor/github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api/trshttp_remote.go @@ -31,8 +31,8 @@ import ( "github.com/google/uuid" "github.com/sirupsen/logrus" "os" - "stash.us.cray.com/HMS/hms-base" - tkafka "stash.us.cray.com/HMS/hms-trs-kafkalib/pkg/trs-kafkalib" + "github.com/Cray-HPE/hms-base" + tkafka "github.com/Cray-HPE/hms-trs-kafkalib/pkg/trs-kafkalib" "strings" "time" ) diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-kafkalib/LICENSE b/vendor/github.com/Cray-HPE/hms-trs-kafkalib/LICENSE similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-trs-kafkalib/LICENSE rename to vendor/github.com/Cray-HPE/hms-trs-kafkalib/LICENSE diff --git a/vendor/stash.us.cray.com/HMS/hms-trs-kafkalib/pkg/trs-kafkalib/library.go b/vendor/github.com/Cray-HPE/hms-trs-kafkalib/pkg/trs-kafkalib/library.go similarity index 100% rename from vendor/stash.us.cray.com/HMS/hms-trs-kafkalib/pkg/trs-kafkalib/library.go rename to vendor/github.com/Cray-HPE/hms-trs-kafkalib/pkg/trs-kafkalib/library.go diff --git a/vendor/github.com/hashicorp/go-retryablehttp/client.go b/vendor/github.com/hashicorp/go-retryablehttp/client.go index 79dc931e..adbdd92e 100644 --- a/vendor/github.com/hashicorp/go-retryablehttp/client.go +++ b/vendor/github.com/hashicorp/go-retryablehttp/client.go @@ -471,7 +471,7 @@ func baseRetryPolicy(resp *http.Response, err error) (bool, error) { // seconds the server states it may be ready to process more requests from this client. func DefaultBackoff(min, max time.Duration, attemptNum int, resp *http.Response) time.Duration { if resp != nil { - if resp.StatusCode == http.StatusTooManyRequests { + if resp.StatusCode == http.StatusTooManyRequests || resp.StatusCode == http.StatusServiceUnavailable { if s, ok := resp.Header["Retry-After"]; ok { if sleep, err := strconv.ParseInt(s[0], 10, 64); err == nil { return time.Second * time.Duration(sleep) diff --git a/vendor/github.com/sirupsen/logrus/.travis.yml b/vendor/github.com/sirupsen/logrus/.travis.yml index 5e20aa41..c1dbd5a3 100644 --- a/vendor/github.com/sirupsen/logrus/.travis.yml +++ b/vendor/github.com/sirupsen/logrus/.travis.yml @@ -4,14 +4,12 @@ git: depth: 1 env: - GO111MODULE=on -go: [1.13.x, 1.14.x] -os: [linux, osx] +go: 1.15.x +os: linux install: - ./travis/install.sh script: - - ./travis/cross_build.sh - - ./travis/lint.sh - - export GOMAXPROCS=4 - - export GORACE=halt_on_error=1 - - go test -race -v ./... - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then go test -race -v -tags appengine ./... ; fi + - cd ci + - go run mage.go -v -w ../ crossBuild + - go run mage.go -v -w ../ lint + - go run mage.go -v -w ../ test diff --git a/vendor/github.com/sirupsen/logrus/CHANGELOG.md b/vendor/github.com/sirupsen/logrus/CHANGELOG.md index 584026d6..7567f612 100644 --- a/vendor/github.com/sirupsen/logrus/CHANGELOG.md +++ b/vendor/github.com/sirupsen/logrus/CHANGELOG.md @@ -1,3 +1,39 @@ +# 1.8.1 +Code quality: + * move magefile in its own subdir/submodule to remove magefile dependency on logrus consumer + * improve timestamp format documentation + +Fixes: + * fix race condition on logger hooks + + +# 1.8.0 + +Correct versioning number replacing v1.7.1. + +# 1.7.1 + +Beware this release has introduced a new public API and its semver is therefore incorrect. + +Code quality: + * use go 1.15 in travis + * use magefile as task runner + +Fixes: + * small fixes about new go 1.13 error formatting system + * Fix for long time race condiction with mutating data hooks + +Features: + * build support for zos + +# 1.7.0 +Fixes: + * the dependency toward a windows terminal library has been removed + +Features: + * a new buffer pool management API has been added + * a set of `Fn()` functions have been added + # 1.6.0 Fixes: * end of line cleanup diff --git a/vendor/github.com/sirupsen/logrus/README.md b/vendor/github.com/sirupsen/logrus/README.md index 5796706d..5152b6aa 100644 --- a/vendor/github.com/sirupsen/logrus/README.md +++ b/vendor/github.com/sirupsen/logrus/README.md @@ -402,7 +402,7 @@ func (f *MyJSONFormatter) Format(entry *Entry) ([]byte, error) { // source of the official loggers. serialized, err := json.Marshal(entry.Data) if err != nil { - return nil, fmt.Errorf("Failed to marshal fields to JSON, %v", err) + return nil, fmt.Errorf("Failed to marshal fields to JSON, %w", err) } return append(serialized, '\n'), nil } diff --git a/vendor/github.com/sirupsen/logrus/entry.go b/vendor/github.com/sirupsen/logrus/entry.go index 5a5cbfe7..07a1e5fa 100644 --- a/vendor/github.com/sirupsen/logrus/entry.go +++ b/vendor/github.com/sirupsen/logrus/entry.go @@ -78,6 +78,14 @@ func NewEntry(logger *Logger) *Entry { } } +func (entry *Entry) Dup() *Entry { + data := make(Fields, len(entry.Data)) + for k, v := range entry.Data { + data[k] = v + } + return &Entry{Logger: entry.Logger, Data: data, Time: entry.Time, Context: entry.Context, err: entry.err} +} + // Returns the bytes representation of this entry from the formatter. func (entry *Entry) Bytes() ([]byte, error) { return entry.Logger.Formatter.Format(entry) @@ -123,11 +131,9 @@ func (entry *Entry) WithFields(fields Fields) *Entry { for k, v := range fields { isErrField := false if t := reflect.TypeOf(v); t != nil { - switch t.Kind() { - case reflect.Func: + switch { + case t.Kind() == reflect.Func, t.Kind() == reflect.Ptr && t.Elem().Kind() == reflect.Func: isErrField = true - case reflect.Ptr: - isErrField = t.Elem().Kind() == reflect.Func } } if isErrField { @@ -212,68 +218,72 @@ func (entry Entry) HasCaller() (has bool) { entry.Caller != nil } -// This function is not declared with a pointer value because otherwise -// race conditions will occur when using multiple goroutines -func (entry Entry) log(level Level, msg string) { +func (entry *Entry) log(level Level, msg string) { var buffer *bytes.Buffer - // Default to now, but allow users to override if they want. - // - // We don't have to worry about polluting future calls to Entry#log() - // with this assignment because this function is declared with a - // non-pointer receiver. - if entry.Time.IsZero() { - entry.Time = time.Now() + newEntry := entry.Dup() + + if newEntry.Time.IsZero() { + newEntry.Time = time.Now() } - entry.Level = level - entry.Message = msg - entry.Logger.mu.Lock() - if entry.Logger.ReportCaller { - entry.Caller = getCaller() + newEntry.Level = level + newEntry.Message = msg + + newEntry.Logger.mu.Lock() + reportCaller := newEntry.Logger.ReportCaller + newEntry.Logger.mu.Unlock() + + if reportCaller { + newEntry.Caller = getCaller() } - entry.Logger.mu.Unlock() - entry.fireHooks() + newEntry.fireHooks() buffer = getBuffer() defer func() { - entry.Buffer = nil + newEntry.Buffer = nil putBuffer(buffer) }() buffer.Reset() - entry.Buffer = buffer + newEntry.Buffer = buffer - entry.write() + newEntry.write() - entry.Buffer = nil + newEntry.Buffer = nil // To avoid Entry#log() returning a value that only would make sense for // panic() to use in Entry#Panic(), we avoid the allocation by checking // directly here. if level <= PanicLevel { - panic(&entry) + panic(newEntry) } } func (entry *Entry) fireHooks() { + var tmpHooks LevelHooks entry.Logger.mu.Lock() - defer entry.Logger.mu.Unlock() - err := entry.Logger.Hooks.Fire(entry.Level, entry) + tmpHooks = make(LevelHooks, len(entry.Logger.Hooks)) + for k, v := range entry.Logger.Hooks { + tmpHooks[k] = v + } + entry.Logger.mu.Unlock() + + err := tmpHooks.Fire(entry.Level, entry) if err != nil { fmt.Fprintf(os.Stderr, "Failed to fire hook: %v\n", err) } } func (entry *Entry) write() { - entry.Logger.mu.Lock() - defer entry.Logger.mu.Unlock() serialized, err := entry.Logger.Formatter.Format(entry) if err != nil { fmt.Fprintf(os.Stderr, "Failed to obtain reader, %v\n", err) return } - if _, err = entry.Logger.Out.Write(serialized); err != nil { + entry.Logger.mu.Lock() + defer entry.Logger.mu.Unlock() + if _, err := entry.Logger.Out.Write(serialized); err != nil { fmt.Fprintf(os.Stderr, "Failed to write to log, %v\n", err) } } @@ -319,7 +329,6 @@ func (entry *Entry) Fatal(args ...interface{}) { func (entry *Entry) Panic(args ...interface{}) { entry.Log(PanicLevel, args...) - panic(fmt.Sprint(args...)) } // Entry Printf family functions diff --git a/vendor/github.com/sirupsen/logrus/go.sum b/vendor/github.com/sirupsen/logrus/go.sum index 1edc143b..694c18b8 100644 --- a/vendor/github.com/sirupsen/logrus/go.sum +++ b/vendor/github.com/sirupsen/logrus/go.sum @@ -4,7 +4,5 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894 h1:Cz4ceDQGXuKRnVBDTS23GTn/pU5OE2C0WrNTOYK1Uuc= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193GlqGZbnPFnPV/5Rsb4= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= diff --git a/vendor/github.com/sirupsen/logrus/json_formatter.go b/vendor/github.com/sirupsen/logrus/json_formatter.go index ba7f2371..c96dc563 100644 --- a/vendor/github.com/sirupsen/logrus/json_formatter.go +++ b/vendor/github.com/sirupsen/logrus/json_formatter.go @@ -23,6 +23,9 @@ func (f FieldMap) resolve(key fieldKey) string { // JSONFormatter formats logs into parsable json type JSONFormatter struct { // TimestampFormat sets the format used for marshaling timestamps. + // The format to use is the same than for time.Format or time.Parse from the standard + // library. + // The standard Library already provides a set of predefined format. TimestampFormat string // DisableTimestamp allows disabling automatic timestamps in output @@ -118,7 +121,7 @@ func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) { encoder.SetIndent("", " ") } if err := encoder.Encode(data); err != nil { - return nil, fmt.Errorf("failed to marshal fields to JSON, %v", err) + return nil, fmt.Errorf("failed to marshal fields to JSON, %w", err) } return b.Bytes(), nil diff --git a/vendor/github.com/sirupsen/logrus/logger.go b/vendor/github.com/sirupsen/logrus/logger.go index dbf627c9..33770445 100644 --- a/vendor/github.com/sirupsen/logrus/logger.go +++ b/vendor/github.com/sirupsen/logrus/logger.go @@ -12,7 +12,7 @@ import ( // LogFunction For big messages, it can be more efficient to pass a function // and only call it if the log level is actually enables rather than // generating the log message and then checking if the level is enabled -type LogFunction func()[]interface{} +type LogFunction func() []interface{} type Logger struct { // The logs are `io.Copy`'d to this in a mutex. It's common to set this to a diff --git a/vendor/github.com/sirupsen/logrus/terminal_check_unix.go b/vendor/github.com/sirupsen/logrus/terminal_check_unix.go index cc4fe6e3..04748b85 100644 --- a/vendor/github.com/sirupsen/logrus/terminal_check_unix.go +++ b/vendor/github.com/sirupsen/logrus/terminal_check_unix.go @@ -1,4 +1,4 @@ -// +build linux aix +// +build linux aix zos // +build !js package logrus diff --git a/vendor/github.com/sirupsen/logrus/text_formatter.go b/vendor/github.com/sirupsen/logrus/text_formatter.go index 3c28b54c..be2c6efe 100644 --- a/vendor/github.com/sirupsen/logrus/text_formatter.go +++ b/vendor/github.com/sirupsen/logrus/text_formatter.go @@ -53,7 +53,10 @@ type TextFormatter struct { // the time passed since beginning of execution. FullTimestamp bool - // TimestampFormat to use for display when a full timestamp is printed + // TimestampFormat to use for display when a full timestamp is printed. + // The format to use is the same than for time.Format or time.Parse from the standard + // library. + // The standard Library already provides a set of predefined format. TimestampFormat string // The fields are sorted by default for a consistent output. For applications @@ -235,6 +238,8 @@ func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, keys []strin levelColor = yellow case ErrorLevel, FatalLevel, PanicLevel: levelColor = red + case InfoLevel: + levelColor = blue default: levelColor = blue } diff --git a/vendor/modules.txt b/vendor/modules.txt index 011605c2..7770bdce 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,4 +1,30 @@ +# github.com/Cray-HPE/hms-base v1.15.0 +## explicit +github.com/Cray-HPE/hms-base +# github.com/Cray-HPE/hms-certs v1.3.2 +## explicit +github.com/Cray-HPE/hms-certs/pkg/hms_certs +# github.com/Cray-HPE/hms-compcredentials v1.11.2 +## explicit +github.com/Cray-HPE/hms-compcredentials +# github.com/Cray-HPE/hms-hmetcd v1.10.2 +## explicit +github.com/Cray-HPE/hms-hmetcd +# github.com/Cray-HPE/hms-securestorage v1.12.2 +## explicit +github.com/Cray-HPE/hms-securestorage +# github.com/Cray-HPE/hms-smd v1.29.10 +## explicit +github.com/Cray-HPE/hms-smd/pkg/redfish +github.com/Cray-HPE/hms-smd/pkg/service-reservations +github.com/Cray-HPE/hms-smd/pkg/sm +# github.com/Cray-HPE/hms-trs-app-api v1.6.2 +## explicit +github.com/Cray-HPE/hms-trs-app-api/pkg/trs_http_api +# github.com/Cray-HPE/hms-trs-kafkalib v1.5.2 +github.com/Cray-HPE/hms-trs-kafkalib/pkg/trs-kafkalib # github.com/Masterminds/semver v1.5.0 +## explicit github.com/Masterminds/semver # github.com/Shopify/sarama v1.24.1 github.com/Shopify/sarama @@ -32,8 +58,10 @@ github.com/golang/protobuf/ptypes/timestamp # github.com/golang/snappy v0.0.1 github.com/golang/snappy # github.com/google/uuid v1.2.0 +## explicit github.com/google/uuid # github.com/gorilla/mux v1.8.0 +## explicit github.com/gorilla/mux # github.com/hashicorp/errwrap v1.0.0 github.com/hashicorp/errwrap @@ -41,7 +69,8 @@ github.com/hashicorp/errwrap github.com/hashicorp/go-cleanhttp # github.com/hashicorp/go-multierror v1.1.0 github.com/hashicorp/go-multierror -# github.com/hashicorp/go-retryablehttp v0.6.8 +# github.com/hashicorp/go-retryablehttp v0.7.0 +## explicit github.com/hashicorp/go-retryablehttp # github.com/hashicorp/go-rootcerts v1.0.1 github.com/hashicorp/go-rootcerts @@ -78,12 +107,14 @@ github.com/klauspost/compress/snappy github.com/klauspost/compress/zstd github.com/klauspost/compress/zstd/internal/xxhash # github.com/looplab/fsm v0.2.0 +## explicit github.com/looplab/fsm # github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/go-homedir # github.com/mitchellh/mapstructure v1.3.0 github.com/mitchellh/mapstructure # github.com/namsral/flag v1.7.4-pre +## explicit github.com/namsral/flag # github.com/pierrec/lz4 v2.4.1+incompatible github.com/pierrec/lz4 @@ -94,13 +125,16 @@ github.com/pmezard/go-difflib/difflib github.com/rcrowley/go-metrics # github.com/ryanuber/go-glob v1.0.0 github.com/ryanuber/go-glob -# github.com/sirupsen/logrus v1.7.0 +# github.com/sirupsen/logrus v1.8.1 +## explicit github.com/sirupsen/logrus # github.com/stretchr/testify v1.7.0 +## explicit github.com/stretchr/testify/assert github.com/stretchr/testify/require github.com/stretchr/testify/suite # go.etcd.io/etcd v3.3.25+incompatible +## explicit go.etcd.io/etcd/clientv3/concurrency # golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 golang.org/x/crypto/ed25519 @@ -246,21 +280,3 @@ gopkg.in/square/go-jose.v2/json gopkg.in/square/go-jose.v2/jwt # gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c gopkg.in/yaml.v3 -# stash.us.cray.com/HMS/hms-base v1.13.0 -stash.us.cray.com/HMS/hms-base -# stash.us.cray.com/HMS/hms-certs v1.3.0 -stash.us.cray.com/HMS/hms-certs/pkg/hms_certs -# stash.us.cray.com/HMS/hms-compcredentials v1.11.0 -stash.us.cray.com/HMS/hms-compcredentials -# stash.us.cray.com/HMS/hms-hmetcd v1.10.0 -stash.us.cray.com/HMS/hms-hmetcd -# stash.us.cray.com/HMS/hms-securestorage v1.12.0 -stash.us.cray.com/HMS/hms-securestorage -# stash.us.cray.com/HMS/hms-smd v1.29.5 -stash.us.cray.com/HMS/hms-smd/pkg/redfish -stash.us.cray.com/HMS/hms-smd/pkg/service-reservations -stash.us.cray.com/HMS/hms-smd/pkg/sm -# stash.us.cray.com/HMS/hms-trs-app-api v1.6.0 -stash.us.cray.com/HMS/hms-trs-app-api/pkg/trs_http_api -# stash.us.cray.com/HMS/hms-trs-kafkalib v1.4.0 -stash.us.cray.com/HMS/hms-trs-kafkalib/pkg/trs-kafkalib diff --git a/vendor/stash.us.cray.com/HMS/hms-base/.version b/vendor/stash.us.cray.com/HMS/hms-base/.version deleted file mode 100644 index feaae22b..00000000 --- a/vendor/stash.us.cray.com/HMS/hms-base/.version +++ /dev/null @@ -1 +0,0 @@ -1.13.0 diff --git a/vendor/stash.us.cray.com/HMS/hms-base/Jenkinsfile b/vendor/stash.us.cray.com/HMS/hms-base/Jenkinsfile deleted file mode 100644 index 94bf640c..00000000 --- a/vendor/stash.us.cray.com/HMS/hms-base/Jenkinsfile +++ /dev/null @@ -1,13 +0,0 @@ -@Library('dst-shared@master') _ - -dockerBuildPipeline { - githubPushRepo = "Cray-HPE/hms-base" - repository = "cray" - imagePrefix = "hms" - app = "base" - name = "hms-base" - description = "Cray HMS base code." - dockerfile = "Dockerfile" - slackNotification = ["", "", false, false, true, true] - product = "internal" -} diff --git a/vendor/stash.us.cray.com/HMS/hms-compcredentials/.version b/vendor/stash.us.cray.com/HMS/hms-compcredentials/.version deleted file mode 100644 index 1cac385c..00000000 --- a/vendor/stash.us.cray.com/HMS/hms-compcredentials/.version +++ /dev/null @@ -1 +0,0 @@ -1.11.0 diff --git a/vendor/stash.us.cray.com/HMS/hms-hmetcd/.version b/vendor/stash.us.cray.com/HMS/hms-hmetcd/.version deleted file mode 100644 index 81c871de..00000000 --- a/vendor/stash.us.cray.com/HMS/hms-hmetcd/.version +++ /dev/null @@ -1 +0,0 @@ -1.10.0 diff --git a/vendor/stash.us.cray.com/HMS/hms-securestorage/.version b/vendor/stash.us.cray.com/HMS/hms-securestorage/.version deleted file mode 100644 index 0eed1a29..00000000 --- a/vendor/stash.us.cray.com/HMS/hms-securestorage/.version +++ /dev/null @@ -1 +0,0 @@ -1.12.0