Vasyl Saienko | 7a4ae40 | 2018-01-30 16:37:14 +0200 | [diff] [blame] | 1 | ============== |
| 2 | Manila Formula |
| 3 | ============== |
| 4 | |
| 5 | Manila is an OpenStack project to provide “Shared Filesystems as a service”. |
| 6 | |
| 7 | Sample pillars |
| 8 | ============== |
| 9 | |
| 10 | Single manila service |
| 11 | |
| 12 | .. code-block:: yaml |
| 13 | |
| 14 | manila: |
| 15 | common: |
| 16 | database: |
| 17 | engine: mysql |
| 18 | host: 10.20.0.101 |
| 19 | port: 3306 |
| 20 | name: manila |
| 21 | user: manila |
| 22 | password: segreto |
| 23 | identity: |
| 24 | engine: keystone |
| 25 | host: 10.20.0.101 |
| 26 | port: 35357 |
| 27 | user: manila |
| 28 | password: segreto |
| 29 | region: RegionOne |
| 30 | tenant: service |
| 31 | endpoint_type: internalURL |
| 32 | cache: |
| 33 | engine: memcached |
| 34 | members: |
| 35 | - host: 10.20.0.102 |
| 36 | port: 11211 |
| 37 | - host: 10.20.0.103 |
| 38 | port: 11211 |
| 39 | - host: 10.20.0.104 |
| 40 | port: 11211 |
| 41 | api: |
| 42 | bind: |
| 43 | host: 10.20.0.102 |
| 44 | |
| 45 | |
Vasyl Saienko | bf5c120 | 2018-03-01 22:24:14 +0200 | [diff] [blame] | 46 | Backend configuration |
| 47 | ===================== |
| 48 | |
| 49 | |
Vasyl Saienko | ae9441c | 2018-03-02 12:08:54 +0200 | [diff] [blame] | 50 | Nexenta driver |
Vasyl Saienko | bf5c120 | 2018-03-01 22:24:14 +0200 | [diff] [blame] | 51 | |
| 52 | .. code-block:: yaml |
| 53 | |
| 54 | manila: |
| 55 | share: |
| 56 | enabled_share_backends: |
| 57 | nexenta: |
| 58 | name: nexenta |
| 59 | type: nexenta |
| 60 | enabled: true |
| 61 | dhss: false |
| 62 | nexenta_host: 1.2.3.4 |
| 63 | nexenta_password: secretpassword |
| 64 | nexenta_user: nonexistent |
| 65 | nexenta_volume: volume1 |
| 66 | |
Vasyl Saienko | ae9441c | 2018-03-02 12:08:54 +0200 | [diff] [blame] | 67 | Glusterfs driver |
| 68 | |
| 69 | .. code-block:: yaml |
| 70 | |
| 71 | |
| 72 | manila: |
| 73 | share: |
| 74 | enabled_share_backends: |
| 75 | glusterfs: |
| 76 | name: glusterfs |
| 77 | type: glusterfs |
| 78 | enabled: true |
| 79 | share_driver: manila.share.drivers.glusterfs_native.GlusterfsNativeShareDriver |
| 80 | dhss: false |
| 81 | glusterfs_ganesha_server_ip: 1.2.3.4 |
| 82 | glusterfs_ganesha_server_password: secretpassword |
| 83 | glusterfs_ganesha_server_username: nonexistent |
| 84 | glusterfs_mount_point_base: state_path/mnt |
| 85 | glusterfs_server_password: secretpassword |
| 86 | glusterfs_path_to_private_key: /path/to/key |
| 87 | glusterfs_nfs_server_type: glusterfs |
| 88 | glusterfs_share_layout: share_layout |
| 89 | glusterfs_target: remove:target |
| 90 | glusterfs_servers: |
| 91 | - server1 |
| 92 | - server2 |
| 93 | glusterfs_volume_pattern: manila-share-volume-d+$ |
| 94 | |
| 95 | |
Vasyl Saienko | 7a4ae40 | 2018-01-30 16:37:14 +0200 | [diff] [blame] | 96 | More information |
| 97 | ================ |
| 98 | |
| 99 | * https://wiki.openstack.org/wiki/Telemetry |
| 100 | * https://docs.openstack.org/developer/manila/ |
| 101 | * https://github.com/openstack/manila |
| 102 | * https://bugs.launchpad.net/manila |
| 103 | |
| 104 | |
| 105 | Documentation and Bugs |
| 106 | ====================== |
| 107 | |
| 108 | To learn how to install and update salt-formulas, consult the documentation |
| 109 | available online at: |
| 110 | |
| 111 | http://salt-formulas.readthedocs.io/ |
| 112 | |
| 113 | In the unfortunate event that bugs are discovered, they should be reported to |
| 114 | the appropriate issue tracker. Use GitHub issue tracker for specific salt |
| 115 | formula: |
| 116 | |
| 117 | https://github.com/salt-formulas/salt-formula-manila/issues |
| 118 | |
| 119 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 120 | use Launchpad salt-formulas project: |
| 121 | |
| 122 | https://launchpad.net/salt-formulas |
| 123 | |
| 124 | Developers wishing to work on the salt-formulas projects should always base |
| 125 | their work on master branch and submit pull request against specific formula. |
| 126 | |
| 127 | You should also subscribe to mailing list (salt-formulas@freelists.org): |
| 128 | |
| 129 | https://www.freelists.org/list/salt-formulas |
| 130 | |
| 131 | Any questions or feedback is always welcome so feel free to join our IRC |
| 132 | channel: |
| 133 | |
| 134 | #salt-formulas @ irc.freenode.net |