BarraHome commited on
Commit
3125c51
1 Parent(s): d9d1cb6

Create pacemaker.json

Browse files
Files changed (1) hide show
  1. pacemaker.json +170 -0
pacemaker.json ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "instruction": "pcs cluster status",
4
+ "context": "Check Cluster Status",
5
+ "response": "Display status of cluster nodes",
6
+ "category": "open_qa"
7
+ },
8
+ {
9
+ "instruction": "pcs status –full (double dashes)",
10
+ "context": "Check Cluster Status",
11
+ "response": "Display detailed cluster status of nodes and resources",
12
+ "category": "open_qa"
13
+ },
14
+ {
15
+ "instruction": "pcs resource",
16
+ "context": "Check Cluster Status",
17
+ "response": "Display status of all resources and resource groups",
18
+ "category": "open_qa"
19
+ },
20
+ {
21
+ "instruction": "pcs cluster standby",
22
+ "context": "Modify Cluster Nodes",
23
+ "response": "Place node in standby mode",
24
+ "category": "open_qa"
25
+ },
26
+ {
27
+ "instruction": "pcs cluster unstandby",
28
+ "context": "Modify Cluster Nodes",
29
+ "response": "Remove node from standby mode",
30
+ "category": "open_qa"
31
+ },
32
+ {
33
+ "instruction": "pcs resource move [resource_name] node name",
34
+ "context": "Managing Running Resources",
35
+ "response": "Move resource to another node",
36
+ "category": "open_qa"
37
+ },
38
+ {
39
+ "instruction": "pcs resource restart [resource_name]",
40
+ "context": "Managing Running Resources",
41
+ "response": "Restart resource on current node",
42
+ "category": "open_qa"
43
+ },
44
+ {
45
+ "instruction": "pcs resource enable [resource_name]",
46
+ "context": "Managing Running Resources",
47
+ "response": "Start resource on current node",
48
+ "category": "open_qa"
49
+ },
50
+ {
51
+ "instruction": "pcs resource disable [resource_name]",
52
+ "context": "Managing Running Resources",
53
+ "response": "Stop resource on current node",
54
+ "category": "open_qa"
55
+ },
56
+ {
57
+ "instruction": "pcs resource debug-start [source_name]",
58
+ "context": "Debugging Resources",
59
+ "response": "Force resource to start on node where command is executed showing debug information. Use --full for even more verbose output.",
60
+ "category": "open_qa"
61
+ },
62
+ {
63
+ "instruction": "pcs resource debug-stop [source_name]",
64
+ "context": "Debugging Resources",
65
+ "response": "Force resource to stop on node where command is executed showing debug information. Use --full for even more verbose output.",
66
+ "category": "open_qa"
67
+ },
68
+ {
69
+ "instruction": "pcs resource debug-monitor [source_name]",
70
+ "context": "Debugging Resources",
71
+ "response": "Force resource to be monitored on node where command is executed showing debug information. Use --full for even more verbose output.",
72
+ "category": "open_qa"
73
+ },
74
+ {
75
+ "instruction": "pcs resource agents",
76
+ "context": "Creating and Modifying Resources",
77
+ "response": "List available resource agents",
78
+ "category": "open_qa"
79
+ },
80
+ {
81
+ "instruction": "pcs resource describe [resource]",
82
+ "context": "Creating and Modifying Resources",
83
+ "response": "List configuration setting for resource",
84
+ "category": "open_qa"
85
+ },
86
+ {
87
+ "instruction": "pcs resource create [resource id][resource] options…",
88
+ "context": "Creating and Modifying Resources",
89
+ "response": "Create resource",
90
+ "category": "open_qa"
91
+ },
92
+ {
93
+ "instruction": "pcs resource show [resource id]",
94
+ "context": "Creating and Modifying Resources",
95
+ "response": "Display currently configured setting of resource",
96
+ "category": "open_qa"
97
+ },
98
+ {
99
+ "instruction": "pcs resource update [resource id] options…",
100
+ "context": "Creating and Modifying Resources",
101
+ "response": "Update resource configuration",
102
+ "category": "open_qa"
103
+ },
104
+ {
105
+ "instruction": "pcs resource delete [resource id]",
106
+ "context": "Creating and Modifying Resources",
107
+ "response": "Delete resource",
108
+ "category": "open_qa"
109
+ },
110
+ {
111
+ "instruction": "pcs resource cleanup [resource id]",
112
+ "context": "Creating and Modifying Resources",
113
+ "response": "Cleanup resource failures",
114
+ "category": "open_qa"
115
+ },
116
+ {
117
+ "instruction": "pcs stonith list",
118
+ "context": "Creating and Modifying Stonith Resources",
119
+ "response": "List available fence agents",
120
+ "category": "open_qa"
121
+ },
122
+ {
123
+ "instruction": "pcs stonith describe [fence agent]",
124
+ "context": "Creating and Modifying Stonith Resources",
125
+ "response": "List configuration settings for fence agent",
126
+ "category": "open_qa"
127
+ },
128
+ {
129
+ "instruction": "pcs stonith describe [stonith_id]",
130
+ "context": "Creating and Modifying Stonith Resources",
131
+ "response": "List configuration setting for stonith agent",
132
+ "category": "open_qa"
133
+ },
134
+ {
135
+ "instruction": "pcs stonith create [stonith_id][resource] options���",
136
+ "context": "Creating and Modifying Stonith Resources",
137
+ "response": "Create stonith agent",
138
+ "category": "open_qa"
139
+ },
140
+ {
141
+ "instruction": "pcs stonith show [stonith_id]",
142
+ "context": "Creating and Modifying Stonith Resources",
143
+ "response": "Display currently configured setting of stonith agent",
144
+ "category": "open_qa"
145
+ },
146
+ {
147
+ "instruction": "pcs stonith update [stonith_id] options…",
148
+ "context": "Creating and Modifying Stonith Resources",
149
+ "response": "Update stonith configuration",
150
+ "category": "open_qa"
151
+ },
152
+ {
153
+ "instruction": "pcs stonith delete [stonith_id]",
154
+ "context": "Creating and Modifying Stonith Resources",
155
+ "response": "Delete stonith agent",
156
+ "category": "open_qa"
157
+ },
158
+ {
159
+ "instruction": "pcs stonith cleanup [stonith_id]",
160
+ "context": "Creating and Modifying Stonith Resources",
161
+ "response": "Cleanup stonith agent failures",
162
+ "category": "open_qa"
163
+ },
164
+ {
165
+ "instruction": "pcs stonith history cleanup *",
166
+ "context": "Cleaning up stonith history",
167
+ "response": "Cleanup stonith history",
168
+ "category": "open_qa"
169
+ }
170
+ ]