Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/63.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用helm 3.0安装mysql ha_Mysql_Kubernetes_Kubernetes Helm - Fatal编程技术网

如何使用helm 3.0安装mysql ha

如何使用helm 3.0安装mysql ha,mysql,kubernetes,kubernetes-helm,Mysql,Kubernetes,Kubernetes Helm,我正在安装MySQL HA,下面是: 但结果是这样的: [dolphin@MeowK8SMaster1 linux-amd64]$ ./helm repo update Hang tight while we grab the latest from your chart repositories... ...Successfully got an update from the "traefik" chart repository ...Successfully got a

我正在安装MySQL HA,下面是:

但结果是这样的:

[dolphin@MeowK8SMaster1 linux-amd64]$ ./helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "traefik" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈ Happy Helming!⎈
[dolphin@MeowK8SMaster1 linux-amd64]$ ./helm install report incubator/mysqlha -n middleware
Error: failed to download "incubator/mysqlha" (hint: running `helm repo update` may help)
[dolphin@MeowK8SMaster1 linux-amd64]$
安装mysql HA应该怎么做?

添加孵化器回购:

 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com

您必须首先安装mysqlh图表所在的存储库

helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
然后运行
helm repo update。
之后,安装应该会成功

如果不确定在哪里可以找到helm chart repos,请从启用
孵化器
存储库中检查helm Hub:

helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
然后运行
helm repo update
,然后运行
install

helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com
./helm install report incubator/mysqlha -n middleware