我正在关注这个 youtube教程,教师运行此命令。

helm install --name istio incubator/istio --namespace istio-system --devel
helm upgrade istio incubator/istio --reuse-values --set istio.install=true --devel

--devel标志有什么作用?我似乎无法找到它的参考?

省略--devel标志会出现此错误

Error: failed to download "incubator/istio" (hint: running `helm repo update` may help)
分析解答
helm install --help | grep devel

  --devel                    use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.

HELM UPGRADE手册:

此命令将版本升级到指定版本的图表   and/or更新图表值。

必需参数是release和chart。图表参数可以是   以下之一: - 图表参考('stable/mariadb');使用'-version'和   '-devel'标志用于最新版本以外的版本 - 图表的路径   目录, - 打包的图表, - 完全合格的URL。