mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 10:19:29 +00:00
12 lines
391 B
Go
12 lines
391 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package finalizers
|
|
|
|
const (
|
|
// DatastoreFinalizer is using a wrong name, since it's related to the underlying datastore.
|
|
DatastoreFinalizer = "finalizer.kamaji.clastix.io"
|
|
DatastoreSecretFinalizer = "finalizer.kamaji.clastix.io/datastore-secret"
|
|
SootFinalizer = "finalizer.kamaji.clastix.io/soot"
|
|
)
|