43 lines
2.3 KiB
Go
43 lines
2.3 KiB
Go
package v1alpha2
|
|
|
|
const (
|
|
// ResourceBindingReferenceKey is the key of ResourceBinding object.
|
|
// It is usually a unique hash value of ResourceBinding object's namespace and name, intended to be added to the Work object.
|
|
// It will be used to retrieve all Works objects that derived from a specific ResourceBinding object.
|
|
ResourceBindingReferenceKey = "resourcebinding.karmada.io/key"
|
|
|
|
// ClusterResourceBindingReferenceKey is the key of ClusterResourceBinding object.
|
|
// It is usually a unique hash value of ClusterResourceBinding object's namespace and name, intended to be added to the Work object.
|
|
// It will be used to retrieve all Works objects that derived by a specific ClusterResourceBinding object.
|
|
ClusterResourceBindingReferenceKey = "clusterresourcebinding.karmada.io/key"
|
|
|
|
// ResourceBindingNamespaceLabel is added to objects to specify associated ResourceBinding's namespace.
|
|
ResourceBindingNamespaceLabel = "resourcebinding.karmada.io/namespace"
|
|
|
|
// ResourceBindingNameLabel is added to objects to specify associated ResourceBinding's name.
|
|
ResourceBindingNameLabel = "resourcebinding.karmada.io/name"
|
|
|
|
// ClusterResourceBindingLabel is added to objects to specify associated ClusterResourceBinding.
|
|
ClusterResourceBindingLabel = "clusterresourcebinding.karmada.io/name"
|
|
|
|
// WorkNamespaceLabel is added to objects to specify associated Work's namespace.
|
|
WorkNamespaceLabel = "work.karmada.io/namespace"
|
|
|
|
// WorkNameLabel is added to objects to specify associated Work's name.
|
|
WorkNameLabel = "work.karmada.io/name"
|
|
)
|
|
|
|
// Define resource conflict resolution
|
|
const (
|
|
// ResourceConflictResolutionAnnotation is added to the resource template to specify how to resolve the conflict
|
|
// in case of resource already existing in member clusters.
|
|
// The valid value is:
|
|
// - overwrite: always overwrite the resource if already exist. The resource will be overwritten with the
|
|
// configuration from control plane.
|
|
// Note: Propagation of the resource template without this annotation will fail in case of already exists.
|
|
ResourceConflictResolutionAnnotation = "work.karmada.io/conflict-resolution"
|
|
|
|
// ResourceConflictResolutionOverwrite is the value of ResourceConflictResolutionAnnotation, indicating the overwrite strategy.
|
|
ResourceConflictResolutionOverwrite = "overwrite"
|
|
)
|