mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Allow node to enroll to cluster on startup (#77718)
The functionality to enroll a new node to a cluster was introduced in #77292 as a CLI tool. This change replaces this CLI tool with the option to trigger the enrollment functionality on startup of elasticsearch via a named argument that can be passed to the elasticsearch startup script (--enrollment-token) so that the users that want to enroll a node to a cluster can do this with one command instead of two. In a followup PR we are introducing a CLI tool version of this functionality, that can be used to reconfigure packaged installations.
This commit is contained in:
parent
e82a70ca6c
commit
5d3b6bf2f7
29 changed files with 766 additions and 1228 deletions
|
@ -33,11 +33,13 @@ include-tagged::{doc-tests}/EnrollmentDocumentationIT.java[{api}-response]
|
|||
for the HTTP layer, as a Base64 encoded string of the ASN.1 DER encoding of the key.
|
||||
<2> The CA certificate that can be used by the new node in order to sign its certificate
|
||||
for the HTTP layer, as a Base64 encoded string of the ASN.1 DER encoding of the certificate.
|
||||
<3> The private key that the node can use for TLS for its transport layer, as a Base64
|
||||
<3> The CA certificate that is used to sign the TLS certificate for the transport layer, as
|
||||
a Base64 encoded string of the ASN.1 DER encoding of the certificate.
|
||||
<4> The private key that the node can use for TLS for its transport layer, as a Base64
|
||||
encoded string of the ASN.1 DER encoding of the key.
|
||||
<4> The certificate that the node can use for TLS for its transport layer, as a Base64
|
||||
<5> The certificate that the node can use for TLS for its transport layer, as a Base64
|
||||
encoded string of the ASN.1 DER encoding of the certificate.
|
||||
<5> A list of transport addresses in the form of `host:port` for the nodes that are already
|
||||
<6> A list of transport addresses in the form of `host:port` for the nodes that are already
|
||||
members of the cluster.
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue