0

我想用 helm 在 Kubernetes 上安装 feast - 我按照https://docs.feast.dev/v/master/getting-started/install-feast/kubernetes-with-helm上的步骤操作

命令后

helm install --debug feast feast-charts/feast
Error: scheme "gs" not supported
helm.go:81: [debug] scheme "gs" not supported
helm.sh/helm/v3/pkg/getter.Providers.ByScheme
    /private/tmp/helm-20210204-99981-1f8vc0y/pkg/getter/getter.go:156
helm.sh/helm/v3/pkg/downloader.(*ChartDownloader).DownloadTo
    /private/tmp/helm-20210204-99981-1f8vc0y/pkg/downloader/chart_downloader.go:94
helm.sh/helm/v3/pkg/action.(*ChartPathOptions).LocateChart
    /private/tmp/helm-20210204-99981-1f8vc0y/pkg/action/install.go:675
main.runInstall
    /private/tmp/helm-20210204-99981-1f8vc0y/cmd/helm/install.go:185
main.newInstallCmd.func2
    /private/tmp/helm-20210204-99981-1f8vc0y/cmd/helm/install.go:120
github.com/spf13/cobra.(*Command).execute
    /Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/cobra@v1.1.1/command.go:850
github.com/spf13/cobra.(*Command).ExecuteC
    /Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/cobra@v1.1.1/command.go:958
github.com/spf13/cobra.(*Command).Execute
    /Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/cobra@v1.1.1/command.go:895
main.main
    /private/tmp/helm-20210204-99981-1f8vc0y/cmd/helm/helm.go:80
runtime.main
    /usr/local/Cellar/go/1.15.7_1/libexec/src/runtime/proc.go:204
runtime.goexit
    /usr/local/Cellar/go/1.15.7_1/libexec/src/runtime/asm_amd64.s:1374

掌舵版本 3.5.2

我该如何解决这个问题?

4

2 回答 2

1

似乎您需要安装 gs helm 插件才能从谷歌云存储下载依赖项

helm 插件安装https://github.com/ausov/helm-gs.git

于 2021-03-11T07:09:51.730 回答
0

您在上面遇到的问题与此问题有关:https ://github.com/feast-dev/feast-helm-charts/issues/2

此后已解决。您现在可以使用上述命令安装 Feast,而无需使用helm-gs。您只需要 Helm

于 2021-03-16T20:58:40.157 回答