mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
modify e2e setup to wait oam-runtime pod running add k8sclient in e2e test refine tracking status of vela init Signed-off-by: roy wang <seiwy2010@gmail.com>
59 lines
2.2 KiB
Modula-2
59 lines
2.2 KiB
Modula-2
module github.com/oam-dev/kubevela
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
cuelang.org/go v0.2.2
|
|
github.com/AlecAivazis/survey/v2 v2.1.1
|
|
github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8
|
|
github.com/briandowns/spinner v1.11.1
|
|
github.com/coreos/prometheus-operator v0.41.1
|
|
github.com/crossplane/crossplane-runtime v0.9.0
|
|
github.com/crossplane/oam-kubernetes-runtime v0.2.1
|
|
github.com/fatih/color v1.9.0
|
|
github.com/gertd/go-pluralize v0.1.7
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/gin-contrib/static v0.0.0-20200815103939-31fb0c56a3d1
|
|
github.com/gin-gonic/gin v1.6.3
|
|
github.com/go-logr/logr v0.1.0
|
|
github.com/google/go-cmp v0.5.2
|
|
github.com/google/go-github/v32 v32.1.0
|
|
github.com/gosuri/uitable v0.0.4
|
|
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174
|
|
github.com/jetstack/cert-manager v0.14.3
|
|
github.com/kyokomi/emoji v2.2.4+incompatible
|
|
github.com/mholt/archiver/v3 v3.3.0
|
|
github.com/oam-dev/trait-injector v0.0.0-20200331033130-0a27b176ffc4
|
|
github.com/onsi/ginkgo v1.13.0
|
|
github.com/onsi/gomega v1.10.1
|
|
github.com/openservicemesh/osm v0.3.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b
|
|
github.com/spf13/cobra v1.0.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/wercker/stern v0.0.0-20190705090245-4fa46dd6987f
|
|
go.uber.org/zap v1.13.0
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
gotest.tools v2.2.0+incompatible
|
|
helm.sh/helm/v3 v3.2.4
|
|
k8s.io/api v0.18.6
|
|
k8s.io/apiextensions-apiserver v0.18.2
|
|
k8s.io/apimachinery v0.18.6
|
|
k8s.io/cli-runtime v0.18.6
|
|
k8s.io/client-go v12.0.0+incompatible
|
|
k8s.io/klog v1.0.0
|
|
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29 // indirect
|
|
k8s.io/kubectl v0.18.6 // indirect
|
|
k8s.io/utils v0.0.0-20200414100711-2df71ebbae66
|
|
sigs.k8s.io/controller-runtime v0.6.0
|
|
)
|
|
|
|
replace (
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible // https://github.com/kubernetes/client-go/issues/628
|
|
github.com/wercker/stern => github.com/oam-dev/stern v1.13.0-alpha
|
|
// clint-go had a buggy release, https://github.com/kubernetes/client-go/issues/749
|
|
k8s.io/client-go => k8s.io/client-go v0.18.6
|
|
)
|