Skip to content

Commit 05a6193

Browse files
authored
Merge pull request #2014 from FabianKramm/master
refactor: updateImageTags are now default true
2 parents 8ab171e + 17285df commit 05a6193

14 files changed

Lines changed: 8 additions & 21 deletions

File tree

examples/buildkit-in-cluster/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ images:
1515
# Deploy the built image with helm and the component chart
1616
deployments:
1717
my-deployment:
18-
updateImageTags: true
1918
helm:
2019
values:
2120
containers:

examples/buildkit/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ images:
1414
# Deploy the built image with helm and the component chart
1515
deployments:
1616
my-deployment:
17-
updateImageTags: true
1817
helm:
1918
values:
2019
containers:

examples/custom-builder/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ images:
1818

1919
deployments:
2020
my-deployment:
21-
updateImageTags: true
2221
kubectl:
2322
manifests:
2423
- kube

examples/hot-reload-container-restart/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ images:
1111

1212
deployments:
1313
my-deployment:
14-
updateImageTags: true
1514
helm:
1615
values:
1716
containers:

examples/kaniko/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ images:
1111

1212
deployments:
1313
my-deployment:
14-
updateImageTags: true
1514
helm:
1615
values:
1716
containers:

examples/microservices/node/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ images:
1111

1212
deployments:
1313
node:
14-
updateImageTags: true
1514
kubectl:
1615
manifests:
1716
- kube/*

examples/microservices/php/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ images:
1111

1212
deployments:
1313
php:
14-
updateImageTags: true
1514
helm:
1615
chart:
1716
name: chart

examples/php-mysql-example/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ deployments:
3434
size: 5Gi
3535

3636
php:
37-
updateImageTags: true
3837
helm:
3938
values:
4039
containers:

examples/redeploy-instead-of-hot-reload/devspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ images:
1515

1616
deployments:
1717
default:
18-
updateImageTags: true
1918
helm:
2019
values:
2120
containers:

pkg/devspace/config/loader/variable/command_variable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func execCommand(ctx context.Context, varName string, definition *latest.Variabl
5757
err = command.Command(ctx, dir, writer, stdErrWriter, nil, cmd, args...)
5858
}
5959
if err != nil {
60-
errMsg := "fill variable " + varName + ": " + err.Error()
60+
errMsg := "fill variable " + varName + " with command '" + cmd + "': " + err.Error()
6161
if len(writer.Bytes()) > 0 {
6262
errMsg = errMsg + "\n\nstdout: \n" + writer.String()
6363
}

0 commit comments

Comments
 (0)