helm-version-js
v1.0.0
Published
Similar to npm version but for helm-charts, making it possible to bump <major|minor|patch> in the helm-chart Chart.yaml
Readme
helm-version-js
Similar to npm version but for helm-charts, making it possible to bump versions of a helm-chart.
Installation
npm install helm-version-jsCLI
To use from CLI, install helm-version-js globally:
npm install -g helm-version-jsUsage
helm-version <chart> [<newVersion> | major | minor | patch]Examples:
helm-version path/to/helm-chart patch
helm-version path/to/helm-chart 3.32.1API
const { helmVersion } = require('helm-version);
helmVersion('path/to/helm-chart', 'patch');
helmVersion('path/to/helm-chart', '3.32.1');