Skip to content

Commit

Permalink
Merge pull request #2707 from lizardruss/ENG-1879
Browse files Browse the repository at this point in the history
fix: update component chart version
  • Loading branch information
lizardruss committed Aug 31, 2023
2 parents 45f987c + ac68496 commit 41c8128
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions e2e/tests/render/testdata/helm/rendered.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
"app.kubernetes.io/component": "test"
"app.kubernetes.io/managed-by": "Helm"
annotations:
"helm.sh/chart": "component-chart-0.9.0"
"helm.sh/chart": "component-chart-0.9.1"
spec:
replicas: 1
strategy:
Expand All @@ -26,7 +26,7 @@ spec:
"app.kubernetes.io/component": "test"
"app.kubernetes.io/managed-by": "Helm"
annotations:
"helm.sh/chart": "component-chart-0.9.0"
"helm.sh/chart": "component-chart-0.9.1"
spec:
imagePullSecrets:
nodeSelector:
Expand Down
5 changes: 3 additions & 2 deletions pkg/devspace/deploy/deployer/helm/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package helm

import (
"fmt"
devspacecontext "github.com/loft-sh/devspace/pkg/devspace/context"
"os"
"path/filepath"

devspacecontext "github.com/loft-sh/devspace/pkg/devspace/context"

"github.com/loft-sh/devspace/assets"
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
Expand All @@ -22,7 +23,7 @@ const ComponentChartFolder = "component-chart"
// DevSpaceChartConfig is the config that holds the devspace chart information
var DevSpaceChartConfig = &latest.ChartConfig{
Name: "component-chart",
Version: "0.9.0",
Version: "0.9.1",
RepoURL: "https://charts.devspace.sh",
}

Expand Down

0 comments on commit 41c8128

Please sign in to comment.