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 | ============ |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 3 | Usage |
Aleš Komárek | 7215285 | 2017-04-11 13:48:48 +0200 | [diff] [blame] | 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 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 17 | Nova services on the controller node: |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 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 |
Michel Nederlof | 8ff9933 | 2017-10-23 14:29:15 +0200 | [diff] [blame] | 32 | dhcp_domain: novalocal |
Gleb Galkin | 32a5409 | 2018-10-02 17:16:40 +0300 | [diff] [blame] | 33 | consoleauth_token_ttl: 600 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 34 | bind: |
| 35 | public_address: 10.0.0.122 |
| 36 | public_name: openstack.domain.com |
| 37 | novncproxy_port: 6080 |
| 38 | database: |
| 39 | engine: mysql |
| 40 | host: 127.0.0.1 |
| 41 | port: 3306 |
| 42 | name: nova |
| 43 | user: nova |
| 44 | password: pwd |
| 45 | identity: |
| 46 | engine: keystone |
| 47 | host: 127.0.0.1 |
| 48 | port: 35357 |
| 49 | user: nova |
| 50 | password: pwd |
| 51 | tenant: service |
| 52 | message_queue: |
| 53 | engine: rabbitmq |
| 54 | host: 127.0.0.1 |
| 55 | port: 5672 |
| 56 | user: openstack |
| 57 | password: pwd |
| 58 | virtual_host: '/openstack' |
Oleh Hryhorov | f5093b8 | 2018-10-17 11:16:08 +0000 | [diff] [blame] | 59 | pci: |
| 60 | alias: |
| 61 | alias1: |
| 62 | device_type: "type-PF" |
| 63 | name: "a1" |
| 64 | product_id: "154d" |
| 65 | vendor_id: "8086" |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 66 | network: |
| 67 | engine: neutron |
| 68 | host: 127.0.0.1 |
| 69 | port: 9696 |
Jakub Pavlik | 617a896 | 2016-09-04 18:50:06 +0200 | [diff] [blame] | 70 | extension_sync_interval: 600 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 71 | identity: |
| 72 | engine: keystone |
| 73 | host: 127.0.0.1 |
| 74 | port: 35357 |
| 75 | user: neutron |
| 76 | password: pwd |
| 77 | tenant: service |
| 78 | metadata: |
| 79 | password: password |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 80 | audit: |
| 81 | enabled: false |
Simon Pasquier | 8683b7a | 2017-02-03 16:00:16 +0100 | [diff] [blame] | 82 | osapi_max_limit: 500 |
Oleg Iurchenko | 370c10d | 2017-10-19 14:03:37 +0300 | [diff] [blame] | 83 | barbican: |
| 84 | enabled: true |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 85 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 86 | Nova services from custom package repository: |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 87 | |
| 88 | .. code-block:: yaml |
| 89 | |
| 90 | nova: |
| 91 | controller: |
| 92 | version: juno |
| 93 | source: |
| 94 | engine: pkg |
| 95 | address: http://... |
| 96 | .... |
| 97 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 98 | Client-side RabbitMQ HA setup: |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 99 | |
| 100 | .. code-block:: yaml |
| 101 | |
| 102 | nova: |
| 103 | controller: |
| 104 | .... |
| 105 | message_queue: |
| 106 | engine: rabbitmq |
| 107 | members: |
| 108 | - host: 10.0.16.1 |
| 109 | - host: 10.0.16.2 |
| 110 | - host: 10.0.16.3 |
| 111 | user: openstack |
| 112 | password: pwd |
| 113 | virtual_host: '/openstack' |
| 114 | .... |
| 115 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 116 | Enable auditing filter, i.e: CADF: |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 117 | |
| 118 | .. code-block:: yaml |
| 119 | |
| 120 | nova: |
| 121 | controller: |
Simon Pasquier | 6a3c8f7 | 2016-12-19 15:37:24 +0100 | [diff] [blame] | 122 | audit: |
Petr Michalec | aa23dc0 | 2016-11-29 16:30:25 +0100 | [diff] [blame] | 123 | enabled: true |
| 124 | .... |
| 125 | filter_factory: 'keystonemiddleware.audit:filter_factory' |
| 126 | map_file: '/etc/pycadf/nova_api_audit_map.conf' |
| 127 | .... |
| 128 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 129 | Enable CORS parameters: |
Ondrej Smola | 25b53cb | 2017-04-28 10:56:19 +0200 | [diff] [blame] | 130 | |
| 131 | .. code-block:: yaml |
| 132 | |
| 133 | nova: |
| 134 | controller: |
| 135 | cors: |
| 136 | allowed_origin: https:localhost.local,http:localhost.local |
| 137 | expose_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 138 | allow_methods: GET,PUT,POST,DELETE,PATCH |
| 139 | allow_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 140 | allow_credentials: True |
| 141 | max_age: 86400 |
| 142 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 143 | Configuration of the ``policy.json`` file: |
Dmitry Ukov | 3562a08 | 2017-05-04 00:00:48 +0400 | [diff] [blame] | 144 | |
| 145 | .. code-block:: yaml |
| 146 | |
| 147 | nova: |
| 148 | controller: |
| 149 | .... |
| 150 | policy: |
| 151 | context_is_admin: 'role:admin or role:administrator' |
| 152 | 'compute:create': 'rule:admin_or_owner' |
| 153 | # Add key without value to remove line from policy.json |
| 154 | 'compute:create:attach_network': |
Ondrej Smola | 25b53cb | 2017-04-28 10:56:19 +0200 | [diff] [blame] | 155 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 156 | Enable Barbican integration: |
Oleg Iurchenko | 370c10d | 2017-10-19 14:03:37 +0300 | [diff] [blame] | 157 | |
| 158 | .. code-block:: yaml |
| 159 | |
| 160 | nova: |
| 161 | controller: |
| 162 | .... |
| 163 | barbican: |
| 164 | enabled: true |
| 165 | |
Oleh Hryhorov | f5093b8 | 2018-10-17 11:16:08 +0000 | [diff] [blame] | 166 | Define aliases for PCI devices: |
| 167 | .. code-block:: yaml |
| 168 | |
| 169 | nova: |
| 170 | controller: |
| 171 | ... |
| 172 | pci: |
| 173 | alias: |
| 174 | alias1: |
| 175 | device_type: "type-PF" |
| 176 | name: "a1" |
| 177 | product_id: "154d" |
| 178 | vendor_id: "8086" |
| 179 | |
Jiri Broulik | 789179a | 2018-02-13 16:16:46 +0100 | [diff] [blame] | 180 | Enable cells update: |
| 181 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 182 | .. note:: Useful when upgrading Openstack. To update cells to test |
| 183 | sync db agains duplicated production database. |
Jiri Broulik | 789179a | 2018-02-13 16:16:46 +0100 | [diff] [blame] | 184 | |
| 185 | .. code-block:: yaml |
| 186 | |
| 187 | nova: |
| 188 | controller: |
| 189 | update_cells: true |
| 190 | |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 191 | |
Kirill Bespalov | a0eaca7 | 2017-11-20 13:40:42 +0300 | [diff] [blame] | 192 | Configuring TLS communications |
| 193 | ------------------------------ |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 194 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 195 | .. note:: By default system wide installed CA certs are used, |
| 196 | so ``cacert_file`` param is optional, as well as ``cacert``. |
Kirill Bespalov | a0eaca7 | 2017-11-20 13:40:42 +0300 | [diff] [blame] | 197 | |
| 198 | - **RabbitMQ TLS** |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 199 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 200 | .. code-block:: yaml |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 201 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 202 | nova: |
| 203 | compute: |
| 204 | message_queue: |
| 205 | port: 5671 |
| 206 | ssl: |
| 207 | enabled: True |
| 208 | (optional) cacert: cert body if the cacert_file does not exists |
| 209 | (optional) cacert_file: /etc/openstack/rabbitmq-ca.pem |
| 210 | (optional) version: TLSv1_2 |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 211 | |
Kirill Bespalov | a0eaca7 | 2017-11-20 13:40:42 +0300 | [diff] [blame] | 212 | - **MySQL TLS** |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 213 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 214 | .. code-block:: yaml |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 215 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 216 | nova: |
| 217 | controller: |
| 218 | database: |
| 219 | ssl: |
| 220 | enabled: True |
| 221 | (optional) cacert: cert body if the cacert_file does not exists |
| 222 | (optional) cacert_file: /etc/openstack/mysql-ca.pem |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 223 | |
Kirill Bespalov | a0eaca7 | 2017-11-20 13:40:42 +0300 | [diff] [blame] | 224 | - **Openstack HTTPS API** |
| 225 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 226 | Set the ``https`` as protocol at ``nova:compute`` and |
| 227 | ``nova:controller`` sections : |
Kirill Bespalov | a0eaca7 | 2017-11-20 13:40:42 +0300 | [diff] [blame] | 228 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 229 | .. code-block:: yaml |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 230 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 231 | nova: |
| 232 | controller : |
| 233 | identity: |
| 234 | protocol: https |
| 235 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 236 | network: |
| 237 | protocol: https |
| 238 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 239 | glance: |
| 240 | protocol: https |
| 241 | (optional) cacert_file: /etc/openstack/proxy.pem |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 242 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 243 | .. code-block:: yaml |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 244 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 245 | nova: |
| 246 | compute: |
| 247 | identity: |
| 248 | protocol: https |
| 249 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 250 | network: |
| 251 | protocol: https |
| 252 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 253 | image: |
| 254 | protocol: https |
| 255 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 256 | ironic: |
| 257 | protocol: https |
| 258 | (optional) cacert_file: /etc/openstack/proxy.pem |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 259 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 260 | .. note:: Barbican, Cinder, and placement url endpoints are discovering |
| 261 | using service catalog. |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 262 | |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 263 | Compute nodes |
| 264 | ------------- |
| 265 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 266 | Nova controller services on compute node: |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 267 | |
| 268 | .. code-block:: yaml |
| 269 | |
| 270 | nova: |
| 271 | compute: |
| 272 | version: juno |
| 273 | enabled: true |
Dmitry Stremkovskiy | 2bcba8d | 2017-07-30 21:43:59 +0300 | [diff] [blame] | 274 | cross_az_attach: false |
Dmitry Stremkovskiy | 35e53b7 | 2017-07-29 12:50:39 +0300 | [diff] [blame] | 275 | disk_cachemodes: network=writeback,block=none |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 276 | availability_zone: availability_zone_01 |
Damian Szeluga | e192241 | 2017-04-18 16:36:46 +0200 | [diff] [blame] | 277 | aggregates: |
| 278 | - hosts_with_fc |
| 279 | - hosts_with_ssd |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 280 | security_group: true |
Petr Michalec | f03e488 | 2017-04-10 10:26:18 +0200 | [diff] [blame] | 281 | resume_guests_state_on_host_boot: False |
Michael Polenchuk | 159c254 | 2018-06-09 15:31:51 +0400 | [diff] [blame] | 282 | preallocate_images: space # Default is 'none' |
Dmitry Stremkovskiy | 8a0ff51 | 2017-07-25 20:54:13 +0300 | [diff] [blame] | 283 | my_ip: 10.1.0.16 |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 284 | bind: |
| 285 | vnc_address: 172.20.0.100 |
| 286 | vnc_port: 6080 |
| 287 | vnc_name: openstack.domain.com |
| 288 | vnc_protocol: http |
| 289 | database: |
| 290 | engine: mysql |
| 291 | host: 127.0.0.1 |
| 292 | port: 3306 |
| 293 | name: nova |
| 294 | user: nova |
| 295 | password: pwd |
| 296 | identity: |
| 297 | engine: keystone |
| 298 | host: 127.0.0.1 |
| 299 | port: 35357 |
| 300 | user: nova |
| 301 | password: pwd |
| 302 | tenant: service |
| 303 | message_queue: |
| 304 | engine: rabbitmq |
| 305 | host: 127.0.0.1 |
| 306 | port: 5672 |
| 307 | user: openstack |
| 308 | password: pwd |
| 309 | virtual_host: '/openstack' |
| 310 | image: |
| 311 | engine: glance |
| 312 | host: 127.0.0.1 |
| 313 | port: 9292 |
Oleh Hryhorov | f5093b8 | 2018-10-17 11:16:08 +0000 | [diff] [blame] | 314 | pci: |
| 315 | alias: |
| 316 | alias1: |
| 317 | device_type: "type-PF" |
| 318 | name: "a1" |
| 319 | product_id: "154d" |
| 320 | vendor_id: "8086" |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 321 | network: |
| 322 | engine: neutron |
| 323 | host: 127.0.0.1 |
| 324 | port: 9696 |
| 325 | identity: |
| 326 | engine: keystone |
| 327 | host: 127.0.0.1 |
| 328 | port: 35357 |
| 329 | user: neutron |
| 330 | password: pwd |
| 331 | tenant: service |
| 332 | qemu: |
| 333 | max_files: 4096 |
| 334 | max_processes: 4096 |
Dmitry Stremkovskiy | 96281f5 | 2017-07-26 00:39:22 +0300 | [diff] [blame] | 335 | host: node-12.domain.tld |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 336 | |
Vasyl Saienko | cab3a90 | 2018-07-12 13:17:17 +0300 | [diff] [blame] | 337 | Compute with vmware driver. Each vmware cluster requires a separate process of nova-compute. |
| 338 | Each process should have uniq host identifier. However multiple computes might be running on |
| 339 | single host. It is not recommended to have multiple computes running on different hosts that |
| 340 | manage the same vmware cluster. To achive this pacemaker/corosync or keepalived might be used. |
| 341 | |
| 342 | .. code-block:: yaml |
| 343 | |
| 344 | nova: |
| 345 | compute: |
| 346 | compute_driver: vmwareapi.VMwareVCDriver |
| 347 | vmware: |
| 348 | host_username: vmware |
| 349 | host_password: vmware |
| 350 | cluster_name: vmware_cluster01 |
| 351 | host_ip: 1.2.3.4 |
| 352 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 353 | Group and user to be used for QEMU processes run by the system instance: |
kkalynovskyi | f50f0c0 | 2017-12-12 17:52:57 +0200 | [diff] [blame] | 354 | |
| 355 | .. code-block:: yaml |
| 356 | |
| 357 | nova: |
| 358 | compute: |
| 359 | enabled: true |
| 360 | ... |
| 361 | qemu: |
| 362 | user: nova |
| 363 | group: cinder |
| 364 | dynamic_ownership: 1 |
| 365 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 366 | Group membership for user nova (upgrade related): |
Dmitry Stremkovskiy | 3cd6ba8 | 2017-07-25 17:15:36 +0300 | [diff] [blame] | 367 | |
| 368 | .. code-block:: yaml |
| 369 | |
| 370 | nova: |
| 371 | compute: |
| 372 | enabled: true |
| 373 | ... |
| 374 | user: |
| 375 | groups: |
| 376 | - libvirt |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 377 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 378 | Nova services on compute node with OpenContrail: |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 379 | |
| 380 | .. code-block:: yaml |
| 381 | |
| 382 | nova: |
| 383 | compute: |
| 384 | enabled: true |
| 385 | ... |
| 386 | networking: contrail |
| 387 | |
Oleksandr Bryndzii | bb8abfe | 2018-09-28 22:21:43 +0000 | [diff] [blame] | 388 | Nova services on compute node with memcached caching and security strategy: |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 389 | |
| 390 | .. code-block:: yaml |
| 391 | |
| 392 | nova: |
| 393 | compute: |
| 394 | enabled: true |
| 395 | ... |
| 396 | cache: |
| 397 | engine: memcached |
| 398 | members: |
| 399 | - host: 127.0.0.1 |
| 400 | port: 11211 |
| 401 | - host: 127.0.0.1 |
| 402 | port: 11211 |
Oleksandr Bryndzii | bb8abfe | 2018-09-28 22:21:43 +0000 | [diff] [blame] | 403 | security: |
| 404 | enabled: true |
| 405 | strategy: ENCRYPT |
| 406 | secret_key: secret |
Filip Pytloun | 4a72d79 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 407 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 408 | Client-side RabbitMQ HA setup: |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 409 | |
| 410 | .. code-block:: yaml |
| 411 | |
| 412 | nova: |
Kirill Bespalov | 6461717 | 2017-07-11 14:43:14 +0300 | [diff] [blame] | 413 | compute: |
Jiri Konecny | e31f2c5 | 2016-04-14 17:16:02 +0200 | [diff] [blame] | 414 | .... |
| 415 | message_queue: |
| 416 | engine: rabbitmq |
| 417 | members: |
| 418 | - host: 10.0.16.1 |
| 419 | - host: 10.0.16.2 |
| 420 | - host: 10.0.16.3 |
| 421 | user: openstack |
| 422 | password: pwd |
| 423 | virtual_host: '/openstack' |
| 424 | .... |
| 425 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 426 | Nova with ephemeral configured with Ceph: |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 427 | |
| 428 | .. code-block:: yaml |
| 429 | |
| 430 | nova: |
| 431 | compute: |
| 432 | enabled: true |
| 433 | ... |
| 434 | ceph: |
| 435 | ephemeral: yes |
| 436 | rbd_pool: nova |
| 437 | rbd_user: nova |
| 438 | secret_uuid: 03006edd-d957-40a3-ac4c-26cd254b3731 |
Kalynovskyi | 0bc7969 | 2017-07-21 16:22:09 +0300 | [diff] [blame] | 439 | .... |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 440 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 441 | Nova with ephemeral configured with LVM: |
Kalynovskyi | 0bc7969 | 2017-07-21 16:22:09 +0300 | [diff] [blame] | 442 | |
| 443 | .. code-block:: yaml |
| 444 | |
| 445 | nova: |
| 446 | compute: |
| 447 | enabled: true |
| 448 | ... |
| 449 | lvm: |
| 450 | ephemeral: yes |
| 451 | images_volume_group: nova_vg |
| 452 | |
| 453 | linux: |
| 454 | storage: |
| 455 | lvm: |
| 456 | nova_vg: |
| 457 | name: nova_vg |
| 458 | devices: |
| 459 | - /dev/sdf |
| 460 | - /dev/sdd |
| 461 | - /dev/sdg |
| 462 | - /dev/sde |
| 463 | - /dev/sdc |
| 464 | - /dev/sdj |
| 465 | - /dev/sdh |
maxstack | 39e6aca | 2016-05-04 13:50:13 +0000 | [diff] [blame] | 466 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 467 | Enable Barbican integration: |
Oleg Iurchenko | 370c10d | 2017-10-19 14:03:37 +0300 | [diff] [blame] | 468 | |
| 469 | .. code-block:: yaml |
| 470 | |
| 471 | nova: |
| 472 | compute: |
| 473 | .... |
| 474 | barbican: |
| 475 | enabled: true |
| 476 | |
Oleh Hryhorov | f5093b8 | 2018-10-17 11:16:08 +0000 | [diff] [blame] | 477 | Define aliases for PCI devices: |
| 478 | .. code-block:: yaml |
| 479 | |
| 480 | nova: |
| 481 | compute: |
| 482 | ... |
| 483 | pci: |
| 484 | alias: |
| 485 | alias1: |
| 486 | device_type: "type-PF" |
| 487 | name: "a1" |
| 488 | product_id: "154d" |
| 489 | vendor_id: "8086" |
| 490 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 491 | Nova metadata custom bindings: |
Vasyl Saienko | 2d59128 | 2018-02-05 14:19:02 +0200 | [diff] [blame] | 492 | |
| 493 | .. code-block:: yaml |
| 494 | |
| 495 | nova: |
| 496 | controller: |
| 497 | enabled: true |
| 498 | ... |
| 499 | metadata: |
| 500 | bind: |
| 501 | address: 1.2.3.4 |
| 502 | port: 8776 |
| 503 | |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 504 | Client role |
| 505 | ----------- |
| 506 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 507 | Nova configured with NFS: |
Dmitry Stremkovskiy | 665c728 | 2017-07-05 17:36:27 +0300 | [diff] [blame] | 508 | |
| 509 | .. code-block:: yaml |
| 510 | |
| 511 | nova: |
| 512 | compute: |
| 513 | instances_path: /mnt/nova/instances |
| 514 | |
| 515 | linux: |
| 516 | storage: |
| 517 | enabled: true |
| 518 | mount: |
| 519 | nfs_nova: |
| 520 | enabled: true |
| 521 | path: ${nova:compute:instances_path} |
| 522 | device: 172.31.35.145:/data |
| 523 | file_system: nfs |
| 524 | opts: rw,vers=3 |
| 525 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 526 | Nova flavors: |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 527 | |
| 528 | .. code-block:: yaml |
| 529 | |
| 530 | nova: |
| 531 | client: |
| 532 | enabled: true |
| 533 | server: |
| 534 | identity: |
| 535 | flavor: |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 536 | flavor1: |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 537 | flavor_id: 10 |
| 538 | ram: 4096 |
| 539 | disk: 10 |
| 540 | vcpus: 1 |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 541 | flavor2: |
| 542 | flavor_id: auto |
| 543 | ram: 4096 |
| 544 | disk: 20 |
| 545 | vcpus: 2 |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 546 | identity1: |
| 547 | flavor: |
| 548 | ... |
| 549 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 550 | Availability zones: |
Jiri Broulik | 70d9e3f | 2017-02-15 18:37:13 +0100 | [diff] [blame] | 551 | |
| 552 | .. code-block:: yaml |
| 553 | |
| 554 | nova: |
| 555 | client: |
| 556 | enabled: true |
| 557 | server: |
| 558 | identity: |
| 559 | availability_zones: |
| 560 | - availability_zone_01 |
| 561 | - availability_zone_02 |
| 562 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 563 | Aggregates: |
Damian Szeluga | 5dca0f0 | 2017-04-13 17:27:15 +0200 | [diff] [blame] | 564 | |
| 565 | .. code-block:: yaml |
| 566 | |
| 567 | nova: |
| 568 | client: |
| 569 | enabled: true |
| 570 | server: |
| 571 | identity: |
| 572 | aggregates: |
| 573 | - aggregate1 |
| 574 | - aggregate2 |
| 575 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 576 | Upgrade levels: |
Dmitry Stremkovskiy | 91f4585 | 2017-07-18 16:22:31 +0300 | [diff] [blame] | 577 | |
| 578 | .. code-block:: yaml |
| 579 | |
| 580 | nova: |
| 581 | controller: |
| 582 | upgrade_levels: |
| 583 | compute: juno |
| 584 | |
| 585 | nova: |
| 586 | compute: |
| 587 | upgrade_levels: |
| 588 | compute: juno |
| 589 | |
Petr Jediný | d855ef2 | 2017-03-06 22:24:33 +0100 | [diff] [blame] | 590 | SR-IOV |
Jakub Pavlik | 39a0594 | 2017-02-13 23:03:08 +0100 | [diff] [blame] | 591 | ------ |
| 592 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 593 | Add ``PciPassthroughFilter`` into scheduler filters and NICs on |
| 594 | specific compute nodes: |
Jakub Pavlik | 39a0594 | 2017-02-13 23:03:08 +0100 | [diff] [blame] | 595 | |
| 596 | .. code-block:: yaml |
| 597 | |
| 598 | nova: |
| 599 | controller: |
| 600 | sriov: true |
sandriichenko | 4fe321d | 2018-01-22 17:34:06 +0000 | [diff] [blame] | 601 | scheduler_default_filters: "DifferentHostFilter,SameHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,PciPassthroughFilter" |
Jakub Pavlik | 39a0594 | 2017-02-13 23:03:08 +0100 | [diff] [blame] | 602 | |
| 603 | nova: |
| 604 | compute: |
| 605 | sriov: |
| 606 | nic_one: |
| 607 | devname: eth1 |
| 608 | physical_network: physnet1 |
| 609 | |
Oleh Hryhorov | f5093b8 | 2018-10-17 11:16:08 +0000 | [diff] [blame] | 610 | .. note:: Parameters located under nova:compute:sriov:<nic_name> are copied to passthrough_whitelist parameter into |
| 611 | nova.conf file in appropriate format. |
| 612 | |
Jakub Pavlik | 26fb85c | 2017-02-16 22:29:22 +0100 | [diff] [blame] | 613 | CPU pinning & Hugepages |
| 614 | ----------------------- |
| 615 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 616 | CPU pinning of virtual machine instances to dedicated physical |
| 617 | CPU cores. Hugepages mount point for libvirt. |
Jakub Pavlik | 26fb85c | 2017-02-16 22:29:22 +0100 | [diff] [blame] | 618 | |
| 619 | .. code-block:: yaml |
| 620 | |
| 621 | nova: |
| 622 | controller: |
sandriichenko | 4fe321d | 2018-01-22 17:34:06 +0000 | [diff] [blame] | 623 | scheduler_default_filters: "DifferentHostFilter,SameHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,NUMATopologyFilter,AggregateInstanceExtraSpecsFilter" |
Jakub Pavlik | 26fb85c | 2017-02-16 22:29:22 +0100 | [diff] [blame] | 624 | |
| 625 | nova: |
| 626 | compute: |
| 627 | vcpu_pin_set: 2,3,4,5 |
| 628 | hugepages: |
| 629 | mount_points: |
| 630 | - path: /mnt/hugepages_1GB |
| 631 | - path: /mnt/hugepages_2MB |
Jiri Broulik | 0ce9fc9 | 2017-02-01 23:10:40 +0100 | [diff] [blame] | 632 | |
Michel Nederlof | 171c7ac | 2017-04-13 12:54:14 +0200 | [diff] [blame] | 633 | Custom Scheduler filters |
| 634 | ------------------------ |
| 635 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 636 | If you have a custom filter, that needs to be included in the |
| 637 | scheduler, then you can include it like so: |
Michel Nederlof | 171c7ac | 2017-04-13 12:54:14 +0200 | [diff] [blame] | 638 | |
| 639 | .. code-block:: yaml |
| 640 | |
| 641 | nova: |
| 642 | controller: |
| 643 | scheduler_custom_filters: |
| 644 | - my_custom_driver.nova.scheduler.filters.my_custom_filter.MyCustomFilter |
| 645 | |
| 646 | # Then add your custom filter on the end (make sure to include all other ones that you need as well) |
sandriichenko | 4fe321d | 2018-01-22 17:34:06 +0000 | [diff] [blame] | 647 | scheduler_default_filters: "DifferentHostFilter,SameHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,PciPassthroughFilter,MyCustomFilter" |
Michel Nederlof | 171c7ac | 2017-04-13 12:54:14 +0200 | [diff] [blame] | 648 | |
Michael Polenchuk | 2bce2cb | 2018-09-17 16:05:43 +0400 | [diff] [blame] | 649 | # Since Queens version a sequence could be used as well: |
| 650 | ~scheduler_default_filters: |
| 651 | - DifferentHostFilter |
| 652 | - SameHostFilter |
| 653 | ... |
| 654 | - MyCustomFilter |
| 655 | |
| 656 | |
Michel Nederlof | eb566f6 | 2017-04-21 15:37:47 +0200 | [diff] [blame] | 657 | Hardware Trip/Unmap Support |
| 658 | --------------------------- |
| 659 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 660 | To enable TRIM support for ephemeral images (thru nova managed |
| 661 | images), libvirt has this option: |
Michel Nederlof | eb566f6 | 2017-04-21 15:37:47 +0200 | [diff] [blame] | 662 | |
| 663 | .. code-block:: yaml |
| 664 | |
| 665 | nova: |
| 666 | compute: |
| 667 | libvirt: |
| 668 | hw_disk_discard: unmap |
| 669 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 670 | To actually utilize this feature, the following metadata must be |
| 671 | set on the image as well, so the SCSI unmap is supported: |
Michel Nederlof | eb566f6 | 2017-04-21 15:37:47 +0200 | [diff] [blame] | 672 | |
| 673 | .. code-block:: bash |
| 674 | |
| 675 | glance image-update --property hw_scsi_model=virtio-scsi <image> |
| 676 | glance image-update --property hw_disk_bus=scsi <image> |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 677 | |
Thom Gerdes | f582f1e | 2017-05-02 18:05:50 +0000 | [diff] [blame] | 678 | Scheduler Host Manager |
| 679 | ---------------------- |
| 680 | |
| 681 | Specify a custom host manager. |
| 682 | |
Thom Gerdes | ec00afd | 2017-04-07 18:06:59 +0000 | [diff] [blame] | 683 | libvirt CPU mode |
| 684 | ---------------- |
| 685 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 686 | Allow setting the model of CPU that is exposed to a VM. This |
| 687 | allows for better support live migration between hypervisors with |
| 688 | different hardware, among other things. Defaults to host-passthrough. |
Jakub Pavlik | 7046b9c | 2017-09-19 12:04:19 +0200 | [diff] [blame] | 689 | |
Thom Gerdes | f582f1e | 2017-05-02 18:05:50 +0000 | [diff] [blame] | 690 | .. code-block:: yaml |
| 691 | |
| 692 | nova: |
| 693 | controller: |
| 694 | scheduler_host_manager: ironic_host_manager |
| 695 | |
Thom Gerdes | ec00afd | 2017-04-07 18:06:59 +0000 | [diff] [blame] | 696 | compute: |
| 697 | cpu_mode: host-model |
| 698 | |
Dzmitry Stremkouski | 7da9bf1 | 2018-04-25 22:30:37 +0200 | [diff] [blame] | 699 | Nova compute cpu model |
| 700 | ---------------------- |
| 701 | |
| 702 | .. code-block:: yaml |
| 703 | |
| 704 | nova: |
| 705 | compute: |
| 706 | cpu_mode: custom |
| 707 | libvirt: |
| 708 | cpu_model: IvyBridge |
| 709 | |
| 710 | |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 711 | Nova compute workarounds |
| 712 | ------------------------ |
| 713 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 714 | Live snapshotting is disabled by default in nova. To enable |
| 715 | this, it needs a manual switch. |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 716 | |
| 717 | From manual: |
| 718 | |
| 719 | .. code-block:: yaml |
| 720 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 721 | When using libvirt 1.2.2 live snapshots fail intermittently under load |
| 722 | (likely related to concurrent libvirt/qemu operations). This config |
| 723 | option provides a mechanism to disable live snapshot, in favor of cold |
| 724 | snapshot, while this is resolved. Cold snapshot causes an instance |
| 725 | outage while the guest is going through the snapshotting process. |
| 726 | |
| 727 | For more information, refer to the bug report: |
| 728 | |
| 729 | https://bugs.launchpad.net/nova/+bug/1334398 |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 730 | |
| 731 | Configurable pillar data: |
| 732 | |
| 733 | .. code-block:: yaml |
| 734 | |
| 735 | nova: |
| 736 | compute: |
Michel Nederlof | e322ebb | 2017-07-10 12:29:21 +0200 | [diff] [blame] | 737 | workaround: |
Michel Nederlof | f7eefb2 | 2017-07-10 11:14:33 +0200 | [diff] [blame] | 738 | disable_libvirt_livesnapshot: False |
| 739 | |
Michel Nederlof | b51a514 | 2017-06-27 08:31:35 +0200 | [diff] [blame] | 740 | Config drive options |
| 741 | -------------------- |
| 742 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 743 | See example below on how to configure the options for the |
| 744 | config drive: |
Michel Nederlof | b51a514 | 2017-06-27 08:31:35 +0200 | [diff] [blame] | 745 | |
| 746 | .. code-block:: yaml |
| 747 | |
| 748 | nova: |
| 749 | compute: |
| 750 | config_drive: |
| 751 | forced: True # Default: True |
| 752 | cdrom: True # Default: False |
| 753 | format: iso9660 # Default: vfat |
| 754 | inject_password: False # Default: False |
| 755 | |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 756 | Number of concurrent live migrates |
| 757 | ---------------------------------- |
| 758 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 759 | Default is to have no concurrent live migrations (so 1 |
| 760 | live-migration at a time). |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 761 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 762 | Excerpt from config options page |
| 763 | https://docs.openstack.org/ocata/config-reference/compute/config-options.html: |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 764 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 765 | Maximum number of live migrations to run concurrently. This limit is |
| 766 | enforced to avoid outbound live migrations overwhelming the host/network |
| 767 | and causing failures. It is not recommended that you change this unless |
| 768 | you are very sure that doing so is safe and stable in your environment. |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 769 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 770 | Possible values: |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 771 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 772 | - 0 : treated as unlimited. |
| 773 | - Negative value defaults to 0. |
| 774 | - Any positive integer representing maximum number of live migrations |
| 775 | to run concurrently. |
Michel Nederlof | f81919b | 2017-11-20 09:37:07 +0100 | [diff] [blame] | 776 | |
| 777 | To configure this option: |
| 778 | |
| 779 | .. code-block:: yaml |
| 780 | |
| 781 | nova: |
| 782 | compute: |
| 783 | max_concurrent_live_migrations: 1 # (1 is the default) |
| 784 | |
Sergio Lystopad | 9d31cba | 2018-05-15 11:29:11 +0300 | [diff] [blame] | 785 | Live migration with auto converge |
| 786 | ---------------------------------- |
| 787 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 788 | Auto converge throttles down CPU if a progress of on-going live |
| 789 | migration is slow |
| 790 | https://docs.openstack.org/ocata/config-reference/compute/config-options.html: |
Sergio Lystopad | 9d31cba | 2018-05-15 11:29:11 +0300 | [diff] [blame] | 791 | |
| 792 | .. code-block:: yaml |
| 793 | |
| 794 | nova: |
| 795 | compute: |
| 796 | libvirt: |
| 797 | live_migration_permit_auto_converge: False # (False is the default) |
| 798 | |
| 799 | .. code-block:: yaml |
| 800 | |
| 801 | nova: |
| 802 | controller: |
| 803 | libvirt: |
| 804 | live_migration_permit_auto_converge: False # (False is the default) |
| 805 | |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 806 | Enhanced logging with logging.conf |
| 807 | ---------------------------------- |
| 808 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 809 | By default ``logging.conf`` is disabled. |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 810 | |
| 811 | That is possible to enable per-binary logging.conf with new variables: |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 812 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 813 | * ``openstack_log_appender`` |
| 814 | Set to true to enable log_config_append for all OpenStack services |
| 815 | |
| 816 | * ``openstack_fluentd_handler_enabled`` |
| 817 | Set to true to enable FluentHandler for all Openstack services |
| 818 | |
| 819 | * ``openstack_ossyslog_handler_enabled`` |
| 820 | Set to true to enable OSSysLogHandler for all Openstack services |
| 821 | |
| 822 | Only ``WatchedFileHandler``, ``OSSysLogHandler``, and ``FluentHandler`` |
| 823 | are available. |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 824 | |
Dmitry Kalashnik | 8da249c | 2018-01-16 17:58:00 +0400 | [diff] [blame] | 825 | Also it is possible to configure this with pillar: |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 826 | |
| 827 | .. code-block:: yaml |
| 828 | |
| 829 | nova: |
| 830 | controller: |
| 831 | logging: |
| 832 | log_appender: true |
| 833 | log_handlers: |
| 834 | watchedfile: |
| 835 | enabled: true |
| 836 | fluentd: |
| 837 | enabled: true |
Oleksii Chupryn | 99e3503 | 2018-02-06 01:59:40 +0200 | [diff] [blame] | 838 | ossyslog: |
| 839 | enabled: true |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 840 | |
| 841 | compute: |
| 842 | logging: |
| 843 | log_appender: true |
| 844 | log_handlers: |
| 845 | watchedfile: |
| 846 | enabled: true |
| 847 | fluentd: |
| 848 | enabled: true |
Oleksii Chupryn | 99e3503 | 2018-02-06 01:59:40 +0200 | [diff] [blame] | 849 | ossyslog: |
| 850 | enabled: true |
Thom Gerdes | f582f1e | 2017-05-02 18:05:50 +0000 | [diff] [blame] | 851 | |
Vasyl Saienko | 7243a95 | 2018-05-11 21:26:54 +0300 | [diff] [blame] | 852 | The log level might be configured per logger by using the |
| 853 | following pillar structure: |
| 854 | |
| 855 | .. code-block:: yaml |
| 856 | |
| 857 | nova: |
| 858 | compute: |
| 859 | logging: |
| 860 | loggers: |
| 861 | <logger_name>: |
| 862 | level: WARNING |
| 863 | |
| 864 | nova: |
| 865 | compute: |
| 866 | logging: |
| 867 | loggers: |
| 868 | <logger_name>: |
| 869 | level: WARNING |
| 870 | |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 871 | Configure syslog parameters for libvirtd |
| 872 | ---------------------------------------- |
| 873 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 874 | To configure syslog parameters for libvirtd the below pillar |
| 875 | structure should be used with values which are supported |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 876 | by libvirtd. These values might be known from the documentation. |
| 877 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 878 | .. code-block:: yaml |
| 879 | |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 880 | nova: |
| 881 | compute: |
| 882 | libvirt: |
| 883 | logging: |
| 884 | level: 3 |
| 885 | filters: '3:remote 4:event' |
| 886 | outputs: '3:syslog:libvirtd' |
| 887 | buffer_size: 64 |
| 888 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 889 | Logging controls: |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 890 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 891 | Logging level: 4 errors, 3 warnings, 2 information, 1 debug |
| 892 | basically 1 will log everything possible ``log_level = 3`` |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 893 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 894 | Logging filters: |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 895 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 896 | A filter allows to select a different logging level for a given category |
| 897 | of logs. |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 898 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 899 | The format for a filter is one of: |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 900 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 901 | * ``x:name`` |
| 902 | * ``x:+name`` |
| 903 | where name is a string which is matched against source file name, |
| 904 | e.g., ``remote``, ``qemu``, or ``util/json``, the optional ``+`` prefix |
| 905 | tells libvirt to log stack trace for each message matching name, |
| 906 | and x is the minimal level where matching messages should be logged: |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 907 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 908 | * ``1: DEBUG`` |
| 909 | * ``2: INFO`` |
| 910 | * ``3: WARNING`` |
| 911 | * ``4: ERROR`` |
| 912 | |
| 913 | Multiple filter can be defined in a single @filters, they just |
| 914 | need to be separated by spaces. |
| 915 | |
| 916 | For example, to only get warning or errors from the remote layer |
| 917 | and only errors from the event layer: ``log_filters="3:remote 4:event`` |
| 918 | |
| 919 | Logging outputs: |
| 920 | |
| 921 | An output is one of the places to save logging information |
| 922 | The format for an output can be: |
| 923 | |
| 924 | * ``x:stderr`` |
| 925 | Output goes to stderr |
| 926 | |
| 927 | * ``x:syslog:name`` |
| 928 | Use syslog for the output and use the given name as the ident |
| 929 | |
| 930 | * ``x:file:file_path`` |
| 931 | output to a file, with the given filepath |
| 932 | |
| 933 | In all case the x prefix is the minimal level, acting as a filter |
| 934 | |
| 935 | * ``1: DEBUG`` |
| 936 | * ``2: INFO`` |
| 937 | * ``3: WARNING`` |
| 938 | * ``4: ERROR`` |
| 939 | |
| 940 | Multiple output can be defined, they just need to be separated by spaces. |
| 941 | For example, to log all warnings and errors to syslog under the libvirt |
| 942 | dident: ``log_outputs="3:syslog:libvirtd`` |
| 943 | |
| 944 | Log debug buffer size: default 64 |
| 945 | The daemon keeps an internal debug log buffer which will be dumped |
| 946 | in case of crash or upon receiving a ``SIGUSR2`` signal. This setting |
| 947 | allows to override the default buffer size in kilobytes. |
| 948 | If value is ``0`` or less the debug log buffer is deactivated |
| 949 | ``log_buffer_size = 64`` |
| 950 | |
| 951 | To configure the logging parameters for QEMU, the below pillar |
| 952 | structure and logging parameters should be used: |
| 953 | |
| 954 | .. code-block:: yaml |
| 955 | |
| 956 | nova: |
| 957 | compute: |
| 958 | qemu: |
| 959 | logging: |
| 960 | handler: logd |
| 961 | virtlog: |
| 962 | enabled: true |
| 963 | level: 4 |
| 964 | filters: '3:remote 3:event' |
| 965 | outputs: '4:syslog:virtlogd' |
| 966 | max_clients: 512 |
| 967 | max_size: 2097100 |
| 968 | max_backups: 2 |
Oleh Hryhorov | e38525d | 2018-05-15 08:58:59 +0000 | [diff] [blame] | 969 | |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 970 | Inject password to VM |
| 971 | --------------------- |
| 972 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 973 | By default nova blocks up any inject to VM because |
| 974 | ``inject_partition`` param is equal to ``-2``. |
| 975 | If you want to inject password to VM, you will need to |
| 976 | define ``inject_partition`` greater or equal to ``-1`` and |
| 977 | define ``inject_password`` to ``True`` |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 978 | |
| 979 | For example: |
| 980 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 981 | .. code-block:: yaml |
| 982 | |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 983 | nova: |
| 984 | compute: |
| 985 | inject_partition: '-1' |
| 986 | inject_password: True |
| 987 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 988 | Allow the injection of an admin password for instance only at |
| 989 | ``create`` and ``rebuild`` process. |
| 990 | |
| 991 | There is no agent needed within the image to do this. If *libguestfs* is |
| 992 | available on the host, it will be used. Otherwise *nbd* is used. The file |
| 993 | system of the image will be mounted and the admin password, which is provided |
| 994 | in the REST API call will be injected as password for the root user. If no |
| 995 | root user is available, the instance won't be launched and an error is thrown. |
| 996 | Be aware that the injection is *not* possible when the instance gets launched |
| 997 | from a volume. |
| 998 | |
| 999 | Possible values: |
| 1000 | |
| 1001 | * ``True`` |
| 1002 | Allows the injection |
| 1003 | |
| 1004 | * ``False`` (default) |
| 1005 | Disallows the injection. Any via the REST API provided |
| 1006 | admin password will be silently ignored. |
| 1007 | |
| 1008 | Related options: |
| 1009 | |
| 1010 | * ``inject_partition`` |
| 1011 | Decides about the discovery and usage of the file system. |
| 1012 | It also can disable the injection at all. |
| 1013 | (boolean value) |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 1014 | |
| 1015 | You can read more about injecting the administrator password here: |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1016 | https://docs.openstack.org/nova/queens/admin/admin-password-injection.html |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 1017 | |
Oleksandr Shyshko | 1c020d1 | 2018-05-24 12:47:08 +0300 | [diff] [blame] | 1018 | Enable libvirt control channel over TLS |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1019 | --------------------------------------- |
Oleksandr Shyshko | 1c020d1 | 2018-05-24 12:47:08 +0300 | [diff] [blame] | 1020 | |
| 1021 | By default TLS is disabled. |
| 1022 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1023 | Enable TLS transport: |
| 1024 | |
| 1025 | .. code-block:: yaml |
Oleksandr Shyshko | 1c020d1 | 2018-05-24 12:47:08 +0300 | [diff] [blame] | 1026 | |
| 1027 | compute: |
| 1028 | libvirt: |
| 1029 | tls: |
| 1030 | enabled: True |
| 1031 | |
| 1032 | You able to set custom certificates in pillar: |
| 1033 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1034 | .. code-block:: yaml |
| 1035 | |
Oleksandr Shyshko | 1c020d1 | 2018-05-24 12:47:08 +0300 | [diff] [blame] | 1036 | nova: |
| 1037 | compute: |
| 1038 | libvirt: |
| 1039 | tls: |
| 1040 | key: (certificate content) |
| 1041 | cert: (certificate content) |
| 1042 | cacert: (certificate content) |
| 1043 | client: |
| 1044 | key: (certificate content) |
| 1045 | cert: (certificate content) |
| 1046 | |
Vasyl Saienko | 11ac973 | 2018-10-02 17:04:33 +0000 | [diff] [blame] | 1047 | Controlling access by `tls_allowed_dn_list`. |
| 1048 | Enable an access control list of client certificate Distinguished Names (DNs) |
| 1049 | which can connect to the TLS port on this server. The default is that DNs are |
| 1050 | not checked. This list may contain wildcards such as |
| 1051 | "C=GB,ST=London,L=London,O=Libvirt Project,CN=*" See the POSIX fnmatch function |
| 1052 | for the format of the wildcards. |
| 1053 | Note that if this is an empty list, no client can connect. |
| 1054 | Note also that GnuTLS returns DNs without spaces after commas between |
| 1055 | the fields (and this is what we check against), but the openssl x509 tool |
| 1056 | shows spaces. |
| 1057 | |
| 1058 | .. code-block:: yaml |
| 1059 | |
| 1060 | nova: |
| 1061 | compute: |
| 1062 | libvirt: |
| 1063 | tls: |
| 1064 | tls_allowed_dn_list: |
| 1065 | host1: |
| 1066 | enabled: true |
| 1067 | value: 'C=foo,CN=cmp1' |
| 1068 | host2: |
| 1069 | enabled: true |
| 1070 | value: 'C=foo,CN=cmp2' |
| 1071 | |
| 1072 | |
Oleksandr Shyshko | 1c020d1 | 2018-05-24 12:47:08 +0300 | [diff] [blame] | 1073 | You can read more about live migration over TLS here: |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1074 | https://wiki.libvirt.org/page/TLSCreateServerCerts |
Oleksandr Shyshko | 981b4fa | 2018-05-02 15:39:30 +0300 | [diff] [blame] | 1075 | |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1076 | Enable transport + authentication for VNC over TLS |
| 1077 | --------------------- |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1078 | # Only for Queens. Communication between noVNC proxy service and QEMU |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1079 | |
| 1080 | By default communication between nova-novncproxy and qemu service is unsecure. |
| 1081 | |
| 1082 | compute: |
| 1083 | qemu: |
| 1084 | vnc: |
| 1085 | tls: |
| 1086 | enabled: True |
| 1087 | |
| 1088 | controller: |
| 1089 | novncproxy: |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1090 | # This section responsible for communication between noVNC proxy and client machine |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1091 | tls: |
| 1092 | enabled: True |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1093 | # This section responsible for communication between nova-novncproxy and qemu service |
| 1094 | vencrypt: |
| 1095 | tls: |
| 1096 | enabled: True |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1097 | |
| 1098 | You able to set custom certificates in pillar: |
| 1099 | |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1100 | nova: |
| 1101 | compute: |
| 1102 | qemu: |
| 1103 | vnc: |
| 1104 | tls: |
| 1105 | cacert (certificate content) |
| 1106 | cert (certificate content) |
| 1107 | key (certificate content) |
| 1108 | |
| 1109 | nova: |
| 1110 | controller: |
| 1111 | novncproxy: |
| 1112 | tls: |
| 1113 | server: |
| 1114 | cert (certificate content) |
| 1115 | key (certificate content) |
| 1116 | vencrypt: |
| 1117 | tls: |
| 1118 | cacert (certificate content) |
| 1119 | cert (certificate content) |
| 1120 | key (certificate content) |
| 1121 | |
| 1122 | |
| 1123 | You can read more about it here: |
| 1124 | https://docs.openstack.org/nova/queens/admin/remote-console-access.html |
| 1125 | |
| 1126 | Enable communication between noVNC proxy and client machine over TLS |
| 1127 | --------------------- |
| 1128 | |
| 1129 | By default communication between noVNC proxy and client machine is unsecure. |
| 1130 | |
| 1131 | controller: |
| 1132 | novncproxy: |
| 1133 | tls: |
| 1134 | enabled: True |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1135 | |
| 1136 | nova: |
| 1137 | controller: |
| 1138 | novncproxy: |
| 1139 | tls: |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1140 | server: |
| 1141 | cert (certificate content) |
| 1142 | key (certificate content) |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1143 | |
| 1144 | You can read more about it here: |
Oleksandr Shyshko | d8337cf | 2018-07-11 17:55:58 +0300 | [diff] [blame] | 1145 | https://docs.openstack.org/mitaka/config-reference/dashboard/configure.html |
Oleksandr Shyshko | 1195fca | 2018-07-09 18:22:59 +0300 | [diff] [blame] | 1146 | |
Oleksandr Shyshko | 55eeac7 | 2018-08-03 18:23:28 +0300 | [diff] [blame] | 1147 | Enable x509 and ssl communication between Nova and Galera cluster. |
| 1148 | --------------------- |
| 1149 | By default communication between Nova and Galera is unsecure. |
| 1150 | |
Oleksandr Shyshko | cbe8735 | 2018-09-07 13:42:57 +0300 | [diff] [blame] | 1151 | nova: |
| 1152 | controller: |
| 1153 | database: |
| 1154 | x509: |
| 1155 | enabled: True |
| 1156 | |
Oleksandr Shyshko | 55eeac7 | 2018-08-03 18:23:28 +0300 | [diff] [blame] | 1157 | You able to set custom certificates in pillar: |
Oleksandr Shyshko | 55eeac7 | 2018-08-03 18:23:28 +0300 | [diff] [blame] | 1158 | |
| 1159 | nova: |
| 1160 | controller: |
| 1161 | database: |
| 1162 | x509: |
Oleksandr Shyshko | cbe8735 | 2018-09-07 13:42:57 +0300 | [diff] [blame] | 1163 | cacert: (certificate content) |
| 1164 | cert: (certificate content) |
| 1165 | key: (certificate content) |
Oleksandr Shyshko | 55eeac7 | 2018-08-03 18:23:28 +0300 | [diff] [blame] | 1166 | |
| 1167 | You can read more about it here: |
| 1168 | https://docs.openstack.org/security-guide/databases/database-access-control.html |
| 1169 | |
Oleh Hryhorov | 63ee845 | 2018-08-14 09:16:02 +0000 | [diff] [blame] | 1170 | Upgrades |
| 1171 | ======== |
| 1172 | |
| 1173 | Each openstack formula provide set of phases (logical bloks) that will help to |
| 1174 | build flexible upgrade orchestration logic for particular components. The list |
| 1175 | of phases might and theirs descriptions are listed in table below: |
| 1176 | |
| 1177 | +-------------------------------+------------------------------------------------------+ |
| 1178 | | State | Description | |
| 1179 | +===============================+======================================================+ |
| 1180 | | <app>.upgrade.service_running | Ensure that all services for particular application | |
| 1181 | | | are enabled for autostart and running | |
| 1182 | +-------------------------------+------------------------------------------------------+ |
| 1183 | | <app>.upgrade.service_stopped | Ensure that all services for particular application | |
| 1184 | | | disabled for autostart and dead | |
| 1185 | +-------------------------------+------------------------------------------------------+ |
| 1186 | | <app>.upgrade.pkgs_latest | Ensure that packages used by particular application | |
| 1187 | | | are installed to latest available version. | |
| 1188 | | | This will not upgrade data plane packages like qemu | |
| 1189 | | | and openvswitch as usually minimal required version | |
| 1190 | | | in openstack services is really old. The data plane | |
| 1191 | | | packages should be upgraded separately by `apt-get | |
| 1192 | | | upgrade` or `apt-get dist-upgrade` | |
| 1193 | | | Applying this state will not autostart service. | |
| 1194 | +-------------------------------+------------------------------------------------------+ |
| 1195 | | <app>.upgrade.render_config | Ensure configuration is rendered actual version. + |
| 1196 | +-------------------------------+------------------------------------------------------+ |
| 1197 | | <app>.upgrade.pre | We assume this state is applied on all nodes in the | |
| 1198 | | | cloud before running upgrade. | |
| 1199 | | | Only non destructive actions will be applied during | |
| 1200 | | | this phase. Perform service built in service check | |
| 1201 | | | like (keystone-manage doctor and nova-status upgrade)| |
| 1202 | +-------------------------------+------------------------------------------------------+ |
| 1203 | | <app>.upgrade.upgrade.pre | Mostly applicable for data plane nodes. During this | |
| 1204 | | | phase resources will be gracefully removed from | |
| 1205 | | | current node if it is allowed. Services for upgraded | |
| 1206 | | | application will be set to admin disabled state to | |
| 1207 | | | make sure node will not participate in resources | |
| 1208 | | | scheduling. For example on gtw nodes this will set | |
| 1209 | | | all agents to admin disable state and will move all | |
| 1210 | | | routers to other agents. | |
| 1211 | +-------------------------------+------------------------------------------------------+ |
| 1212 | | <app>.upgrade.upgrade | This state will basically upgrade application on | |
| 1213 | | | particular target. Stop services, render | |
| 1214 | | | configuration, install new packages, run offline | |
| 1215 | | | dbsync (for ctl), start services. Data plane should | |
| 1216 | | | not be affected, only OpenStack python services. | |
| 1217 | +-------------------------------+------------------------------------------------------+ |
| 1218 | | <app>.upgrade.upgrade.post | Add services back to scheduling. | |
| 1219 | +-------------------------------+------------------------------------------------------+ |
| 1220 | | <app>.upgrade.post | This phase should be launched only when upgrade of | |
| 1221 | | | the cloud is completed. Cleanup temporary files, | |
| 1222 | | | perform other post upgrade tasks. | |
| 1223 | +-------------------------------+------------------------------------------------------+ |
| 1224 | | <app>.upgrade.verify | Here we will do basic health checks (API CRUD | |
| 1225 | | | operations, verify do not have dead network | |
| 1226 | | | agents/compute services) | |
| 1227 | +-------------------------------+------------------------------------------------------+ |
| 1228 | |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1229 | Documentation and Bugs |
| 1230 | ====================== |
| 1231 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1232 | * http://salt-formulas.readthedocs.io/ |
| 1233 | Learn how to install and update salt-formulas |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1234 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1235 | * https://github.com/salt-formulas/salt-formula-nova/issues |
| 1236 | In the unfortunate event that bugs are discovered, report the issue to the |
| 1237 | appropriate issue tracker. Use the Github issue tracker for a specific salt |
| 1238 | formula |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1239 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1240 | * https://launchpad.net/salt-formulas |
| 1241 | For feature requests, bug reports, or blueprints affecting the entire |
| 1242 | ecosystem, use the Launchpad salt-formulas project |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1243 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1244 | * https://launchpad.net/~salt-formulas-users |
| 1245 | Join the salt-formulas-users team and subscribe to mailing list if required |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1246 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1247 | * https://github.com/salt-formulas/salt-formula-nova |
| 1248 | Develop the salt-formulas projects in the master branch and then submit pull |
| 1249 | requests against a specific formula |
Filip Pytloun | 5bc9e9f | 2017-02-02 13:05:40 +0100 | [diff] [blame] | 1250 | |
OlgaGusarenko | 9dd01c9 | 2018-07-31 00:49:30 +0300 | [diff] [blame] | 1251 | * #salt-formulas @ irc.freenode.net |
| 1252 | Use this IRC channel in case of any questions or feedback which is always |
| 1253 | welcome |