nixos/cassandra: Use docbook instead of markdown style
This commit is contained in:
parent
9ecd584785
commit
79f7f89442
@ -229,11 +229,11 @@ in {
|
|||||||
example = literalExample "null";
|
example = literalExample "null";
|
||||||
description = ''
|
description = ''
|
||||||
Set the interval how often full repairs are run, i.e.
|
Set the interval how often full repairs are run, i.e.
|
||||||
`nodetool repair --full` is executed. See
|
<literal>nodetool repair --full</literal> is executed. See
|
||||||
https://cassandra.apache.org/doc/latest/operating/repair.html
|
https://cassandra.apache.org/doc/latest/operating/repair.html
|
||||||
for more information.
|
for more information.
|
||||||
|
|
||||||
Set to `null` to disable full repairs.
|
Set to <literal>null</literal> to disable full repairs.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
fullRepairOptions = mkOption {
|
fullRepairOptions = mkOption {
|
||||||
@ -250,11 +250,11 @@ in {
|
|||||||
example = literalExample "null";
|
example = literalExample "null";
|
||||||
description = ''
|
description = ''
|
||||||
Set the interval how often incremental repairs are run, i.e.
|
Set the interval how often incremental repairs are run, i.e.
|
||||||
`nodetool repair` is executed. See
|
<literal>nodetool repair<literal> is executed. See
|
||||||
https://cassandra.apache.org/doc/latest/operating/repair.html
|
https://cassandra.apache.org/doc/latest/operating/repair.html
|
||||||
for more information.
|
for more information.
|
||||||
|
|
||||||
Set to `null` to disable incremental repairs.
|
Set to <literal>null</literal> to disable incremental repairs.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
incrementalRepairOptions = mkOption {
|
incrementalRepairOptions = mkOption {
|
||||||
@ -342,6 +342,8 @@ in {
|
|||||||
description = ''
|
description = ''
|
||||||
Roles that are allowed to access the JMX (e.g. nodetool)
|
Roles that are allowed to access the JMX (e.g. nodetool)
|
||||||
BEWARE: The passwords will be stored world readable in the nix-store.
|
BEWARE: The passwords will be stored world readable in the nix-store.
|
||||||
|
It's recommended to use your own protected file using
|
||||||
|
<literal>jmxRolesFile</literal>
|
||||||
|
|
||||||
Doesn't work in versions older than 3.11 because they don't like that
|
Doesn't work in versions older than 3.11 because they don't like that
|
||||||
it's world readable.
|
it's world readable.
|
||||||
@ -388,7 +390,8 @@ in {
|
|||||||
{ assertion = cfg.remoteJmx -> cfg.jmxRolesFile != null;
|
{ assertion = cfg.remoteJmx -> cfg.jmxRolesFile != null;
|
||||||
message = ''
|
message = ''
|
||||||
If you want JMX available remotely you need to set a password using
|
If you want JMX available remotely you need to set a password using
|
||||||
`jmxRoles` or `jmxRolesFile` if using Cassandra older than v3.11.
|
<literal>jmxRoles</literal> or <literal>jmxRolesFile</literal> if
|
||||||
|
using Cassandra older than v3.11.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user