Replies: 1 comment 8 replies
-
@Fissium You are using a version from the master branch ("beta") —TLS support will be included in the upcoming 2.2.0 release. Good catch, thanks! @klention We need to add TLS support for the etcd cluster deployed on dedicated servers. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use a single etcd cluster to connect multiple Patroni clusters. However, there is an issue with certificates. If I run the playbook
etcd_cluster.yml
with the parametertls_cert_generate: true
, an error occurs when copying certificates from the PostgreSQL master node (which is expected, since the cluster does not exist yet). If I deploy etcd with the parametertls_cert_generate: false
, everything works fine. However, when deploying the Patroni cluster withdcs_exists: true
andtls_cert_generate: true
, the certificates will not be copied to the etcd cluster nodes. Moreover, the etcd configuration will lack entries likeETCD_CERT_FILE
because it was deployed withtls_cert_generate: false
. What is the best approach in this situation when I want to deploy a separate etcd cluster but still use SSL?Beta Was this translation helpful? Give feedback.
All reactions