From 2d870a974090a33f0aed41c538dc06d355e345f7 Mon Sep 17 00:00:00 2001 From: Fabio Graetz Date: Thu, 4 Jan 2024 12:01:35 +0000 Subject: [PATCH] Use hyphen instead of underscore in pod label Signed-off-by: Fabio Graetz --- .../pkg/controller/nodes/task/k8s/task_exec_context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go index 2bdaeeba58..e9230b081e 100644 --- a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go +++ b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go @@ -7,7 +7,7 @@ import ( "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils/secrets" ) -const executionIdentityVariable = "execution_identity" +const executionIdentityVariable = "execution-identity" // TaskExecutionContext provides a layer on top of core TaskExecutionContext with a custom TaskExecutionMetadata. type TaskExecutionContext struct {