Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 1 | ============================== |
| 2 | Openstack Cinder Block Storage |
| 3 | ============================== |
| 4 | |
Jakub Pavlik | b513f13 | 2016-05-20 11:11:19 +0200 | [diff] [blame] | 5 | Cinder provides an infrastructure for managing volumes in OpenStack. It was |
| 6 | originally a Nova component called nova-volume, but has become an independent |
| 7 | project since the Folsom release. |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 8 | |
| 9 | Sample pillars |
| 10 | ============== |
| 11 | |
Jakub Pavlik | b513f13 | 2016-05-20 11:11:19 +0200 | [diff] [blame] | 12 | New structure divides cinder-api,cinder-scheduler to role controller and |
| 13 | cinder-volume to role volume. |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 14 | |
| 15 | .. code-block:: yaml |
| 16 | |
| 17 | cinder: |
| 18 | controller: |
| 19 | enabled: true |
| 20 | version: juno |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 21 | default_volume_type: 7k2SaS |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 22 | database: |
| 23 | engine: mysql |
| 24 | host: 127.0.0.1 |
| 25 | port: 3306 |
| 26 | name: cinder |
| 27 | user: cinder |
| 28 | password: pwd |
| 29 | identity: |
| 30 | engine: keystone |
| 31 | host: 127.0.0.1 |
| 32 | port: 35357 |
| 33 | tenant: service |
| 34 | user: cinder |
| 35 | password: pwd |
| 36 | message_queue: |
| 37 | engine: rabbitmq |
| 38 | host: 127.0.0.1 |
| 39 | port: 5672 |
| 40 | user: openstack |
| 41 | password: pwd |
| 42 | virtual_host: '/openstack' |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 43 | backend: |
| 44 | 7k2_SAS: |
| 45 | engine: storwize |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 46 | type_name: slow-disks |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 47 | host: 192.168.0.1 |
| 48 | port: 22 |
| 49 | user: username |
| 50 | password: pass |
| 51 | connection: FC/iSCSI |
| 52 | multihost: true |
| 53 | multipath: true |
| 54 | pool: SAS7K2 |
Petr Michalec | a1c7ff1 | 2016-11-29 16:32:50 +0100 | [diff] [blame] | 55 | audit: |
| 56 | enabled: false |
Simon Pasquier | 9089de4 | 2017-02-03 16:13:22 +0100 | [diff] [blame] | 57 | osapi_max_limit: 500 |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 58 | |
| 59 | cinder: |
| 60 | volume: |
| 61 | enabled: true |
| 62 | version: juno |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 63 | default_volume_type: 7k2SaS |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 64 | database: |
| 65 | engine: mysql |
| 66 | host: 127.0.0.1 |
| 67 | port: 3306 |
| 68 | name: cinder |
| 69 | user: cinder |
| 70 | password: pwd |
| 71 | identity: |
| 72 | engine: keystone |
| 73 | host: 127.0.0.1 |
| 74 | port: 35357 |
| 75 | tenant: service |
| 76 | user: cinder |
| 77 | password: pwd |
| 78 | message_queue: |
| 79 | engine: rabbitmq |
| 80 | host: 127.0.0.1 |
| 81 | port: 5672 |
| 82 | user: openstack |
| 83 | password: pwd |
| 84 | virtual_host: '/openstack' |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 85 | backend: |
| 86 | 7k2_SAS: |
| 87 | engine: storwize |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 88 | type_name: 7k2 SAS disk |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 89 | host: 192.168.0.1 |
| 90 | port: 22 |
| 91 | user: username |
| 92 | password: pass |
| 93 | connection: FC/iSCSI |
| 94 | multihost: true |
| 95 | multipath: true |
| 96 | pool: SAS7K2 |
Petr Michalec | a1c7ff1 | 2016-11-29 16:32:50 +0100 | [diff] [blame] | 97 | audit: |
| 98 | enabled: false |
Jiri Konecny | 2dce35f | 2016-04-19 16:29:52 +0200 | [diff] [blame] | 99 | |
| 100 | Client-side RabbitMQ HA setup for controller |
| 101 | |
| 102 | .. code-block:: yaml |
| 103 | |
| 104 | cinder: |
| 105 | controller: |
| 106 | .... |
| 107 | message_queue: |
| 108 | engine: rabbitmq |
| 109 | members: |
| 110 | - host: 10.0.16.1 |
| 111 | - host: 10.0.16.2 |
| 112 | - host: 10.0.16.3 |
| 113 | user: openstack |
| 114 | password: pwd |
| 115 | virtual_host: '/openstack' |
| 116 | .... |
| 117 | |
| 118 | Client-side RabbitMQ HA setup for volume component |
| 119 | |
| 120 | .. code-block:: yaml |
| 121 | |
| 122 | cinder: |
| 123 | volume: |
| 124 | .... |
| 125 | message_queue: |
| 126 | engine: rabbitmq |
| 127 | members: |
| 128 | - host: 10.0.16.1 |
| 129 | - host: 10.0.16.2 |
| 130 | - host: 10.0.16.3 |
| 131 | user: openstack |
| 132 | password: pwd |
| 133 | virtual_host: '/openstack' |
| 134 | .... |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 135 | |
| 136 | Cinder setup with zeroing deleted volumes |
| 137 | |
Alexander Noskov | 62496fb | 2017-02-27 16:42:54 +0100 | [diff] [blame] | 138 | .. code-block:: yaml |
| 139 | |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 140 | cinder: |
| 141 | controller: |
| 142 | enabled: true |
| 143 | wipe_method: zero |
| 144 | ... |
| 145 | |
| 146 | Cinder setup with shreding deleted volumes |
| 147 | |
| 148 | .. code-block:: yaml |
| 149 | |
| 150 | cinder: |
| 151 | controller: |
| 152 | enabled: true |
| 153 | wipe_method: shred |
| 154 | ... |
| 155 | |
| 156 | |
| 157 | Default Cinder setup with iSCSI target |
| 158 | |
| 159 | .. code-block:: yaml |
| 160 | |
| 161 | cinder: |
| 162 | controller: |
| 163 | enabled: true |
Jakub Pavlik | 3d437df | 2016-04-11 22:07:50 +0200 | [diff] [blame] | 164 | version: mitaka |
| 165 | default_volume_type: lvmdriver-1 |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 166 | database: |
| 167 | engine: mysql |
| 168 | host: 127.0.0.1 |
| 169 | port: 3306 |
| 170 | name: cinder |
| 171 | user: cinder |
| 172 | password: pwd |
| 173 | identity: |
| 174 | engine: keystone |
| 175 | host: 127.0.0.1 |
| 176 | port: 35357 |
| 177 | tenant: service |
| 178 | user: cinder |
| 179 | password: pwd |
| 180 | message_queue: |
| 181 | engine: rabbitmq |
| 182 | host: 127.0.0.1 |
| 183 | port: 5672 |
| 184 | user: openstack |
| 185 | password: pwd |
| 186 | virtual_host: '/openstack' |
Jakub Pavlik | af96c2a | 2016-01-08 15:49:54 +0100 | [diff] [blame] | 187 | backend: |
Jakub Pavlik | 3d437df | 2016-04-11 22:07:50 +0200 | [diff] [blame] | 188 | lvmdriver-1: |
| 189 | engine: lvm |
| 190 | type_name: lvmdriver-1 |
| 191 | volume_group: cinder-volume |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 192 | |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 193 | Cinder setup for IBM Storwize |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 194 | |
| 195 | .. code-block:: yaml |
| 196 | |
| 197 | cinder: |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 198 | volume: |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 199 | enabled: true |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 200 | backend: |
| 201 | 7k2_SAS: |
| 202 | engine: storwize |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 203 | type_name: 7k2 SAS disk |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 204 | host: 192.168.0.1 |
| 205 | port: 22 |
| 206 | user: username |
| 207 | password: pass |
| 208 | connection: FC/iSCSI |
| 209 | multihost: true |
| 210 | multipath: true |
| 211 | pool: SAS7K2 |
| 212 | 10k_SAS: |
| 213 | engine: storwize |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 214 | type_name: 10k SAS disk |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 215 | host: 192.168.0.1 |
| 216 | port: 22 |
| 217 | user: username |
| 218 | password: pass |
| 219 | connection: FC/iSCSI |
| 220 | multihost: true |
| 221 | multipath: true |
| 222 | pool: SAS10K |
| 223 | 15k_SAS: |
| 224 | engine: storwize |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 225 | type_name: 15k SAS |
Ales Komarek | df13bbd | 2016-01-05 21:33:36 +0100 | [diff] [blame] | 226 | host: 192.168.0.1 |
| 227 | port: 22 |
| 228 | user: username |
| 229 | password: pass |
| 230 | connection: FC/iSCSI |
| 231 | multihost: true |
| 232 | multipath: true |
| 233 | pool: SAS15K |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 234 | |
Jiri Broulik | 88548db | 2017-03-31 12:21:37 +0200 | [diff] [blame^] | 235 | |
| 236 | Cinder setup with NFS |
| 237 | |
| 238 | .. code-block:: yaml |
| 239 | |
| 240 | cinder: |
| 241 | controller: |
| 242 | enabled: true |
| 243 | default_volume_type: nfs-driver |
| 244 | backend: |
| 245 | nfs-driver: |
| 246 | engine: nfs |
| 247 | type_name: nfs-driver |
| 248 | volume_group: cinder-volume |
| 249 | path: /var/lib/cinder/nfs |
| 250 | devices: |
| 251 | - 172.16.10.110:/var/nfs/cinder |
| 252 | options: rw,sync |
| 253 | |
| 254 | |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 255 | Cinder setup with Hitachi VPS |
| 256 | |
| 257 | .. code-block:: yaml |
| 258 | |
| 259 | cinder: |
| 260 | controller: |
| 261 | enabled: true |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 262 | backend: |
| 263 | hus100_backend: |
marco | daa52fa | 2016-01-25 23:49:50 +0100 | [diff] [blame] | 264 | type_name: HUS100 |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 265 | backend: hus100_backend |
| 266 | engine: hitachi_vsp |
| 267 | connection: FC |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 268 | |
Ondrej Smola | 16d66bd | 2017-01-15 13:56:03 +0100 | [diff] [blame] | 269 | Cinder setup with Hitachi VPS with defined ldev range |
| 270 | |
| 271 | .. code-block:: yaml |
| 272 | |
| 273 | cinder: |
| 274 | controller: |
| 275 | enabled: true |
| 276 | backend: |
| 277 | hus100_backend: |
| 278 | type_name: HUS100 |
| 279 | backend: hus100_backend |
| 280 | engine: hitachi_vsp |
| 281 | connection: FC |
| 282 | ldev_range: 0-1000 |
| 283 | |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 284 | Cinder setup with CEPH |
| 285 | |
| 286 | .. code-block:: yaml |
| 287 | |
| 288 | cinder: |
| 289 | controller: |
| 290 | enabled: true |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 291 | backend: |
| 292 | ceph_backend: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 293 | type_name: standard-iops |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 294 | backend: ceph_backend |
| 295 | pool: volumes |
| 296 | engine: ceph |
| 297 | user: cinder |
| 298 | secret_uuid: da74ccb7-aa59-1721-a172-0006b1aa4e3e |
| 299 | client_cinder_key: AQDOavlU6BsSJhAAnpFR906mvdgdfRqLHwu0Uw== |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 300 | |
| 301 | http://ceph.com/docs/master/rbd/rbd-openstack/ |
| 302 | |
| 303 | |
| 304 | Cinder setup with HP3par |
| 305 | |
| 306 | .. code-block:: yaml |
| 307 | |
| 308 | cinder: |
| 309 | controller: |
| 310 | enabled: true |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 311 | backend: |
| 312 | hp3par_backend: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 313 | type_name: hp3par |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 314 | backend: hp3par_backend |
| 315 | user: hp3paruser |
| 316 | password: something |
| 317 | url: http://10.10.10.10/api/v1 |
| 318 | cpg: OpenStackCPG |
| 319 | host: 10.10.10.10 |
| 320 | login: hp3paradmin |
| 321 | sanpassword: something |
| 322 | debug: True |
| 323 | snapcpg: OpenStackSNAPCPG |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 324 | |
| 325 | Cinder setup with Fujitsu Eternus |
| 326 | |
| 327 | .. code-block:: yaml |
| 328 | |
| 329 | cinder: |
| 330 | volume: |
| 331 | enabled: true |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 332 | backend: |
| 333 | 10kThinPro: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 334 | type_name: 10kThinPro |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 335 | engine: fujitsu |
| 336 | pool: 10kThinPro |
| 337 | host: 192.168.0.1 |
| 338 | port: 5988 |
| 339 | user: username |
| 340 | password: pass |
| 341 | connection: FC/iSCSI |
marco | daa52fa | 2016-01-25 23:49:50 +0100 | [diff] [blame] | 342 | name: 10kThinPro |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 343 | 10k_SAS: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 344 | type_name: 10k_SAS |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 345 | pool: SAS10K |
| 346 | engine: fujitsu |
| 347 | host: 192.168.0.1 |
| 348 | port: 5988 |
| 349 | user: username |
| 350 | password: pass |
| 351 | connection: FC/iSCSI |
marco | daa52fa | 2016-01-25 23:49:50 +0100 | [diff] [blame] | 352 | name: 10k_SAS |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 353 | |
Jakub Pavlik | 9703c60 | 2015-10-15 18:52:47 +0200 | [diff] [blame] | 354 | Cinder setup with IBM GPFS filesystem |
| 355 | |
| 356 | .. code-block:: yaml |
| 357 | |
| 358 | cinder: |
| 359 | volume: |
| 360 | enabled: true |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 361 | backend: |
| 362 | GPFS-GOLD: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 363 | type_name: GPFS-GOLD |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 364 | engine: gpfs |
| 365 | mount_point: '/mnt/gpfs-openstack/cinder/gold' |
marco | daa52fa | 2016-01-25 23:49:50 +0100 | [diff] [blame] | 366 | GPFS-SILVER: |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 367 | type_name: GPFS-SILVER |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 368 | engine: gpfs |
| 369 | mount_point: '/mnt/gpfs-openstack/cinder/silver' |
Jakub Pavlik | 9f5988a | 2016-01-11 13:44:57 +0100 | [diff] [blame] | 370 | |
| 371 | Cinder setup with HP LeftHand |
| 372 | |
| 373 | .. code-block:: yaml |
| 374 | |
| 375 | cinder: |
| 376 | volume: |
| 377 | enabled: true |
| 378 | backend: |
| 379 | HP-LeftHand: |
| 380 | type_name: normal-storage |
| 381 | engine: hp_lefthand |
| 382 | api_url: 'https://10.10.10.10:8081/lhos' |
| 383 | username: user |
| 384 | password: password |
| 385 | clustername: cluster1 |
| 386 | iscsi_chap_enabled: false |
| 387 | |
Jakub Pavlik | a63764f | 2016-01-11 14:41:06 +0100 | [diff] [blame] | 388 | Extra parameters for HP LeftHand |
Jakub Pavlik | a63764f | 2016-01-11 14:41:06 +0100 | [diff] [blame] | 389 | |
Jakub Pavlik | 5050dda | 2016-01-11 16:52:32 +0100 | [diff] [blame] | 390 | .. code-block:: yaml |
| 391 | |
| 392 | cinder type-key normal-storage set hplh:data_pl=r-10-2 hplh:provisioning=full |
| 393 | |
marco | daa52fa | 2016-01-25 23:49:50 +0100 | [diff] [blame] | 394 | Cinder setup with Solidfire |
Jakub Pavlik | 5050dda | 2016-01-11 16:52:32 +0100 | [diff] [blame] | 395 | |
| 396 | .. code-block:: yaml |
| 397 | |
| 398 | cinder: |
| 399 | volume: |
| 400 | enabled: true |
| 401 | backend: |
| 402 | solidfire: |
| 403 | type_name: normal-storage |
| 404 | engine: solidfire |
| 405 | san_ip: 10.10.10.10 |
| 406 | san_login: user |
| 407 | san_password: password |
| 408 | clustername: cluster1 |
| 409 | sf_emulate_512: false |
Filip Pytloun | da2a079 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 410 | |
Petr Michalec | a1c7ff1 | 2016-11-29 16:32:50 +0100 | [diff] [blame] | 411 | |
| 412 | |
| 413 | Enable auditing filter, ie: CADF |
| 414 | |
| 415 | .. code-block:: yaml |
| 416 | |
| 417 | cinder: |
| 418 | controller: |
| 419 | audit: |
| 420 | enabled: true |
| 421 | .... |
| 422 | filter_factory: 'keystonemiddleware.audit:filter_factory' |
| 423 | map_file: '/etc/pycadf/cinder_api_audit_map.conf' |
| 424 | .... |
| 425 | volume: |
| 426 | audit: |
| 427 | enabled: true |
| 428 | .... |
| 429 | filter_factory: 'keystonemiddleware.audit:filter_factory' |
| 430 | map_file: '/etc/pycadf/cinder_api_audit_map.conf' |
| 431 | |
Michel Nederlof | b8603eb | 2017-02-09 10:04:38 +0100 | [diff] [blame] | 432 | |
| 433 | Cinder setup with custom availability zones: |
| 434 | |
| 435 | .. code-block:: yaml |
| 436 | |
| 437 | cinder: |
| 438 | controller: |
| 439 | default_availability_zone: my-default-zone |
| 440 | storage_availability_zone: my-custom-zone-name |
| 441 | cinder: |
| 442 | volume: |
| 443 | default_availability_zone: my-default-zone |
| 444 | storage_availability_zone: my-custom-zone-name |
| 445 | |
Alexander Noskov | 62496fb | 2017-02-27 16:42:54 +0100 | [diff] [blame] | 446 | public_endpoint and osapi_volume_base_url parameters: |
| 447 | "public_endpoint" is used for configuring versions endpoint, |
| 448 | "osapi_volume_base_URL" is used to present Cinder URL to users. |
| 449 | They are useful when running Cinder under load balancer in SSL. |
| 450 | |
| 451 | .. code-block:: yaml |
| 452 | |
| 453 | cinder: |
| 454 | controller: |
| 455 | public_endpoint_address: https://${_param:cluster_domain}:8776 |
| 456 | |
Michel Nederlof | b8603eb | 2017-02-09 10:04:38 +0100 | [diff] [blame] | 457 | The default availability zone is used when a volume has been created, without specifying a zone in the create request. (this zone must exist in your configuration obviously) |
| 458 | The storage availability zone is the actual zone where the node belongs to. Make sure to specify this per node. |
| 459 | Check the documentation of OpenStack for more information |
| 460 | |
Jakub Pavlik | b513f13 | 2016-05-20 11:11:19 +0200 | [diff] [blame] | 461 | Documentation and Bugs |
| 462 | ============================ |
| 463 | |
| 464 | To learn how to deploy OpenStack Salt, consult the documentation available |
| 465 | online at: |
| 466 | |
Petr Michalec | a1c7ff1 | 2016-11-29 16:32:50 +0100 | [diff] [blame] | 467 | https://wiki.openstack.org/wiki/OpenStackSalt |
Jakub Pavlik | b513f13 | 2016-05-20 11:11:19 +0200 | [diff] [blame] | 468 | |
| 469 | In the unfortunate event that bugs are discovered, they should be reported to |
| 470 | the appropriate bug tracker. If you obtained the software from a 3rd party |
| 471 | operating system vendor, it is often wise to use their own bug tracker for |
| 472 | reporting problems. In all other cases use the master OpenStack bug tracker, |
| 473 | available at: |
| 474 | |
| 475 | http://bugs.launchpad.net/openstack-salt |
| 476 | |
| 477 | Developers wishing to work on the OpenStack Salt project should always base |
| 478 | their work on the latest formulas code, available from the master GIT |
| 479 | repository at: |
| 480 | |
| 481 | https://git.openstack.org/cgit/openstack/salt-formula-cinder |
| 482 | |
| 483 | Developers should also join the discussion on the IRC list, at: |
| 484 | |
| 485 | https://wiki.openstack.org/wiki/Meetings/openstack-salt |
Filip Pytloun | b0f5c1f | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 486 | |
| 487 | Documentation and Bugs |
| 488 | ====================== |
| 489 | |
| 490 | To learn how to install and update salt-formulas, consult the documentation |
| 491 | available online at: |
| 492 | |
| 493 | http://salt-formulas.readthedocs.io/ |
| 494 | |
| 495 | In the unfortunate event that bugs are discovered, they should be reported to |
| 496 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 497 | formula: |
| 498 | |
| 499 | https://github.com/salt-formulas/salt-formula-cinder/issues |
| 500 | |
| 501 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 502 | use Launchpad salt-formulas project: |
| 503 | |
| 504 | https://launchpad.net/salt-formulas |
| 505 | |
| 506 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 507 | |
| 508 | https://launchpad.net/~salt-formulas-users |
| 509 | |
| 510 | Developers wishing to work on the salt-formulas projects should always base |
| 511 | their work on master branch and submit pull request against specific formula. |
| 512 | |
| 513 | https://github.com/salt-formulas/salt-formula-cinder |
| 514 | |
| 515 | Any questions or feedback is always welcome so feel free to join our IRC |
| 516 | channel: |
| 517 | |
| 518 | #salt-formulas @ irc.freenode.net |