From 62e7c1699a982a04f353d0d83f71c6024a1086a8 Mon Sep 17 00:00:00 2001 From: noahtalerman <47070608+noahtalerman@users.noreply.github.com> Date: Fri, 18 Jun 2021 16:40:51 -0400 Subject: [PATCH] Add v to versioning for NPM package and Helm chart (#1145) --- charts/fleet/Chart.yaml | 4 ++-- charts/fleet/values.yaml | 2 +- tools/fleetctl-npm/package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index b5fc6ed33ebf..cf60f1fd9b31 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,8 +4,8 @@ name: fleet keywords: - fleet - osquery -version: 4.0.0-rc2 +version: v4.0.0-rc2 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: 4.0.0-rc2 +appVersion: v4.0.0-rc2 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 861723194c46..8ea162f69605 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -2,7 +2,7 @@ # All settings related to how Fleet is deployed in Kubernetes hostName: fleet.localhost replicas: 3 # The number of Fleet instances to deploy -imageTag: 4.0.0-rc2 # Version of Fleet to deploy +imageTag: v4.0.0-rc2 # Version of Fleet to deploy createIngress: true # Whether or not to automatically create an Ingress ingressAnnotations: {} # Additional annotation to add to the Ingress podAnnotations: {} # Additional annotations to add to the Fleet pod diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 3e7b4ec39d4d..1009db0c2a52 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "4.0.0-rc2", + "version": "v4.0.0-rc2", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"