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    platform_status_red:
13        Action: 'Off'
14
15status_degraded:
16    platform_status_green:
17        Action: 'Off'
18    platform_status_red:
19        Action: 'Blink'
20        DutyOn: 25
21        Period: 2000
22
23status_non_critical:
24    platform_status_green:
25        Action: 'Off'
26    platform_status_red:
27        Action: 'Blink'
28        DutyOn: 50
29        Period: 1000
30
31status_critical:
32    platform_status_green:
33        Action: 'Off'
34    platform_status_red:
35        Action: 'On'
36
37enclosure_identify:
38    platform_indicator_blue:
39        Action: 'On'
40
41#
42# May be asserted through IPMI or RedFish.
43# We decided that it should be the same as enclosure_identify.
44enclosure_identify_blink:
45    platform_indicator_blue:
46        Action: 'On'
47
48#
49# Asserted while firmware is flashing
50firmware_flashing:
51    platform_indicator_blue:
52        Action: 'Blink'
53
54#
55# Power button indication
56# Managed by phosphor-dbus-monitor
57power_standby:
58    platform_power_green:
59        Action: 'On'
60    platform_power_red:
61        Action: 'On'
62
63power_sequence:
64    platform_power_green:
65        Action: 'Blink'
66        DutyOn: 50
67        Period: 1000
68    platform_power_red:
69        Action: 'Off'
70
71power_on:
72    platform_power_green:
73        Action: 'On'
74    platform_power_red:
75        Action: 'Off'
76
77power_failure:
78    platform_power_green:
79        Action: 'Off'
80    platform_power_red:
81        Action: 'On'
82
83