mirror of
https://github.com/netbirdio/kubernetes-operator.git
synced 2026-05-22 17:11:40 -07:00
This change adds SPDX license headers to all files and eforces it with the linter. Signed-off-by: Philip Laine <philip.laine@gmail.com>
10 lines
186 B
Go
10 lines
186 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package k8sutil
|
|
|
|
const NetbirdFinalizer = "finalizers.netbird.io"
|
|
|
|
func Finalizer(kind string) string {
|
|
return NetbirdFinalizer + "/" + kind
|
|
}
|