Get latest version in Chart.yaml

3/25/2019

I got the following Chart.yaml file for kubernetes:

apiVersion: v1
description: Chart for installing myapp
name: myapp
version: 1.5.0
namespace: my-app

How do I get the latest version without updating manually every new version?

-- Baptiste Merliot
kubernetes
kubernetes-helm

1 Answer

3/26/2019

helm install myapp will always install latest available version of your chart from your chart repository.

From documentation

--version string specify the exact chart version to install. If this is not specified, the latest version is installed

-- edbighead
Source: StackOverflow