@@ -2,19 +2,19 @@ package common
2
2
3
3
// Annotations that are used to control this Controller's behaviour
4
4
const (
5
- Prefix = "replicator.v1.mittwald.de"
5
+ ReplicatorPrefix = "replicator.v1.mittwald.de"
6
6
)
7
7
8
8
var (
9
- ReplicateFromAnnotation = Prefix + "/replicate-from"
10
- ReplicatedAtAnnotation = Prefix + "/replicated-at"
11
- ReplicatedFromVersionAnnotation = Prefix + "/replicated-from-version"
12
- ReplicatedKeysAnnotation = Prefix + "/replicated-keys"
13
- ReplicationAllowed = Prefix + "/replication-allowed"
14
- ReplicationAllowedNamespaces = Prefix + "/replication-allowed-namespaces"
15
- ReplicateTo = Prefix + "/replicate-to"
16
- ReplicateToMatching = Prefix + "/replicate-to-matching"
17
- KeepOwnerReferences = Prefix + "/keep-owner-references"
18
- StripLabels = Prefix + "/strip-labels"
19
- StripAnnotations = Prefix + "/strip-annotations"
9
+ ReplicateFromAnnotation = ReplicatorPrefix + "/replicate-from"
10
+ ReplicatedAtAnnotation = ReplicatorPrefix + "/replicated-at"
11
+ ReplicatedFromVersionAnnotation = ReplicatorPrefix + "/replicated-from-version"
12
+ ReplicatedKeysAnnotation = ReplicatorPrefix + "/replicated-keys"
13
+ ReplicationAllowed = ReplicatorPrefix + "/replication-allowed"
14
+ ReplicationAllowedNamespaces = ReplicatorPrefix + "/replication-allowed-namespaces"
15
+ ReplicateTo = ReplicatorPrefix + "/replicate-to"
16
+ ReplicateToMatching = ReplicatorPrefix + "/replicate-to-matching"
17
+ KeepOwnerReferences = ReplicatorPrefix + "/keep-owner-references"
18
+ StripLabels = ReplicatorPrefix + "/strip-labels"
19
+ StripAnnotations = ReplicatorPrefix + "/strip-annotations"
20
20
)
0 commit comments