Skip to content

Commit 8a35127

Browse files
authored
fix: yaml parser treats ON/OFF as boolean and lint fails (#473)
1 parent 80498b9 commit 8a35127

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/mig/metadata.display.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ spec:
4848
title: Autoscaling Mode
4949
level: 1
5050
enumValueLabels:
51-
- label: ON
52-
value: ON
51+
- label: "ON"
52+
value: "ON"
5353
- label: ONLY_SCALE_OUT
5454
value: ONLY_SCALE_OUT
55-
- label: OFF
56-
value: OFF
55+
- label: "OFF"
56+
value: "OFF"
5757
autoscaling_scale_in_control:
5858
name: autoscaling_scale_in_control
5959
title: Autoscaling Scale In Control

0 commit comments

Comments
 (0)