1bmc_booted:
2    # No LED required.
3
4# Status LED indication
5# Managed by callback-manager
6status_ok:
7    platform_status_green:
8        Action: 'On'
9    platform_status_red:
10        Action: 'Off'
11
12status_degraded:
13    platform_status_green:
14        Action: 'Blink'
15    platform_status_red:
16        Action: 'Blink'
17
18status_non_critical:
19    platform_status_green:
20        Action: 'Off'
21    platform_status_red:
22        Action: 'Blink'
23
24status_critical:
25    platform_status_green:
26        Action: 'Off'
27    platform_status_red:
28        Action: 'On'
29
30
31enclosure_identify:
32    platform_indicator_blue:
33        Action: 'On'
34
35#
36# May be asserted through IPMI or RedFish.
37# We decided that it should be the same as enclosure_identify.
38enclosure_identify_blink:
39    platform_indicator_blue:
40        Action: 'On'
41
42#
43# Asserted while firmware is flashing
44firmware_flashing:
45    platform_indicator_blue:
46        Action: 'Blink'
47
48#
49# Power button indication
50# Managed by phosphor-dbus-monitor
51power_standby:
52    platform_power_green:
53        Action: 'On'
54    platform_power_red:
55        Action: 'On'
56
57power_sequence:
58    platform_power_green:
59        Action: 'Blink'
60        DutyOn: 50
61        Period: 1000
62    platform_power_red:
63        Action: 'Off'
64
65power_on:
66    platform_power_green:
67        Action: 'On'
68    platform_power_red:
69        Action: 'Off'
70
71power_failure:
72    platform_power_green:
73        Action: 'Off'
74    platform_power_red:
75        Action: 'On'
76
77#
78# Temperature status
79# Managed by phosphor-dbus-monitor
80temp_ok:
81    temp_status_green:
82        Action: 'On'
83    temp_status_red:
84        Action: 'Off'
85
86temp_failure:
87    temp_status_green:
88        Action: 'Blink'
89    temp_status_red:
90        Action: 'Blink'
91
92temp_warn:
93    temp_status_green:
94        Action: 'On'
95    temp_status_red:
96        Action: 'On'
97
98temp_crit:
99    temp_status_green:
100        Action: 'Off'
101    temp_status_red:
102        Action: 'On'
103
104#
105# PSU status
106# Managed by phosphor-dbus-monitor
107psu_ok:
108    psu_status_green:
109        Action: 'On'
110    psu_status_red:
111        Action: 'Off'
112
113psu_warn:
114    psu_status_green:
115        Action: 'Blink'
116    psu_status_red:
117        Action: 'Blink'
118
119psu_crit:
120    psu_status_green:
121        Action: 'Off'
122    psu_status_red:
123        Action: 'Blink'
124