对于舵图,有哪些版本可用?

时间:2018-06-25 20:22:47

标签: kubernetes kubernetes-helm

我可以通过执行以下操作来指定图表的特定版本:helm install --version <some_version> stable/<some_chart>

但是,我怎么知道哪些版本可用?

4 个答案:

答案 0 :(得分:22)

您可以通过运行以下命令列出图表的可用版本:

helm search -l stable/<some_chart>

-l—-versions标志用于显示所有图表,而不仅仅是每个图表的最新版本。

参考:https://docs.helm.sh/helm/#helm-search

答案 1 :(得分:6)

如果您还想搜索头盔3中的alpha,beta,发行候选版本,则可以添加选项--devel

helm search repo <chart keyword> -l --devel 

它还将列出版本为1.0.0-rc1的图表

答案 2 :(得分:4)

如果您正在寻找头盔v3解决方案,就是这样。

helm search repo -l stable/<some-chart>

答案 3 :(得分:0)

您可以使用helm show chart <chart>检查当前图表的版本,例如:

$ helm show chart bitnami/postgresql
annotations:
  category: Database
apiVersion: v2
appVersion: 11.10.0
dependencies:
- name: common
  repository: https://charts.bitnami.com/bitnami
  version: 1.x.x
description: Chart for PostgreSQL, an object-relational database management system
  (ORDBMS) with an emphasis on extensibility and on standards-compliance.
home: https://github.com/bitnami/charts/tree/master/bitnami/postgresql
icon: https://bitnami.com/assets/stacks/postgresql/img/postgresql-stack-110x117.png
keywords:
- postgresql
- postgres
- database
- sql
- replication
- cluster
maintainers:
- email: containers@bitnami.com
  name: Bitnami
- email: cedric@desaintmartin.fr
  name: desaintmartin
name: postgresql
sources:
- https://github.com/bitnami/bitnami-docker-postgresql
- https://www.postgresql.org/
version: 10.1.0