Skip to content

Commit

Permalink
[release] bump v1.8.0-A3
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed May 31, 2024
1 parent d9af2d0 commit 3ef78ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
1.7.9
v1.8.0-A3

18 changes: 9 additions & 9 deletions src/main/groovy/io/seqera/wave/service/k8s/K8sServiceImpl.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ class K8sServiceImpl implements K8sService {
.withName(name)
.endMetadata()
.withNewSpec()
.withBackoffLimit(0)
.withNewTemplate()
.editOrNewSpec()
.addNewContainer()
.withName(name)
.withImage(containerImage)
.withArgs(args)
.endContainer()
.withRestartPolicy("Never")
.withBackoffLimit(0)
.withNewTemplate()
.editOrNewSpec()
.addNewContainer()
.withName(name)
.withImage(containerImage)
.withArgs(args)
.endContainer()
.withRestartPolicy("Never")
.endSpec()
.endTemplate()
.endSpec()
Expand Down

0 comments on commit 3ef78ab

Please sign in to comment.