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