mirror of
https://github.com/helm/helm.git
synced 2026-04-29 02:01:10 -04:00
Upgrade Kubernetes libraries to v0.18.0 Add new lazy load KubernetesClientSet to avoid missing kubeconfig error In kubernetes v1.18 kubeconfig validation was added. Minikube and Kind both remove kubeconfig when stopping clusters. This causes and error when running any helm commands because we initialize the client before executing the command. Signed-off-by: Adam Reese <adam@reese.io>
45 lines
1.5 KiB
Modula-2
45 lines
1.5 KiB
Modula-2
module helm.sh/helm/v3
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/Masterminds/semver/v3 v3.0.3
|
|
github.com/Masterminds/sprig/v3 v3.0.2
|
|
github.com/Masterminds/vcs v1.13.1
|
|
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496
|
|
github.com/containerd/containerd v1.3.2
|
|
github.com/cyphar/filepath-securejoin v0.2.2
|
|
github.com/deislabs/oras v0.8.1
|
|
github.com/docker/distribution v2.7.1+incompatible
|
|
github.com/docker/docker v1.4.2-0.20200203170920-46ec8731fbce
|
|
github.com/docker/go-units v0.4.0
|
|
github.com/evanphx/json-patch v4.5.0+incompatible
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/gofrs/flock v0.7.1
|
|
github.com/gosuri/uitable v0.0.4
|
|
github.com/mattn/go-shellwords v1.0.10
|
|
github.com/mitchellh/copystructure v1.0.0
|
|
github.com/opencontainers/go-digest v1.0.0-rc1
|
|
github.com/opencontainers/image-spec v1.0.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sirupsen/logrus v1.4.2
|
|
github.com/spf13/cobra v0.0.5
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/xeipuuv/gojsonschema v1.1.0
|
|
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975
|
|
k8s.io/api v0.18.0
|
|
k8s.io/apiextensions-apiserver v0.18.0
|
|
k8s.io/apimachinery v0.18.0
|
|
k8s.io/cli-runtime v0.18.0
|
|
k8s.io/client-go v0.18.0
|
|
k8s.io/klog v1.0.0
|
|
k8s.io/kubectl v0.18.0
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
replace (
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible
|
|
github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
|
|
)
|