We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d7d627 + 3059425 commit 2399b38Copy full SHA for 2399b38
rollout/well_known_labels.go
@@ -24,12 +24,13 @@ const (
24
// canary labels
25
const (
26
// This label will be set on objects to indicate that they are temporary resources.
27
- LabelCanaryResource = "rollout.kusionstack.io/canary-resource"
+ CanaryResourceLabelKey = "rollout.kusionstack.io/canary-resource"
28
29
// This label indicates the revision of pods controlled by workload.
30
- LabelTrafficLane = "rollout.kusionstack.io/traffic-lane"
31
- LabelValueTrafficLaneStable = "stable"
32
- LabelValueTrafficLaneCanary = "canary"
+ TrafficLaneLabelKey = "rollout.kusionstack.io/traffic-lane"
+ StableTrafficLane = "stable"
+ CanaryTrafficLane = "canary"
33
+ UnknownTrafficLane = "__unknown__"
34
)
35
36
// rollout class label
0 commit comments