Skip to content

Commit 6542441

Browse files
committed
chore: upgrade component-chart to 0.8.6
Signed-off-by: Luca Di Maio <[email protected]>
1 parent 28b3872 commit 6542441

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

e2e/tests/localregistry/testdata/local-registry-kubectl/manifests/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
"app.kubernetes.io/component": "app"
88
"app.kubernetes.io/managed-by": "Helm"
99
annotations:
10-
"helm.sh/chart": "component-chart-0.8.5"
10+
"helm.sh/chart": "component-chart-0.8.6"
1111
spec:
1212
replicas: 1
1313
strategy:
@@ -24,7 +24,7 @@ spec:
2424
"app.kubernetes.io/component": "app"
2525
"app.kubernetes.io/managed-by": "Helm"
2626
annotations:
27-
"helm.sh/chart": "component-chart-0.8.5"
27+
"helm.sh/chart": "component-chart-0.8.6"
2828
spec:
2929
imagePullSecrets:
3030
nodeSelector:

e2e/tests/render/render.go

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

33
import (
44
"bytes"
5-
"github.com/onsi/ginkgo/v2"
65
"os"
76
"path/filepath"
87
"strings"
98
"sync"
109

10+
"github.com/onsi/ginkgo/v2"
11+
1112
"github.com/loft-sh/devspace/cmd"
1213
"github.com/loft-sh/devspace/cmd/flags"
1314
"github.com/loft-sh/devspace/e2e/framework"
@@ -49,7 +50,11 @@ var _ = DevSpaceDescribe("build", func() {
4950
err = renderCmd.RunDefault(f)
5051
framework.ExpectNoError(err)
5152
content := strings.TrimSpace(stdout.String()) + "\n"
52-
framework.ExpectLocalFileContentsImmediately(filepath.Join(tempDir, "rendered.txt"), content)
53+
54+
framework.ExpectLocalFileContentsImmediately(
55+
filepath.Join(tempDir, "rendered.txt"),
56+
content,
57+
)
5358
})
5459

5560
ginkgo.It("should render kubectl deployments", func() {
@@ -71,7 +76,10 @@ var _ = DevSpaceDescribe("build", func() {
7176
err = renderCmd.RunDefault(f)
7277
framework.ExpectNoError(err)
7378
content := strings.TrimSpace(stdout.String()) + "\n"
74-
framework.ExpectLocalFileContentsImmediately(filepath.Join(tempDir, "rendered.txt"), content)
79+
framework.ExpectLocalFileContentsImmediately(
80+
filepath.Join(tempDir, "rendered.txt"),
81+
content,
82+
)
7583
})
7684
})
7785

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

Lines changed: 5 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.8.5"
12+
"helm.sh/chart": "component-chart-0.8.6"
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.8.5"
29+
"helm.sh/chart": "component-chart-0.8.6"
3030
spec:
3131
imagePullSecrets:
3232
nodeSelector:
@@ -82,3 +82,6 @@ spec:
8282
---
8383
# Source: component-chart/templates/deployment.yaml
8484
# Create headless service for StatefulSet
85+
---
86+
# Source: component-chart/templates/ingress.yaml
87+
#

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const ComponentChartFolder = "component-chart"
2222
// DevSpaceChartConfig is the config that holds the devspace chart information
2323
var DevSpaceChartConfig = &latest.ChartConfig{
2424
Name: "component-chart",
25-
Version: "0.8.5",
25+
Version: "0.8.6",
2626
RepoURL: "https://charts.devspace.sh",
2727
}
2828

0 commit comments

Comments
 (0)