Jakub Pavlik | 93707ec | 2016-08-10 11:35:18 +0200 | [diff] [blame] | 1 | |
| 2 | ================================== |
| 3 | ETCD Formula |
| 4 | ================================== |
| 5 | |
| 6 | Service etcd description |
| 7 | |
| 8 | Sample pillars |
| 9 | ============== |
| 10 | |
| 11 | Single etcd service |
| 12 | --------------------- |
| 13 | |
| 14 | .. code-block:: yaml |
| 15 | |
| 16 | etcd: |
| 17 | server: |
| 18 | enabled: true |
| 19 | bind: |
| 20 | host: 10.0.175.101 |
| 21 | token: $(uuidgen) |
| 22 | members: |
| 23 | - host: 10.0.175.101 |
| 24 | name: etcd01 |
| 25 | port: 4001 |
| 26 | |
| 27 | Cluster etcd service |
| 28 | ---------------------- |
| 29 | |
| 30 | .. code-block:: yaml |
| 31 | |
| 32 | etcd: |
| 33 | server: |
| 34 | enabled: true |
| 35 | bind: |
| 36 | host: 10.0.175.101 |
| 37 | token: $(uuidgen) |
| 38 | members: |
| 39 | - host: 10.0.175.101 |
| 40 | name: etcd01 |
| 41 | port: 4001 |
| 42 | - host: 10.0.175.102 |
| 43 | name: etcd02 |
| 44 | port: 4001 |
| 45 | - host: 10.0.175.103 |
| 46 | name: etcd03 |
| 47 | port: 4001 |
| 48 | |
| 49 | ETCD proxy |
| 50 | ------------- |
| 51 | |
| 52 | .. code-block:: yaml |
| 53 | |
| 54 | etcd: |
| 55 | server: |
| 56 | enabled: true |
| 57 | bind: |
| 58 | host: 10.0.175.101 |
Pavel Cizinsky | 8835dfa | 2016-08-10 15:09:25 +0200 | [diff] [blame] | 59 | proxy: true |
Jakub Pavlik | 93707ec | 2016-08-10 11:35:18 +0200 | [diff] [blame] | 60 | members: |
| 61 | - host: 10.0.175.101 |
| 62 | name: etcd01 |
| 63 | - host: 10.0.175.102 |
| 64 | name: etcd02 |
| 65 | - host: 10.0.175.103 |
| 66 | name: etcd03 |
| 67 | |
marco | 9c1f23c | 2016-09-21 11:54:37 +0200 | [diff] [blame] | 68 | run ETCD on k8s |
| 69 | --------------- |
| 70 | |
| 71 | .. code-block:: yaml |
| 72 | |
| 73 | etcd: |
| 74 | server: |
| 75 | engine: kubernetes |
| 76 | |
Jakub Pavlik | 93707ec | 2016-08-10 11:35:18 +0200 | [diff] [blame] | 77 | Read more |
| 78 | ========= |
| 79 | |
| 80 | * links |
Filip Pytloun | 0684f01 | 2017-02-02 13:02:03 +0100 | [diff] [blame^] | 81 | |
| 82 | Documentation and Bugs |
| 83 | ====================== |
| 84 | |
| 85 | To learn how to install and update salt-formulas, consult the documentation |
| 86 | available online at: |
| 87 | |
| 88 | http://salt-formulas.readthedocs.io/ |
| 89 | |
| 90 | In the unfortunate event that bugs are discovered, they should be reported to |
| 91 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 92 | formula: |
| 93 | |
| 94 | https://github.com/salt-formulas/salt-formula-etcd/issues |
| 95 | |
| 96 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 97 | use Launchpad salt-formulas project: |
| 98 | |
| 99 | https://launchpad.net/salt-formulas |
| 100 | |
| 101 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 102 | |
| 103 | https://launchpad.net/~salt-formulas-users |
| 104 | |
| 105 | Developers wishing to work on the salt-formulas projects should always base |
| 106 | their work on master branch and submit pull request against specific formula. |
| 107 | |
| 108 | https://github.com/salt-formulas/salt-formula-etcd |
| 109 | |
| 110 | Any questions or feedback is always welcome so feel free to join our IRC |
| 111 | channel: |
| 112 | |
| 113 | #salt-formulas @ irc.freenode.net |