This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement packages installation APIs for cluster essential
Signed-off-by: Vandana Pathak <[email protected]>
- Loading branch information
Vandana Pathak
committed
May 4, 2023
1 parent
f138b90
commit 734920f
Showing
13 changed files
with
2,297 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
module github.com/vmware-tanzu/tanzu-framework/cluster-essentials | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/cppforlife/go-cli-ui v0.0.0-20200716203538-1e47f820817f | ||
github.com/k14s/kbld v0.32.0 | ||
github.com/otiai10/copy v1.0.2 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/vmware-tanzu/carvel-imgpkg v0.23.1 | ||
github.com/vmware-tanzu/carvel-ytt v0.40.0 | ||
k8s.io/api v0.26.1 | ||
k8s.io/apimachinery v0.26.1 | ||
k8s.io/client-go v0.26.1 | ||
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 | ||
sigs.k8s.io/controller-runtime v0.14.6 | ||
) | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v43.0.0+incompatible // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.12 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.5 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.0 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/BurntSushi/toml v1.0.0 // indirect | ||
github.com/aws/aws-sdk-go v1.35.24 // indirect | ||
github.com/cheggaaa/pb v1.0.29 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.10.0 // indirect | ||
github.com/cppforlife/cobrautil v0.0.0-20200514214827-bb86e6965d72 // indirect | ||
github.com/cppforlife/color v1.9.1-0.20200716202919-6706ac40b835 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/cli v20.10.10+incompatible // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v20.10.10+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.6.4 // 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 | ||
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gnostic v0.5.7-v3refs // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/go-containerregistry v0.7.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/hashicorp/go-version v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/k14s/semver/v4 v4.0.1-0.20210701191048-266d47ac6115 // indirect | ||
github.com/k14s/starlark-go v0.0.0-20200720175618-3a5c849cc368 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-runewidth v0.0.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2-0.20210730191737-8e42a01fb1b7 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/spf13/cobra v1.6.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/vbatts/tar-split v0.11.2 // indirect | ||
github.com/vdemeester/k8s-pkg-credentialprovider v1.21.0-1 // indirect | ||
github.com/vito/go-interact v0.0.0-20171111012221-fa338ed9e9ec // indirect | ||
github.com/vmware-tanzu/carvel-vendir v0.24.0 // indirect | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/term v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/cloud-provider v0.21.0 // indirect | ||
k8s.io/component-base v0.26.1 // indirect | ||
k8s.io/klog/v2 v2.80.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect | ||
k8s.io/legacy-cloud-providers v0.21.0 // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) |
Oops, something went wrong.