-
Notifications
You must be signed in to change notification settings - Fork 634
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #472 from untergeek/doc/450
Release of 3.3.0
- Loading branch information
Showing
7 changed files
with
114 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '3.3.0.dev4' | ||
__version__ = '3.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[[certificate]] | ||
== --certificate | ||
|
||
[float] | ||
Summary | ||
~~~~~~~ | ||
|
||
Allows the use of a specified CA certificate file to validate the SSL certificate | ||
used by Elasticsearch. | ||
|
||
[float] | ||
Flags | ||
~~~~~ | ||
|
||
* `--certificate` Path to certificate to use for SSL validation. | ||
|
||
IMPORTANT: This flag must come before any <<commands,command>>. | ||
|
||
[float] | ||
Example | ||
~~~~~~~ | ||
|
||
Connect to a cluster at `https://example.com/` via SSL and verify the | ||
certificate with the provided CA certificate file: | ||
|
||
--------------------------------------------------------------------- | ||
curator --host example.com --port 443 --use_ssl --certificate /path/to/cacert.pem <<command>> <<flags>> | ||
--------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[[ssl-no-validate]] | ||
== --ssl-no-validate | ||
|
||
[float] | ||
Summary | ||
~~~~~~~ | ||
|
||
If access to your Elasticsearch instance is protected by SSL encryption, you | ||
may use the `--ssl-no-validate` flag to disable SSL certificate verification. | ||
|
||
Valid use cases for this flag include the use of self-signed certificates that | ||
cannot be otherwise verified and would generate error messages. | ||
|
||
NOTE: The use of this flag will likely result in a warning message that your SSL | ||
certificates are not trusted. This is expected behavior. | ||
|
||
[float] | ||
Flags | ||
~~~~~ | ||
|
||
* `--ssl-no-validate` Do not validate SSL certificate | ||
|
||
IMPORTANT: This flag must come before any <<commands,command>>. | ||
|
||
[float] | ||
Example | ||
~~~~~~~ | ||
|
||
Connect to a cluster at `https://example.com/` via SSL but do not verify the | ||
certificate: | ||
|
||
--------------------------------------------------------------------- | ||
curator --host example.com --port 443 --use_ssl --ssl-no-validate <<command>> <<flags>> | ||
--------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters