Skip to content

Commit ac68496

Browse files
committed
fix: update component chart version
Fixes #2703 Fixes ENG-1974 Signed-off-by: Russell Centanni <[email protected]>
1 parent 45f987c commit ac68496

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

e2e/tests/render/testdata/helm/rendered.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
"app.kubernetes.io/component": "test"
1010
"app.kubernetes.io/managed-by": "Helm"
1111
annotations:
12-
"helm.sh/chart": "component-chart-0.9.0"
12+
"helm.sh/chart": "component-chart-0.9.1"
1313
spec:
1414
replicas: 1
1515
strategy:
@@ -26,7 +26,7 @@ spec:
2626
"app.kubernetes.io/component": "test"
2727
"app.kubernetes.io/managed-by": "Helm"
2828
annotations:
29-
"helm.sh/chart": "component-chart-0.9.0"
29+
"helm.sh/chart": "component-chart-0.9.1"
3030
spec:
3131
imagePullSecrets:
3232
nodeSelector:

pkg/devspace/deploy/deployer/helm/client.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package helm
22

33
import (
44
"fmt"
5-
devspacecontext "github.com/loft-sh/devspace/pkg/devspace/context"
65
"os"
76
"path/filepath"
87

8+
devspacecontext "github.com/loft-sh/devspace/pkg/devspace/context"
9+
910
"github.com/loft-sh/devspace/assets"
1011
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
1112
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
@@ -22,7 +23,7 @@ const ComponentChartFolder = "component-chart"
2223
// DevSpaceChartConfig is the config that holds the devspace chart information
2324
var DevSpaceChartConfig = &latest.ChartConfig{
2425
Name: "component-chart",
25-
Version: "0.9.0",
26+
Version: "0.9.1",
2627
RepoURL: "https://charts.devspace.sh",
2728
}
2829

0 commit comments

Comments
 (0)