Skip to content

Commit

Permalink
fix: yaml parser treats ON/OFF as boolean and lint fails (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
q2w authored Jan 21, 2025
1 parent 80498b9 commit 8a35127
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/mig/metadata.display.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ spec:
title: Autoscaling Mode
level: 1
enumValueLabels:
- label: ON
value: ON
- label: "ON"
value: "ON"
- label: ONLY_SCALE_OUT
value: ONLY_SCALE_OUT
- label: OFF
value: OFF
- label: "OFF"
value: "OFF"
autoscaling_scale_in_control:
name: autoscaling_scale_in_control
title: Autoscaling Scale In Control
Expand Down

0 comments on commit 8a35127

Please sign in to comment.