Pavel Cizinsky | 8236144 | 2016-11-25 14:26:47 +0100 | [diff] [blame] | 1 | |
Aleš Komárek | 53c944b | 2017-02-06 14:08:15 +0100 | [diff] [blame] | 2 | ================= |
| 3 | Designate formula |
| 4 | ================= |
| 5 | |
| 6 | Designate provides DNSaaS services for OpenStack. |
| 7 | |
| 8 | Sample pillars |
| 9 | ============== |
Pavel Cizinsky | 8236144 | 2016-11-25 14:26:47 +0100 | [diff] [blame] | 10 | |
| 11 | .. code:: yaml |
| 12 | |
| 13 | designate: |
| 14 | server: |
Alexander Noskov | 6845a20 | 2017-03-07 17:10:58 +0400 | [diff] [blame] | 15 | backend: |
| 16 | bind9: |
| 17 | rndc_key: AahjHKbdslHOLs42h/asQA== |
Pavel Cizinsky | 8236144 | 2016-11-25 14:26:47 +0100 | [diff] [blame] | 18 | database: |
| 19 | host: ${_param:database_vip_address} |
| 20 | notification: true |
| 21 | message_queue: |
| 22 | members: |
| 23 | - host: ${_param:messaging_node01_address} |
| 24 | - host: ${_param:messaging_node02_address} |
| 25 | - host: ${_param:messaging_node03_address} |
| 26 | pool: |
| 27 | pool_id: cae73b6f-95eb-4a7d-a567-099ae6176e08 |
| 28 | nameservers: |
| 29 | - uuid: 690d7bc8-811b-404c-abcc-9cec54d87092 |
| 30 | host: ${_param:cluster_node01_address} |
| 31 | port: 53 |
| 32 | - uuid: bc5ddcf0-8d95-4f87-b435-9ff831a4a14c |
| 33 | host: ${_param:cluster_node02_address} |
| 34 | port: 53 |
| 35 | - uuid: a43d5375-a5ec-4077-8c87-ec0b08fa3bd1 |
| 36 | host: ${_param:cluster_node03_address} |
| 37 | port: 53 |
| 38 | targets: |
| 39 | uuid: f26e0b32-736f-4f0a-831b-039a415c481e |
| 40 | options: 'port: 53, host: 127.0.0.1' |
| 41 | masters: 127.0.0.1:5354 |
| 42 | type: bind9 |
| 43 | |
| 44 | Usage |
Aleš Komárek | 53c944b | 2017-02-06 14:08:15 +0100 | [diff] [blame] | 45 | ===== |
Pavel Cizinsky | 8236144 | 2016-11-25 14:26:47 +0100 | [diff] [blame] | 46 | |
| 47 | Create server |
| 48 | |
| 49 | .. code:: bash |
| 50 | |
| 51 | designate server-create --name ns.example.com. |
| 52 | |
| 53 | Create domain |
| 54 | |
| 55 | .. code:: bash |
| 56 | |
| 57 | designate domain-create --name example.com. --email mail@example.com |
| 58 | |
| 59 | Create record |
| 60 | |
| 61 | .. code:: bash |
| 62 | |
| 63 | designate record-create example.com. --name test.example.com. --type A --data 10.2.14.15 |
| 64 | |
| 65 | Test it |
| 66 | |
| 67 | .. code:: bash |
| 68 | |
| 69 | dig @127.0.0.1 test.example.com. |
Filip Pytloun | bfa7211 | 2017-02-02 13:17:47 +0100 | [diff] [blame] | 70 | |
| 71 | Documentation and Bugs |
| 72 | ====================== |
| 73 | |
| 74 | To learn how to install and update salt-formulas, consult the documentation |
| 75 | available online at: |
| 76 | |
| 77 | http://salt-formulas.readthedocs.io/ |
| 78 | |
| 79 | In the unfortunate event that bugs are discovered, they should be reported to |
| 80 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 81 | formula: |
| 82 | |
| 83 | https://github.com/salt-formulas/salt-formula-letsencrypt/issues |
| 84 | |
| 85 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 86 | use Launchpad salt-formulas project: |
| 87 | |
| 88 | https://launchpad.net/salt-formulas |
| 89 | |
| 90 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 91 | |
| 92 | https://launchpad.net/~salt-formulas-users |
| 93 | |
| 94 | Developers wishing to work on the salt-formulas projects should always base |
| 95 | their work on master branch and submit pull request against specific formula. |
| 96 | |
| 97 | https://github.com/salt-formulas/salt-formula-letsencrypt |
| 98 | |
| 99 | Any questions or feedback is always welcome so feel free to join our IRC |
| 100 | channel: |
| 101 | |
| 102 | #salt-formulas @ irc.freenode.net |