Skip to content

Commit

Permalink
Merge pull request #1 from milosjava/fixpodlabel
Browse files Browse the repository at this point in the history
  • Loading branch information
milosjava authored Oct 2, 2024
2 parents f4cdbeb + fb7e6b2 commit 349b142
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions backend/src/v2/compiler/argocompiler/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,12 @@ func (c *workflowCompiler) containerExecutorTask(name string, inputs containerEx
// and resources etc, that are different for different tasks.
func (c *workflowCompiler) addContainerExecutorTemplate(refName string) string {
// container template is parent of container implementation template
nameContainerExecutor := "system-container-executor"
nameContainerImpl := "system-container-impl"
//nameContainerExecutor := "system-container-executor"
//nameContainerImpl := "system-container-impl"

nameContainerExecutor := "system-container-executor-" + refName
nameContainerImpl := "system-container-impl-" + refName

_, ok := c.templates[nameContainerExecutor]
if ok {
return nameContainerExecutor
Expand Down

0 comments on commit 349b142

Please sign in to comment.