Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 1 | ============== |
| 2 | Glance formula |
| 3 | ============== |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 4 | |
Jakub Pavlik | 9e85d17 | 2016-05-20 11:13:14 +0200 | [diff] [blame] | 5 | The Glance project provides services for discovering, registering, and |
| 6 | retrieving virtual machine images. Glance has a RESTful API that allows |
| 7 | querying of VM image metadata as well as retrieval of the actual image. |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 8 | |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 9 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 10 | Sample pillars |
| 11 | ============== |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 12 | |
| 13 | .. code-block:: yaml |
| 14 | |
| 15 | glance: |
| 16 | server: |
| 17 | enabled: true |
| 18 | version: juno |
Alena Holanova | c1e5131 | 2016-03-22 14:08:44 +0100 | [diff] [blame] | 19 | workers: 8 |
Dmitry Stremkovskiy | e9490cf | 2017-07-11 11:37:44 +0300 | [diff] [blame] | 20 | glance_uid: 302 |
| 21 | glance_gid: 302 |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 22 | policy: |
| 23 | publicize_image: |
| 24 | - "role:admin" |
| 25 | - "role:image_manager" |
| 26 | database: |
| 27 | engine: mysql |
| 28 | host: 127.0.0.1 |
| 29 | port: 3306 |
| 30 | name: glance |
| 31 | user: glance |
| 32 | password: pwd |
| 33 | identity: |
| 34 | engine: keystone |
| 35 | host: 127.0.0.1 |
| 36 | port: 35357 |
| 37 | tenant: service |
| 38 | user: glance |
| 39 | password: pwd |
| 40 | message_queue: |
| 41 | engine: rabbitmq |
| 42 | host: 127.0.0.1 |
| 43 | port: 5672 |
| 44 | user: openstack |
| 45 | password: pwd |
| 46 | virtual_host: '/openstack' |
| 47 | storage: |
| 48 | engine: file |
| 49 | images: |
| 50 | - name: "CirrOS 0.3.1" |
| 51 | format: qcow2 |
| 52 | file: cirros-0.3.1-x86_64-disk.img |
| 53 | source: http://cdn.download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img |
| 54 | public: true |
Petr Michalec | 86ec014 | 2016-11-29 16:34:15 +0100 | [diff] [blame] | 55 | audit: |
| 56 | enabled: false |
Simon Pasquier | 2acbef5 | 2017-02-03 15:09:39 +0100 | [diff] [blame] | 57 | api_limit_max: 100 |
| 58 | limit_param_default: 50 |
Oleg Iurchenko | 68ae355 | 2017-10-13 18:40:42 +0300 | [diff] [blame] | 59 | barbican: |
| 60 | enabled: true |
Simon Pasquier | 2acbef5 | 2017-02-03 15:09:39 +0100 | [diff] [blame] | 61 | |
| 62 | The pagination is controlled by the *api_limit_max* and *limit_param_default* |
| 63 | parameters as shown above: |
| 64 | |
| 65 | * *api_limit_max* defines the maximum number of records that the server will |
| 66 | return. |
| 67 | |
| 68 | * *limit_param_default* is the default *limit* parameter that |
| 69 | applies if the request didn't defined it explicitly. |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 70 | |
Dmitry Ukov | 0a228ad | 2017-05-15 13:35:43 +0400 | [diff] [blame] | 71 | Configuration of policy.json file |
| 72 | |
| 73 | .. code-block:: yaml |
| 74 | |
| 75 | glance: |
| 76 | server: |
| 77 | .... |
| 78 | policy: |
| 79 | publicize_image: "role:admin" |
| 80 | # Add key without value to remove line from policy.json |
| 81 | add_member: |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 82 | Keystone and cinder region |
| 83 | |
| 84 | .. code-block:: yaml |
| 85 | |
| 86 | glance: |
| 87 | server: |
| 88 | enabled: true |
| 89 | version: kilo |
| 90 | ... |
| 91 | identity: |
| 92 | engine: keystone |
| 93 | host: 127.0.0.1 |
| 94 | region: RegionTwo |
| 95 | ... |
| 96 | |
| 97 | Ceph integration glance |
| 98 | |
| 99 | .. code-block:: yaml |
| 100 | |
| 101 | glance: |
| 102 | server: |
| 103 | enabled: true |
| 104 | version: juno |
| 105 | storage: |
| 106 | engine: rbd,http |
| 107 | user: glance |
| 108 | pool: images |
| 109 | chunk_size: 8 |
| 110 | client_glance_key: AQDOavlU6BsSJhAAnpFR906mvdgdfRqLHwu0Uw== |
| 111 | |
Vasyl Saienko | 8357567 | 2018-07-17 18:34:43 +0300 | [diff] [blame^] | 112 | VMWare integration: |
| 113 | |
| 114 | .. code-block:: yaml |
| 115 | |
| 116 | glance: |
| 117 | server |
| 118 | storage: |
| 119 | engine: vmware |
| 120 | default_store: vsphere |
| 121 | vmware: |
| 122 | enabled: true |
| 123 | server_host: 1.2.3.4 |
| 124 | server_username: vmware_username |
| 125 | server_password: vmware_password |
| 126 | datastores: |
| 127 | data1: |
| 128 | name: datastore_name1 |
| 129 | enabled: true |
| 130 | path: datacenter_name |
| 131 | weight: 10 |
| 132 | data2: |
| 133 | name: datastore_name2 |
| 134 | enabled: true |
| 135 | path: datacenter_name |
| 136 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 137 | RabbitMQ HA setup |
| 138 | |
| 139 | .. code-block:: yaml |
| 140 | |
| 141 | glance: |
| 142 | server: |
| 143 | .... |
| 144 | message_queue: |
| 145 | engine: rabbitmq |
| 146 | members: |
| 147 | - host: 10.0.16.1 |
| 148 | - host: 10.0.16.2 |
| 149 | - host: 10.0.16.3 |
| 150 | user: openstack |
| 151 | password: pwd |
| 152 | virtual_host: '/openstack' |
| 153 | .... |
| 154 | |
stelucz | df5176a | 2018-01-17 14:42:11 +0100 | [diff] [blame] | 155 | Quota Options |
| 156 | |
| 157 | .. code-block:: yaml |
| 158 | |
| 159 | glance: |
| 160 | server: |
| 161 | .... |
| 162 | quota: |
| 163 | image_member: -1 |
| 164 | image_property: 256 |
| 165 | image_tag: 256 |
| 166 | image_location: 15 |
| 167 | user_storage: 0 |
| 168 | .... |
| 169 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 170 | Configuring TLS communications |
| 171 | ------------------------------ |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 172 | |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 173 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 174 | **Note:** by default system wide installed CA certs are used, so ``cacert_file`` param is optional, as well as ``cacert``. |
| 175 | |
| 176 | |
| 177 | - **RabbitMQ TLS** |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 178 | |
| 179 | .. code-block:: yaml |
| 180 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 181 | glance: |
| 182 | server: |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 183 | message_queue: |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 184 | port: 5671 |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 185 | ssl: |
| 186 | enabled: True |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 187 | (optional) cacert: cert body if the cacert_file does not exists |
| 188 | (optional) cacert_file: /etc/openstack/rabbitmq-ca.pem |
| 189 | (optional) version: TLSv1_2 |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 190 | |
| 191 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 192 | - **MySQL TLS** |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 193 | |
| 194 | .. code-block:: yaml |
| 195 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 196 | glance: |
| 197 | server: |
| 198 | database: |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 199 | ssl: |
| 200 | enabled: True |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 201 | (optional) cacert: cert body if the cacert_file does not exists |
| 202 | (optional) cacert_file: /etc/openstack/mysql-ca.pem |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 203 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 204 | - **Openstack HTTPS API** |
| 205 | |
| 206 | |
| 207 | Set the ``https`` as protocol at ``glance:server`` sections: |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 208 | |
| 209 | .. code-block:: yaml |
| 210 | |
Kirill Bespalov | b558436 | 2017-11-20 16:42:07 +0300 | [diff] [blame] | 211 | glance: |
| 212 | server: |
| 213 | identity: |
| 214 | protocol: https |
| 215 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 216 | registry: |
| 217 | protocol: https |
| 218 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 219 | storage: |
| 220 | engine: cinder, swift |
| 221 | cinder: |
| 222 | protocol: https |
| 223 | (optional) cacert_file: /etc/openstack/proxy.pem |
| 224 | swift: |
| 225 | store: |
| 226 | (optional) cafile: /etc/openstack/proxy.pem |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 227 | |
Kirill Bespalov | 365d243 | 2017-07-28 09:01:04 +0300 | [diff] [blame] | 228 | |
| 229 | |
mnederlof | ad6d624 | 2017-03-30 15:31:15 +0200 | [diff] [blame] | 230 | Enable Glance Image Cache: |
| 231 | |
| 232 | .. code-block:: yaml |
| 233 | |
| 234 | glance: |
| 235 | server: |
| 236 | image_cache: |
| 237 | enabled: true |
| 238 | enable_management: true |
| 239 | directory: /var/lib/glance/image-cache/ |
| 240 | max_size: 21474836480 |
| 241 | .... |
| 242 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 243 | Enable auditing filter (CADF): |
| 244 | |
| 245 | .. code-block:: yaml |
| 246 | |
| 247 | glance: |
| 248 | server: |
| 249 | audit: |
| 250 | enabled: true |
| 251 | .... |
| 252 | filter_factory: 'keystonemiddleware.audit:filter_factory' |
| 253 | map_file: '/etc/pycadf/glance_api_audit_map.conf' |
| 254 | .... |
| 255 | |
RobertJansen1 | 68e84f9 | 2017-03-30 15:45:12 +0200 | [diff] [blame] | 256 | Swift integration glance |
| 257 | |
| 258 | .. code-block:: yaml |
| 259 | |
| 260 | glance: |
| 261 | server: |
| 262 | enabled: true |
| 263 | version: mitaka |
| 264 | storage: |
| 265 | engine: swift,http |
| 266 | swift: |
| 267 | store: |
| 268 | auth: |
| 269 | address: http://keystone.example.com:5000/v2.0 |
| 270 | version: 2 |
| 271 | endpoint_type: publicURL |
| 272 | container: glance |
| 273 | create_container_on_put: true |
| 274 | retry_get_count: 5 |
| 275 | user: 2ec7966596504f59acc3a76b3b9d9291:glance-user |
| 276 | key: someRandomPassword |
| 277 | |
Michel Nederlof | 3a86781 | 2017-05-15 09:46:11 +0200 | [diff] [blame] | 278 | Another way, which also supports multiple swift backends, can be configured like this: |
| 279 | |
| 280 | .. code-block:: yaml |
| 281 | |
| 282 | glance: |
| 283 | server: |
| 284 | enabled: true |
| 285 | version: mitaka |
| 286 | storage: |
| 287 | engine: swift,http |
| 288 | swift: |
| 289 | store: |
| 290 | endpoint_type: publicURL |
| 291 | container: glance |
| 292 | create_container_on_put: true |
| 293 | retry_get_count: 5 |
| 294 | references: |
| 295 | my_objectstore_reference_1: |
| 296 | auth: |
| 297 | address: http://keystone.example.com:5000/v2.0 |
| 298 | version: 2 |
| 299 | user: 2ec7966596504f59acc3a76b3b9d9291:glance-user |
| 300 | key: someRandomPassword |
| 301 | |
Ondrej Smola | e695fe8 | 2017-04-28 12:22:28 +0200 | [diff] [blame] | 302 | Enable CORS parameters |
| 303 | |
| 304 | .. code-block:: yaml |
| 305 | |
| 306 | glance: |
| 307 | server: |
| 308 | cors: |
| 309 | allowed_origin: https:localhost.local,http:localhost.local |
| 310 | expose_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 311 | allow_methods: GET,PUT,POST,DELETE,PATCH |
| 312 | allow_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token |
| 313 | allow_credentials: True |
| 314 | max_age: 86400 |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 315 | |
Michel Nederlof | 3ad5aac | 2017-05-15 09:46:24 +0200 | [diff] [blame] | 316 | Enable Viewing Multiple Locations |
| 317 | --------------------------------- |
| 318 | If you want to expose all locations available (for example when you have |
| 319 | multiple backends configured), then you can configure this like so: |
| 320 | |
| 321 | .. code-block:: yaml |
| 322 | |
| 323 | glance: |
| 324 | server: |
| 325 | show_multiple_locations: True |
| 326 | location_strategy: store_type |
| 327 | store_type_preference: rbd,swift,file |
| 328 | |
| 329 | Please note: the show_multiple_locations option is deprecated since Newton and is planned |
| 330 | to be handled by policy files _only_ starting with the Pike release. |
| 331 | |
| 332 | This feature is convenient in a scenario when you have swift and rbd configured and want to |
| 333 | benefit from rbd enhancements. |
| 334 | |
| 335 | |
Oleg Iurchenko | 68ae355 | 2017-10-13 18:40:42 +0300 | [diff] [blame] | 336 | Barbican integration glance |
| 337 | --------------------------- |
| 338 | |
| 339 | .. code-block:: yaml |
| 340 | |
| 341 | glance: |
| 342 | server: |
| 343 | barbican: |
| 344 | enabled: true |
| 345 | |
| 346 | |
Richard Felkl | 4143a0e | 2017-02-01 23:24:13 +0100 | [diff] [blame] | 347 | Client role |
| 348 | ----------- |
| 349 | |
| 350 | Glance images |
| 351 | |
| 352 | .. code-block:: yaml |
| 353 | |
| 354 | glance: |
| 355 | client: |
| 356 | enabled: true |
| 357 | server: |
| 358 | profile_admin: |
| 359 | image: |
| 360 | cirros-test: |
| 361 | visibility: public |
| 362 | protected: false |
| 363 | location: http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-i386-disk.img |
Jiri Konecny | 0456cfa | 2016-04-20 16:47:25 +0200 | [diff] [blame] | 364 | |
Dmitry Kalashnik | dd0d028 | 2017-12-06 12:45:31 +0400 | [diff] [blame] | 365 | Enhanced logging with logging.conf |
| 366 | ---------------------------------- |
| 367 | |
| 368 | By default logging.conf is disabled. |
| 369 | |
| 370 | That is possible to enable per-binary logging.conf with new variables: |
| 371 | * openstack_log_appender - set it to true to enable log_config_append for all OpenStack services; |
| 372 | * openstack_fluentd_handler_enabled - set to true to enable FluentHandler for all Openstack services. |
Oleksii Chupryn | 90a2e64 | 2018-02-06 19:53:06 +0200 | [diff] [blame] | 373 | * openstack_ossyslog_handler_enabled - set to true to enable OSSysLogHandler for all Openstack services. |
Dmitry Kalashnik | dd0d028 | 2017-12-06 12:45:31 +0400 | [diff] [blame] | 374 | |
Oleksii Chupryn | 90a2e64 | 2018-02-06 19:53:06 +0200 | [diff] [blame] | 375 | Only WatchedFileHandler, OSSysLogHandler and FluentHandler are available. |
Dmitry Kalashnik | dd0d028 | 2017-12-06 12:45:31 +0400 | [diff] [blame] | 376 | |
| 377 | Also it is possible to configure this with pillar: |
| 378 | |
| 379 | .. code-block:: yaml |
| 380 | |
| 381 | glance: |
| 382 | server: |
| 383 | logging: |
| 384 | log_appender: true |
| 385 | log_handlers: |
| 386 | watchedfile: |
| 387 | enabled: true |
| 388 | fluentd: |
| 389 | enabled: true |
Oleksii Chupryn | 90a2e64 | 2018-02-06 19:53:06 +0200 | [diff] [blame] | 390 | ossyslog: |
| 391 | enabled: true |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 392 | |
| 393 | Usage |
| 394 | ===== |
| 395 | |
| 396 | Import new public image |
Jiri Konecny | 0456cfa | 2016-04-20 16:47:25 +0200 | [diff] [blame] | 397 | |
| 398 | .. code-block:: yaml |
| 399 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 400 | glance image-create --name 'Windows 7 x86_64' --is-public true --container-format bare --disk-format qcow2 < ./win7.qcow2 |
Jiri Konecny | 0456cfa | 2016-04-20 16:47:25 +0200 | [diff] [blame] | 401 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 402 | Change new image's disk properties |
Petr Michalec | 86ec014 | 2016-11-29 16:34:15 +0100 | [diff] [blame] | 403 | |
| 404 | .. code-block:: yaml |
| 405 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 406 | glance image-update "Windows 7 x86_64" --property hw_disk_bus=ide |
Petr Michalec | 86ec014 | 2016-11-29 16:34:15 +0100 | [diff] [blame] | 407 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 408 | Change new image's NIC properties |
Jakub Pavlik | 80a41ea | 2016-03-06 14:33:42 +0100 | [diff] [blame] | 409 | |
| 410 | .. code-block:: yaml |
| 411 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 412 | glance image-update "Windows 7 x86_64" --property hw_vif_model=rtl8139 |
Jakub Pavlik | 80a41ea | 2016-03-06 14:33:42 +0100 | [diff] [blame] | 413 | |
Jiri Konecny | 0456cfa | 2016-04-20 16:47:25 +0200 | [diff] [blame] | 414 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 415 | External links |
| 416 | ============== |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 417 | |
| 418 | * http://ceph.com/docs/master/rbd/rbd-openstack/ |
| 419 | |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 420 | |
Jakub Pavlik | 9e85d17 | 2016-05-20 11:13:14 +0200 | [diff] [blame] | 421 | Documentation and Bugs |
Aleš Komárek | e5b388f | 2017-02-06 15:48:57 +0100 | [diff] [blame] | 422 | ====================== |
Filip Pytloun | d681ae2 | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 423 | |
Jakub Pavlik | 9e85d17 | 2016-05-20 11:13:14 +0200 | [diff] [blame] | 424 | To learn how to deploy OpenStack Salt, consult the documentation available |
| 425 | online at: |
| 426 | |
| 427 | https://wiki.openstack.org/wiki/OpenStackSalt |
| 428 | |
| 429 | In the unfortunate event that bugs are discovered, they should be reported to |
| 430 | the appropriate bug tracker. If you obtained the software from a 3rd party |
| 431 | operating system vendor, it is often wise to use their own bug tracker for |
| 432 | reporting problems. In all other cases use the master OpenStack bug tracker, |
| 433 | available at: |
| 434 | |
| 435 | http://bugs.launchpad.net/openstack-salt |
| 436 | |
| 437 | Developers wishing to work on the OpenStack Salt project should always base |
| 438 | their work on the latest formulas code, available from the master GIT |
| 439 | repository at: |
| 440 | |
| 441 | https://git.openstack.org/cgit/openstack/salt-formula-glance |
| 442 | |
| 443 | Developers should also join the discussion on the IRC list, at: |
| 444 | |
| 445 | https://wiki.openstack.org/wiki/Meetings/openstack-salt |
Filip Pytloun | e94a0a7 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 446 | |
| 447 | Documentation and Bugs |
| 448 | ====================== |
| 449 | |
| 450 | To learn how to install and update salt-formulas, consult the documentation |
| 451 | available online at: |
| 452 | |
| 453 | http://salt-formulas.readthedocs.io/ |
| 454 | |
| 455 | In the unfortunate event that bugs are discovered, they should be reported to |
| 456 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 457 | formula: |
| 458 | |
| 459 | https://github.com/salt-formulas/salt-formula-glance/issues |
| 460 | |
| 461 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 462 | use Launchpad salt-formulas project: |
| 463 | |
| 464 | https://launchpad.net/salt-formulas |
| 465 | |
| 466 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 467 | |
| 468 | https://launchpad.net/~salt-formulas-users |
| 469 | |
| 470 | Developers wishing to work on the salt-formulas projects should always base |
| 471 | their work on master branch and submit pull request against specific formula. |
| 472 | |
| 473 | https://github.com/salt-formulas/salt-formula-glance |
| 474 | |
| 475 | Any questions or feedback is always welcome so feel free to join our IRC |
| 476 | channel: |
| 477 | |
| 478 | #salt-formulas @ irc.freenode.net |