From 202cce9e82cc0fa2eaee9356e073f3194780b3aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Torrentsgener=C3=B3s?= Date: Wed, 18 Dec 2024 19:25:46 +0100 Subject: [PATCH] chore: use flyte.org/finalizer instead MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roger Torrentsgenerós --- flyteplugins/go/tasks/plugins/array/k8s/subtask.go | 2 +- flytepropeller/pkg/controller/controller.go | 2 +- flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flyteplugins/go/tasks/plugins/array/k8s/subtask.go b/flyteplugins/go/tasks/plugins/array/k8s/subtask.go index c28d014f78..bdc1c716b7 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/subtask.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/subtask.go @@ -31,7 +31,7 @@ const ( ErrBuildPodTemplate stdErrors.ErrorCode = "POD_TEMPLATE_FAILED" ErrReplaceCmdTemplate stdErrors.ErrorCode = "CMD_TEMPLATE_FAILED" FlyteK8sArrayIndexVarName string = "FLYTE_K8S_ARRAY_INDEX" - finalizer string = "flyte.lyft.com/finalizer-array" + finalizer string = "flyte.org/finalizer-array" // Old non-domain-qualified finalizer for backwards compatibility // This should eventually be removed oldFinalizer string = "flyte/array" diff --git a/flytepropeller/pkg/controller/controller.go b/flytepropeller/pkg/controller/controller.go index a26580d72e..9cef800125 100644 --- a/flytepropeller/pkg/controller/controller.go +++ b/flytepropeller/pkg/controller/controller.go @@ -62,7 +62,7 @@ import ( const ( // Finalizer is the global and domain-qualified Flyte finalizer - Finalizer = "flyte.lyft.com/finalizer" + Finalizer = "flyte.org/finalizer" // OldFinalizer is the old non-domain-qualified finalizer, kept for backwards compatibility // This should eventually be removed OldFinalizer = "flyte-finalizer" diff --git a/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager.go b/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager.go index 8fd6c673b7..6d558f818e 100644 --- a/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager.go +++ b/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager.go @@ -43,7 +43,7 @@ import ( ) const ( - finalizer = "flyte.lyft.com/finalizer-k8s" + finalizer = "flyte.org/finalizer-k8s" // Old non-domain-qualified finalizer for backwards compatibility // This should eventually be removed oldFinalizer = "flyte/flytek8s"