1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
# Introspection
This document explains how to get started using introspection with
fog-openstack.
Please also refer to the
[Getting Started with Fog and the OpenStack](getting_started.md) document.
Introspection service is implemented by the OpenStack ironic-inspector project.
Introspection is strongly related to the Baremetal service (Ironic project).
Effectively, Instrospection communicates and operates on nodes defined by the
Baremetal layer (Ironic).
# OpenStack setup
## The catalog
For the fog-openstack's introspection service to work, the corresponding
service must be defined in the OpenStack catalog.
```bash
openstack catalog show inspector
+-----------+-----------------------------------------+
| Field | Value |
+-----------+-----------------------------------------+
| endpoints | regionOne |
| | publicURL: http://192.0.2.1:5050/v1 |
| | internalURL: http://192.0.2.1:5050/v1 |
| | adminURL: http://192.0.2.1:5050/v1 |
| | |
| name | inspector |
| type | introspection |
+-----------+-----------------------------------------+
```
Depending on the OpenStack release, the introspection service might be installed
but not defined yet in the catalog. In such case, you must add the service and
corresponding endpoints to create the catalog entry:
```bash
source ./stackrc
openstack service create --name inspector --description "OpenStack Introspection" introspection
openstack endpoint create --region regionOne inspector --publicurl http://example.com:5050/v1 --internalurl http://example.com:5050/v1 --adminurl http://example.com:5050/v1
```
## The introspection timeout
The default timeout value after which introspection is considered failed is set
by an 1 hour (3600 s) default. Although in production environment, baremetal
introspection requires time, testing in virtual environment doesn't, this is why
if you are in the latter case the timeout value can be reduced for speeding
results:
```bash
sudo openstack-config --set /etc/ironic-inspector/inspector.conf DEFAULT timeout 300
```
# Work flow
Assuming Baremetal nodes have been defined (imported), a usual work-flow might
consist of:
* Start introspection
* Check introspection status or abort introspection
* Retrieve introspection data
* optionally, pre-defined DSL based rules can be defined and applied during
introspection.
For more details about this process please refer to
http://docs.openstack.org/developer/ironic-inspector/workflow.html
Using 'irb', we start with authentication:
```ruby
@user = "admin"
@project = "admin"
@password = "secret"
@base_url = "http://keystone.example.com:5000/v3/auth/tokens"
require 'rubygems'
require 'fog/openstack'
@connection_params = {
:openstack_auth_url => @base_url,
:openstack_username => @user,
:openstack_api_key => @password,
:openstack_project_name => @project,
:openstack_domain_id => "default"
}
```
## Baremetal node introspection
### Baremetal nodes
Find the available Baremetal nodes.
```ruby
iron = Fog::OpenStack::Baremetal.new(@connection_params)
nodes = iron.node_list
```
### Start introspection
Let's start introspection using the first available node.
Note: To be introspected, a node must be in "manage" state. If needed, use Baremetal Service
to change the state with set_node_provision_state.
For more information, please refer to
http://docs.openstack.org/developer/ironic/deploy/install-guide.html#hardware-inspection
```ruby
node_id = nodes.body["nodes"][0]["uuid"]
inspector = Fog::OpenStack::Introspection.new(@connection_params)
introspection1 = inspector.create_introspection(node_id)
```
If everything went well the status returned by the request must be 202 which
means accepted:
```ruby
introspection1.status
=> 202
```
### Check introspection status
To check the status of the introspection:
```ruby
inspector.get_introspection(node_id)
```
The body returned has 2 fields:
* finished: A boolean, set to true if introspection process is finished
* error: A null string unless an error occurred or the process was canceled by
the operator (in case introspection was aborted)
### Abort an ongoing introspection
To abort a node introspection:
```ruby
inspector.abort_introspection(node_id)
```
### Retrieve introspected data
```ruby
inspector.get_introspection_details(node_id)
```
The response body will provide a *very* long list of information about the node.
## DSL rules
### Create rules
```ruby
rule_set1 = {
"description" => "Successful Rule",
"actions" => [
{
"action" => "set-attribute",
"path" => "/extra/rule_success",
"value" => "yes"
}
],
"conditions" => [
{
"field" => "memory_mb",
"op" => "ge",
"value" => 256
},
{
"field" => "local_gb",
"op" => "ge",
"value" => 1
}
]
}
rule_set2 = {
"description" => "Failing Rule",
"actions" => [
{
"action" => "set-attribute",
"path" => "/extra/rule_success",
"value" => "no"
},
{
"action" => "fail",
"message" => "This rule should not have run"
}
],
"conditions" => [
{
"field" => "memory_mb",
"op" => "lt",
"value" => 42
},
{
"field" => "local_gb",
"op" => "eq",
"value" => 0
}
],
}
inspector.create_rules(rule_set1)
inspector.create_rules(rule_set2)
```
### List all rules
```ruby
inspector.list_rules.body
=> {"rules"=>
[{"description"=>"Successful Rule",
"links"=>[{"href"=>"/v1/rules/4bf1bf40-d30f-4f31-a970-f0290d7e751b", "rel"=>"self"}],
"uuid"=>"4bf1bf40-d30f-4f31-a970-f0290d7e751b"},
{"description"=>"Failing Rule",
"links"=>[{"href"=>"/v1/rules/0d6e6687-3f69-4c14-8cab-ea6ada78036f", "rel"=>"self"}],
"uuid"=>"0d6e6687-3f69-4c14-8cab-ea6ada78036f"}]}
```
### Show rules details
```ruby
inspector.get_rules('0d6e6687-3f69-4c14-8cab-ea6ada78036f').body
=> {"actions"=>
[{"action"=>"set-attribute", "path"=>"/extra/rule_success", "value"=>"no"},
{"action"=>"fail", "message"=>"This rule should not have run"}],
"conditions"=>[{"field"=>"memory_mb", "op"=>"lt", "value"=>42}, {"field"=>"local_gb", "op"=>"eq", "value"=>0}],
"description"=>"Failing Rule",
"links"=>[{"href"=>"/v1/rules/0d6e6687-3f69-4c14-8cab-ea6ada78036f", "rel"=>"self"}],
"uuid"=>"0d6e6687-3f69-4c14-8cab-ea6ada78036f"}
```
### Delete a specific rules set
```ruby
inspector.delete_rules'0d6e6687-3f69-4c14-8cab-ea6ada78036f')
inspector.list_rules.body
=> {"rules"=>
[{"description"=>"Successful Rule",
"links"=>[{"href"=>"/v1/rules/4bf1bf40-d30f-4f31-a970-f0290d7e751b", "rel"=>"self"}],
"uuid"=>"4bf1bf40-d30f-4f31-a970-f0290d7e751b"}]}
```
### Destroys all rules
```ruby
inspector.delete_rules_all
inspector.list_rules.body
=> {"rules"=>[]}
```
|