Skip to content

Commit

Permalink
versions: Update and tidy go modules
Browse files Browse the repository at this point in the history
- Run
`go get github.com/kata-containers/kata-containers/src/[email protected]`
then `go mod tidy`
on the cloud-api-adaptor, peerpod-ctrl and volumes/csi-wrapper go
modules to update them to use the release version of Kata CC
- Also get peerpod-ctrl to self-reference the parent
folder to avoid api inconsistencies

Fixes: #1058
Signed-off-by: stevenhorsman <[email protected]>
  • Loading branch information
stevenhorsman committed Jun 8, 2023
1 parent 64ac753 commit 6a999e8
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 107 deletions.
15 changes: 4 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require (
github.com/aws/aws-sdk-go-v2/config v1.15.11
github.com/aws/aws-sdk-go-v2/credentials v1.12.6
github.com/aws/aws-sdk-go-v2/service/ec2 v1.31.0
github.com/containerd/containerd v1.6.6
github.com/containerd/containerd v1.6.8
github.com/containerd/ttrpc v1.1.0
github.com/containernetworking/plugins v1.1.1
github.com/containers/podman/v4 v4.2.0
Expand All @@ -25,7 +25,7 @@ require (
github.com/google/uuid v1.3.0
github.com/opencontainers/runtime-spec v1.0.3-0.20211214071223-8958f93039ab
github.com/stretchr/testify v1.8.1
github.com/vishvananda/netlink v1.1.1-0.20220115184804-dd687eb2f2d4
github.com/vishvananda/netlink v1.2.1-beta.2
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f
github.com/vmware/govmomi v0.29.0
golang.org/x/sys v0.5.0
Expand All @@ -37,20 +37,18 @@ require (
)

require (
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v4 v4.2.1
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v2 v2.4.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v2 v2.2.1
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.1.1
github.com/Azure/go-autorest/autorest v0.11.27
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11
github.com/Azure/go-autorest/autorest/to v0.4.0
github.com/BurntSushi/toml v1.2.0
github.com/IBM/ibm-cos-sdk-go v1.9.4
github.com/avast/retry-go/v4 v4.3.3
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.6
github.com/confidential-containers/cloud-api-adaptor/peerpod-ctrl v0.0.0-20230329054732-0d6eda047e81
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f
github.com/kata-containers/kata-containers/src/runtime v0.0.0-20220913141151-9b49a6ddc6fd
github.com/kata-containers/kata-containers/src/runtime v0.0.0-20230606170044-338e18e4fd46
github.com/sirupsen/logrus v1.9.0
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
k8s.io/api v0.26.0
Expand All @@ -64,12 +62,9 @@ require (

require (
github.com/Azure/azure-sdk-for-go/sdk/internal v1.2.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v2 v2.4.0 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v0.9.0 // indirect
Expand All @@ -82,7 +77,6 @@ require (
github.com/aws/aws-sdk-go-v2/service/sts v1.16.7 // indirect
github.com/aws/smithy-go v1.11.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
Expand Down Expand Up @@ -117,7 +111,6 @@ require (
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/moby/spdystream v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
Expand Down
Loading

0 comments on commit 6a999e8

Please sign in to comment.