我正在尝试将超集部署到我的 k3d 集群中,首先我创建我的 k3d 集群,
然后我使用 helm 安装超集,如下所示:
helm repo add superset https://apache.github.io/superset
helm search repo superset
在values.yaml中配置一些值(例如连接),我使用默认的postgre并注释掉postgre db_host
安装:helm升级--install--debug--valuesvalues.yaml超集superset/superset
但它失败了,没有给我太多工作线索:
helm upgrade --install --debug --values values.yaml superset superset/superset
history.go:56: [debug] getting history for release superset
Release "superset" does not exist. Installing it now.
install.go:200: [debug] Original chart version: ""
install.go:217: [debug] CHART PATH: /home/silvina/.cache/helm/repository/superset-0.10.8.tgz
client.go:134: [debug] creating 16 resource(s)
client.go:478: [debug] Starting delete for "superset-init-db" Job
client.go:134: [debug] creating 1 resource(s)
client.go:706: [debug] Watching for changes to Job superset-init-db with timeout of 5m0s
client.go:734: [debug] Add/Modify event for superset-init-db: ADDED
client.go:773: [debug] superset-init-db: Jobs active: 0, jobs failed: 0, jobs succeeded: 0
client.go:734: [debug] Add/Modify event for superset-init-db: MODIFIED
client.go:773: [debug] superset-init-db: Jobs active: 1, jobs failed: 0, jobs succeeded: 0
Error: failed post-install: 1 error occurred:
* timed out waiting for the condition
helm.go:84: [debug] failed post-install: 1 error occurred:
* timed out waiting for the condition
我是否设置错误的值?还是我错过了一些配置?
谢谢。
Apache Superset 的 helm 图表
0.10.8
将 Superset 版本从 2.1.0
更改为 3.0
,尽管正确的版本应该是 3.0.0
。这可能是部署期间出现问题的原因。使用 Superset helm 图表 0.10.7
或等待 修复被合并。