1bmc_booted:
2    # No LED required.
3
4# Status LED indication
5# Managed by callback-manager
6# NOTE: The green LED actually has different colors on the front and rear
7#       panels. So, we decided not to use it.
8#       See https://j.yadro.com/browse/BBMC-221 for details.
9status_ok:
10    platform_status_green:
11        Action: 'Off'
12        Priority: 'Blink'
13    platform_status_red:
14        Action: 'Off'
15        Priority: 'Blink'
16
17status_degraded:
18    platform_status_green:
19        Action: 'Off'
20        Priority: 'Blink'
21    platform_status_red:
22        Action: 'Blink'
23        DutyOn: 25
24        Period: 2000
25        Priority: 'Blink'
26
27status_non_critical:
28    platform_status_green:
29        Action: 'Off'
30        Priority: 'Blink'
31    platform_status_red:
32        Action: 'Blink'
33        DutyOn: 50
34        Period: 1000
35        Priority: 'Blink'
36
37status_critical:
38    platform_status_green:
39        Action: 'Off'
40        Priority: 'Blink'
41    platform_status_red:
42        Action: 'On'
43        Priority: 'Blink'
44
45enclosure_identify:
46    platform_indicator_blue:
47        Action: 'On'
48        Priority: 'Blink'
49
50#
51# May be asserted through IPMI or RedFish.
52# We decided that it should be the same as enclosure_identify.
53enclosure_identify_blink:
54    platform_indicator_blue:
55        Action: 'On'
56        Priority: 'Blink'
57
58#
59# Asserted while firmware is flashing
60firmware_flashing:
61    platform_indicator_blue:
62        Action: 'Blink'
63        Priority: 'Blink'
64
65#
66# Power button indication
67# Managed by phosphor-dbus-monitor
68power_standby:
69    platform_power_green:
70        Action: 'On'
71        Priority: 'Blink'
72    platform_power_red:
73        Action: 'On'
74        Priority: 'Blink'
75
76power_sequence:
77    platform_power_green:
78        Action: 'Blink'
79        DutyOn: 50
80        Period: 1000
81        Priority: 'Blink'
82    platform_power_red:
83        Action: 'Off'
84        Priority: 'Blink'
85
86power_on:
87    platform_power_green:
88        Action: 'On'
89        Priority: 'Blink'
90    platform_power_red:
91        Action: 'Off'
92        Priority: 'Blink'
93
94power_failure:
95    platform_power_green:
96        Action: 'Off'
97        Priority: 'Blink'
98    platform_power_red:
99        Action: 'On'
100        Priority: 'Blink'
101
102