Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 1 | |
Aleš Komárek | 7215285 | 2017-04-11 13:48:48 +0200 | [diff] [blame] | 2 | ============ |
| 3 | Nova Formula |
| 4 | ============ |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 5 | |
Jakub Pavlik | fcf34f8 | 2016-05-20 09:35:51 +0200 | [diff] [blame] | 6 | OpenStack Nova provides a cloud computing fabric controller, supporting a wide |
| 7 | variety of virtualization technologies, including KVM, Xen, LXC, VMware, and |
| 8 | more. In addition to its native API, it includes compatibility with the |
| 9 | commonly encountered Amazon EC2 and S3 APIs. |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 10 | |
Aleš Komárek | 7215285 | 2017-04-11 13:48:48 +0200 | [diff] [blame] | 11 | Sample Pillars |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 12 | ============== |
| 13 | |
| 14 | Controller nodes |
| 15 | ---------------- |
| 16 | |
| 17 | Nova services on the controller node |
| 18 | |
| 19 | .. code-block:: yaml |
| 20 | |
| 21 | nova: |
| 22 | controller: |
| 23 | version: juno |
| 24 | enabled: true |
| 25 | security_group: true |
Lachlan Evenson | b72de50 | 2016-01-20 15:34:04 -0800 | [diff] [blame] | 26 | cpu_allocation_ratio: 8.0 |
| 27 | ram_allocation_ratio: 1.0 |
Jiri Konecny | 9344a37 | 2016-03-21 19:25:48 +0100 | [diff] [blame] | 28 | disk_allocation_ratio: 1.0 |
Dmitry Stremkovskiy | 2bcba8d | 2017-07-30 21:43:59 +0300 | [diff] [blame] | 29 | cross_az_attach: false |
Jiri Konecny | b5a80e4 | 2016-03-22 11:51:01 +0100 | [diff] [blame] | 30 | workers: 8 |
Jakub Pavlik | 617a896 | 2016-09-04 18:50:06 +0200 | [diff] [blame] | 31 | report_interval: 60 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 32 | bind: |
| 33 | public_address: 10.0.0.122 |
| 34 | public_name: openstack.domain.com |
| 35 | novncproxy_port: 6080 |
| 36 | database: |
| 37 | engine: mysql |
| 38 | host: 127.0.0.1 |
| 39 | port: 3306 |
| 40 | name: nova |
| 41 | user: nova |
| 42 | password: pwd |
| 43 | identity: |
| 44 | engine: keystone |
| 45 | host: 127.0.0.1 |
| 46 | port: 35357 |
| 47 | user: nova |
| 48 | password: pwd |
| 49 | tenant: service |
| 50 | message_queue: |
| 51 | engine: rabbitmq |
| 52 | host: 127.0.0.1 |
| 53 | port: 5672 |
| 54 | user: openstack |
| 55 | password: pwd |
| 56 | virtual_host: '/openstack' |
| 57 | network: |
| 58 | engine: neutron |
| 59 | host: 127.0.0.1 |
| 60 | port: 9696 |
Jakub Pavlik | 617a896 | 2016-09-04 18:50:06 +0200 | [diff] [blame] | 61 | extension_sync_interval: 600 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 62 | identity: |
| 63 | engine: keystone |
| 64 | host: 127.0.0.1 |
| 65 | port: 35357 |
| 66 | user: neutron |
| 67 | password: pwd |
| 68 | tenant: service |
| 69 | metadata: |
| 70 | password: password |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 71 | audit: |
| 72 | enabled: false |
Simon Pasquier | 8683b7a | 2017-02-03 16:00:16 +0100 | [diff] [blame] | 73 | osapi_max_limit: 500 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 74 | |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 75 | |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 76 | Nova services from custom package repository |
| 77 | |
| 78 | .. code-block:: yaml |
| 79 | |
| 80 | nova: |
| 81 | controller: |
| 82 | version: juno |
| 83 | source: |
| 84 | engine: pkg |
| 85 | address: http://... |
| 86 | .... |
| 87 | |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 88 | |
| 89 | Client-side RabbitMQ HA setup |
| 90 | |
| 91 | .. code-block:: yaml |
| 92 | |
| 93 | nova: |
| 94 | controller: |
| 95 | .... |
| 96 | message_queue: |
| 97 | engine: rabbitmq |
| 98 | members: |
| 99 | - host: 10.0.16.1 |
| 100 | - host: 10.0.16.2 |
| 101 | - host: 10.0.16.3 |
| 102 | user: openstack |
| 103 | password: pwd |
| 104 | virtual_host: '/openstack' |
| 105 | .... |
| 106 | |
| 107 | |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 108 | Enable auditing filter, ie: CADF |
| 109 | |
| 110 | .. code-block:: yaml |
| 111 | |
| 112 | nova: |
| 113 | controller: |
Simon Pasquier | 6a3c8f7 | 2016-12-19 15:37:24 +0100 | [diff] [blame] | 114 | audit: |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 115 | enabled: true |
| 116 | .... |
| 117 | filter_factory: 'keystonemiddleware.audit:filter_factory' |
| 118 | map_file: '/etc/pycadf/nova_api_audit_map.conf' |
| 119 | .... |
| 120 | |
| 121 | |
Ondrej Smola | 25b53cb | 2017-04-28 10:56:19 +0200 | [diff] [blame] | 122 | Enable CORS parameters |
| 123 | |
| 124 | .. code-block:: yaml |
| 125 | |
| 126 | nova: |
| 127 | controller: |
| 128 | cors: |
| 129 | allowed_origin: https:localhost.local,http:localhost.local |
| 130 | expose_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 131 | allow_methods: GET,PUT,POST,DELETE,PATCH |
| 132 | allow_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 133 | allow_credentials: True |
| 134 | max_age: 86400 |
| 135 | |
Dmitry Ukov | 3562a08 | 2017-05-04 00:00:48 +0400 | [diff] [blame] | 136 | Configuration of policy.json file |
| 137 | |
| 138 | .. code-block:: yaml |
| 139 | |
| 140 | nova: |
| 141 | controller: |
| 142 | .... |
| 143 | policy: |
| 144 | context_is_admin: 'role:admin or role:administrator' |
| 145 | 'compute:create': 'rule:admin_or_owner' |
| 146 | # Add key without value to remove line from policy.json |
| 147 | 'compute:create:attach_network': |
Ondrej Smola | 25b53cb | 2017-04-28 10:56:19 +0200 | [diff] [blame] | 148 | |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 149 | Compute nodes |
| 150 | ------------- |
| 151 | |
| 152 | Nova controller services on compute node |
| 153 | |
| 154 | .. code-block:: yaml |
| 155 | |
| 156 | nova: |
| 157 | compute: |
| 158 | version: juno |
| 159 | enabled: true |
| 160 | virtualization: kvm |
Dmitry Stremkovskiy | 2bcba8d | 2017-07-30 21:43:59 +0300 | [diff] [blame] | 161 | cross_az_attach: false |
Dmitry Stremkovskiy | 35e53b7 | 2017-07-29 12:50:39 +0300 | [diff] [blame] | 162 | disk_cachemodes: network=writeback,block=none |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 163 | availability_zone: availability_zone_01 |
Damian Szeluga | e192241 | 2017-04-18 16:36:46 +0200 | [diff] [blame] | 164 | aggregates: |
| 165 | - hosts_with_fc |
| 166 | - hosts_with_ssd |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 167 | security_group: true |
Petr Michalec | f03e488 | 2017-04-10 10:26:18 +0200 | [diff] [blame] | 168 | resume_guests_state_on_host_boot: False |
Dmitry Stremkovskiy | 8a0ff51 | 2017-07-25 20:54:13 +0300 | [diff] [blame] | 169 | my_ip: 10.1.0.16 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 170 | bind: |
| 171 | vnc_address: 172.20.0.100 |
| 172 | vnc_port: 6080 |
| 173 | vnc_name: openstack.domain.com |
| 174 | vnc_protocol: http |
| 175 | database: |
| 176 | engine: mysql |
| 177 | host: 127.0.0.1 |
| 178 | port: 3306 |
| 179 | name: nova |
| 180 | user: nova |
| 181 | password: pwd |
| 182 | identity: |
| 183 | engine: keystone |
| 184 | host: 127.0.0.1 |
| 185 | port: 35357 |
| 186 | user: nova |
| 187 | password: pwd |
| 188 | tenant: service |
| 189 | message_queue: |
| 190 | engine: rabbitmq |
| 191 | host: 127.0.0.1 |
| 192 | port: 5672 |
| 193 | user: openstack |
| 194 | password: pwd |
| 195 | virtual_host: '/openstack' |
| 196 | image: |
| 197 | engine: glance |
| 198 | host: 127.0.0.1 |
| 199 | port: 9292 |
| 200 | network: |
| 201 | engine: neutron |
| 202 | host: 127.0.0.1 |
| 203 | port: 9696 |
| 204 | identity: |
| 205 | engine: keystone |
| 206 | host: 127.0.0.1 |
| 207 | port: 35357 |
| 208 | user: neutron |
| 209 | password: pwd |
| 210 | tenant: service |
| 211 | qemu: |
| 212 | max_files: 4096 |
| 213 | max_processes: 4096 |
Dmitry Stremkovskiy | 96281f5 | 2017-07-26 00:39:22 +0300 | [diff] [blame] | 214 | host: node-12.domain.tld |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 215 | |
Dmitry Stremkovskiy | 3cd6ba8 | 2017-07-25 17:15:36 +0300 | [diff] [blame] | 216 | Group membership for user nova (upgrade related) |
| 217 | |
| 218 | .. code-block:: yaml |
| 219 | |
| 220 | nova: |
| 221 | compute: |
| 222 | enabled: true |
| 223 | ... |
| 224 | user: |
| 225 | groups: |
| 226 | - libvirt |
| 227 | |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 228 | Nova services on compute node with OpenContrail |
| 229 | |
| 230 | .. code-block:: yaml |
| 231 | |
| 232 | nova: |
| 233 | compute: |
| 234 | enabled: true |
| 235 | ... |
| 236 | networking: contrail |
| 237 | |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 238 | |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 239 | Nova services on compute node with memcached caching |
| 240 | |
| 241 | .. code-block:: yaml |
| 242 | |
| 243 | nova: |
| 244 | compute: |
| 245 | enabled: true |
| 246 | ... |
| 247 | cache: |
| 248 | engine: memcached |
| 249 | members: |
| 250 | - host: 127.0.0.1 |
| 251 | port: 11211 |
| 252 | - host: 127.0.0.1 |
| 253 | port: 11211 |
| 254 | |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 255 | |
| 256 | Client-side RabbitMQ HA setup |
| 257 | |
| 258 | .. code-block:: yaml |
| 259 | |
| 260 | nova: |
| 261 | controller: |
| 262 | .... |
| 263 | message_queue: |
| 264 | engine: rabbitmq |
| 265 | members: |
| 266 | - host: 10.0.16.1 |
| 267 | - host: 10.0.16.2 |
| 268 | - host: 10.0.16.3 |
| 269 | user: openstack |
| 270 | password: pwd |
| 271 | virtual_host: '/openstack' |
| 272 | .... |
| 273 | |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 274 | |
| 275 | Nova with ephemeral configured with Ceph |
| 276 | |
| 277 | .. code-block:: yaml |
| 278 | |
| 279 | nova: |
| 280 | compute: |
| 281 | enabled: true |
| 282 | ... |
| 283 | ceph: |
| 284 | ephemeral: yes |
| 285 | rbd_pool: nova |
| 286 | rbd_user: nova |
| 287 | secret_uuid: 03006edd-d957-40a3-ac4c-26cd254b3731 |
Kalynovskyi | 0bc7969 | 2017-07-21 16:22:09 +0300 | [diff] [blame^] | 288 | .... |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 289 | |
Kalynovskyi | 0bc7969 | 2017-07-21 16:22:09 +0300 | [diff] [blame^] | 290 | Nova with ephemeral configured with LVM |
| 291 | |
| 292 | .. code-block:: yaml |
| 293 | |
| 294 | nova: |
| 295 | compute: |
| 296 | enabled: true |
| 297 | ... |
| 298 | lvm: |
| 299 | ephemeral: yes |
| 300 | images_volume_group: nova_vg |
| 301 | |
| 302 | linux: |
| 303 | storage: |
| 304 | lvm: |
| 305 | nova_vg: |
| 306 | name: nova_vg |
| 307 | devices: |
| 308 | - /dev/sdf |
| 309 | - /dev/sdd |
| 310 | - /dev/sdg |
| 311 | - /dev/sde |
| 312 | - /dev/sdc |
| 313 | - /dev/sdj |
| 314 | - /dev/sdh |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 315 | |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 316 | Client role |
| 317 | ----------- |
| 318 | |
Dmitry Stremkovskiy | 665c728 | 2017-07-05 17:36:27 +0300 | [diff] [blame] | 319 | Nova configured with NFS |
| 320 | |
| 321 | .. code-block:: yaml |
| 322 | |
| 323 | nova: |
| 324 | compute: |
| 325 | instances_path: /mnt/nova/instances |
| 326 | |
| 327 | linux: |
| 328 | storage: |
| 329 | enabled: true |
| 330 | mount: |
| 331 | nfs_nova: |
| 332 | enabled: true |
| 333 | path: ${nova:compute:instances_path} |
| 334 | device: 172.31.35.145:/data |
| 335 | file_system: nfs |
| 336 | opts: rw,vers=3 |
| 337 | |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 338 | Nova flavors |
| 339 | |
| 340 | .. code-block:: yaml |
| 341 | |
| 342 | nova: |
| 343 | client: |
| 344 | enabled: true |
| 345 | server: |
| 346 | identity: |
| 347 | flavor: |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 348 | flavor1: |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 349 | flavor_id: 10 |
| 350 | ram: 4096 |
| 351 | disk: 10 |
| 352 | vcpus: 1 |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 353 | flavor2: |
| 354 | flavor_id: auto |
| 355 | ram: 4096 |
| 356 | disk: 20 |
| 357 | vcpus: 2 |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 358 | identity1: |
| 359 | flavor: |
| 360 | ... |
| 361 | |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 362 | |
| 363 | Availability zones |
| 364 | |
| 365 | .. code-block:: yaml |
| 366 | |
| 367 | nova: |
| 368 | client: |
| 369 | enabled: true |
| 370 | server: |
| 371 | identity: |
| 372 | availability_zones: |
| 373 | - availability_zone_01 |
| 374 | - availability_zone_02 |
| 375 | |
Damian Szeluga | 5dca0f0 | 2017-04-13 17:27:15 +0200 | [diff] [blame] | 376 | |
| 377 | |
| 378 | Aggregates |
| 379 | |
| 380 | .. code-block:: yaml |
| 381 | |
| 382 | nova: |
| 383 | client: |
| 384 | enabled: true |
| 385 | server: |
| 386 | identity: |
| 387 | aggregates: |
| 388 | - aggregate1 |
| 389 | - aggregate2 |
| 390 | |
Dmitry Stremkovskiy | 91f4585 | 2017-07-18 16:22:31 +0300 | [diff] [blame] | 391 | Upgrade levels |
| 392 | |
| 393 | .. code-block:: yaml |
| 394 | |
| 395 | nova: |
| 396 | controller: |
| 397 | upgrade_levels: |
| 398 | compute: juno |
| 399 | |
| 400 | nova: |
| 401 | compute: |
| 402 | upgrade_levels: |
| 403 | compute: juno |
| 404 | |
Petr Jediný | d855ef2 | 2017-03-06 22:24:33 +0100 | [diff] [blame] | 405 | SR-IOV |
Jakub Pavlik | 39a0594 | 2017-02-13 23:03:08 +0100 | [diff] [blame] | 406 | ------ |
| 407 | |
| 408 | Add PciPassthroughFilter into scheduler filters and NICs on specific compute nodes. |
| 409 | |
| 410 | .. code-block:: yaml |
| 411 | |
| 412 | nova: |
| 413 | controller: |
| 414 | sriov: true |
| 415 | scheduler_default_filters: "DifferentHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,PciPassthroughFilter" |
| 416 | |
| 417 | nova: |
| 418 | compute: |
| 419 | sriov: |
| 420 | nic_one: |
| 421 | devname: eth1 |
| 422 | physical_network: physnet1 |
| 423 | |
Jakub Pavlik | 26fb85c | 2017-02-16 22:29:22 +0100 | [diff] [blame] | 424 | CPU pinning & Hugepages |
| 425 | ----------------------- |
| 426 | |
| 427 | CPU pinning of virtual machine instances to dedicated physical CPU cores. |
| 428 | Hugepages mount point for libvirt. |
| 429 | |
| 430 | .. code-block:: yaml |
| 431 | |
| 432 | nova: |
| 433 | controller: |
| 434 | scheduler_default_filters: "DifferentHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,NUMATopologyFilter,AggregateInstanceExtraSpecsFilter" |
| 435 | |
| 436 | nova: |
| 437 | compute: |
| 438 | vcpu_pin_set: 2,3,4,5 |
| 439 | hugepages: |
| 440 | mount_points: |
| 441 | - path: /mnt/hugepages_1GB |
| 442 | - path: /mnt/hugepages_2MB |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 443 | |
Michel Nederlof | 171c7ac | 2017-04-13 12:54:14 +0200 | [diff] [blame] | 444 | Custom Scheduler filters |
| 445 | ------------------------ |
| 446 | |
| 447 | If you have a custom filter, that needs to be included in the scheduler, then you can include it like so: |
| 448 | |
| 449 | .. code-block:: yaml |
| 450 | |
| 451 | nova: |
| 452 | controller: |
| 453 | scheduler_custom_filters: |
| 454 | - my_custom_driver.nova.scheduler.filters.my_custom_filter.MyCustomFilter |
| 455 | |
| 456 | # Then add your custom filter on the end (make sure to include all other ones that you need as well) |
| 457 | scheduler_default_filters: "DifferentHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,PciPassthroughFilter,MyCustomFilter" |
| 458 | |
Michel Nederlof | eb566f6 | 2017-04-21 15:37:47 +0200 | [diff] [blame] | 459 | Hardware Trip/Unmap Support |
| 460 | --------------------------- |
| 461 | |
| 462 | To enable TRIM support for ephemeral images (thru nova managed images), libvirt has this option. |
| 463 | |
| 464 | .. code-block:: yaml |
| 465 | |
| 466 | nova: |
| 467 | compute: |
| 468 | libvirt: |
| 469 | hw_disk_discard: unmap |
| 470 | |
| 471 | In order to actually utilize this feature, the following metadata must be set on the image as well, so the SCSI unmap is supported. |
| 472 | |
| 473 | .. code-block:: bash |
| 474 | |
| 475 | glance image-update --property hw_scsi_model=virtio-scsi <image> |
| 476 | glance image-update --property hw_disk_bus=scsi <image> |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 477 | |
Thom Gerdes | ec00afd | 2017-04-07 18:06:59 +0000 | [diff] [blame] | 478 | libvirt CPU mode |
| 479 | ---------------- |
| 480 | |
| 481 | Allow setting the model of CPU that is exposed to a VM. This allows better |
| 482 | support live migration between hypervisors with different hardware, among other |
| 483 | things. Defaults to host-passthrough. |
| 484 | |
| 485 | .. code-block:: yaml |
| 486 | |
| 487 | nova: |
| 488 | compute: |
| 489 | cpu_mode: host-model |
| 490 | |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 491 | Nova compute workarounds |
| 492 | ------------------------ |
| 493 | |
| 494 | Live snapshotting is disabled by default in nova. To enable this, it needs a manual switch. |
| 495 | |
| 496 | From manual: |
| 497 | |
| 498 | .. code-block:: yaml |
| 499 | |
| 500 | # When using libvirt 1.2.2 live snapshots fail intermittently under load |
| 501 | # (likely related to concurrent libvirt/qemu operations). This config |
| 502 | # option provides a mechanism to disable live snapshot, in favor of cold |
| 503 | # snapshot, while this is resolved. Cold snapshot causes an instance |
| 504 | # outage while the guest is going through the snapshotting process. |
| 505 | # |
| 506 | # For more information, refer to the bug report: |
| 507 | # |
| 508 | # https://bugs.launchpad.net/nova/+bug/1334398 |
| 509 | |
| 510 | Configurable pillar data: |
| 511 | |
| 512 | .. code-block:: yaml |
| 513 | |
| 514 | nova: |
| 515 | compute: |
Michel Nederlof | e322ebb | 2017-07-10 12:29:21 +0200 | [diff] [blame] | 516 | workaround: |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 517 | disable_libvirt_livesnapshot: False |
| 518 | |
Michel Nederlof | b51a514 | 2017-06-27 08:31:35 +0200 | [diff] [blame] | 519 | Config drive options |
| 520 | -------------------- |
| 521 | |
| 522 | See example below on how to configure the options for the config drive. |
| 523 | |
| 524 | .. code-block:: yaml |
| 525 | |
| 526 | nova: |
| 527 | compute: |
| 528 | config_drive: |
| 529 | forced: True # Default: True |
| 530 | cdrom: True # Default: False |
| 531 | format: iso9660 # Default: vfat |
| 532 | inject_password: False # Default: False |
| 533 | |
Thom Gerdes | ec00afd | 2017-04-07 18:06:59 +0000 | [diff] [blame] | 534 | |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 535 | Documentation and Bugs |
| 536 | ====================== |
| 537 | |
| 538 | To learn how to install and update salt-formulas, consult the documentation |
| 539 | available online at: |
| 540 | |
| 541 | http://salt-formulas.readthedocs.io/ |
| 542 | |
| 543 | In the unfortunate event that bugs are discovered, they should be reported to |
| 544 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 545 | formula: |
| 546 | |
| 547 | https://github.com/salt-formulas/salt-formula-nova/issues |
| 548 | |
| 549 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 550 | use Launchpad salt-formulas project: |
| 551 | |
| 552 | https://launchpad.net/salt-formulas |
| 553 | |
| 554 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 555 | |
| 556 | https://launchpad.net/~salt-formulas-users |
| 557 | |
| 558 | Developers wishing to work on the salt-formulas projects should always base |
| 559 | their work on master branch and submit pull request against specific formula. |
| 560 | |
| 561 | https://github.com/salt-formulas/salt-formula-nova |
| 562 | |
| 563 | Any questions or feedback is always welcome so feel free to join our IRC |
| 564 | channel: |
| 565 | |
| 566 | #salt-formulas @ irc.freenode.net |