Skip to content

Commit 349b142

Browse files
authored
Merge pull request #1 from milosjava/fixpodlabel
fix kubeflow#11077
2 parents f4cdbeb + fb7e6b2 commit 349b142

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

backend/src/v2/compiler/argocompiler/container.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,12 @@ func (c *workflowCompiler) containerExecutorTask(name string, inputs containerEx
211211
// and resources etc, that are different for different tasks.
212212
func (c *workflowCompiler) addContainerExecutorTemplate(refName string) string {
213213
// container template is parent of container implementation template
214-
nameContainerExecutor := "system-container-executor"
215-
nameContainerImpl := "system-container-impl"
214+
//nameContainerExecutor := "system-container-executor"
215+
//nameContainerImpl := "system-container-impl"
216+
217+
nameContainerExecutor := "system-container-executor-" + refName
218+
nameContainerImpl := "system-container-impl-" + refName
219+
216220
_, ok := c.templates[nameContainerExecutor]
217221
if ok {
218222
return nameContainerExecutor

0 commit comments

Comments
 (0)