[bitnami/zookeeper] Enable automatic purging of snapshots by default (#21918)

* [bitnami/zookeeper] Enable automatic purging of snapshots by default

Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>

* Clarify chart documentation w.r.t. disabling auto purging

Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>

---------

Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
This commit is contained in:
Florian Heilmann
2024-01-15 11:08:47 +01:00
committed by GitHub
parent 8af2062c32
commit d60fae7354
2 changed files with 5 additions and 5 deletions

View File

@@ -111,8 +111,8 @@ The command removes all the Kubernetes components associated with the chart and
| `fourlwCommandsWhitelist` | A list of comma separated Four Letter Words commands that can be executed | `srvr, mntr, ruok` |
| `minServerId` | Minimal SERVER_ID value, nodes increment their IDs respectively | `1` |
| `listenOnAllIPs` | Allow ZooKeeper to listen for connections from its peers on all available IP addresses | `false` |
| `autopurge.snapRetainCount` | The most recent snapshots amount (and corresponding transaction logs) to retain | `3` |
| `autopurge.purgeInterval` | The time interval (in hours) for which the purge task has to be triggered | `0` |
| `autopurge.snapRetainCount` | The most recent snapshots amount (and corresponding transaction logs) to retain | `10` |
| `autopurge.purgeInterval` | The time interval (in hours) for which the purge task has to be triggered | `1` |
| `logLevel` | Log level for the ZooKeeper server. ERROR by default | `ERROR` |
| `jvmFlags` | Default JVM flags for the ZooKeeper process | `""` |
| `dataLogDir` | Dedicated data log directory | `""` |

View File

@@ -185,11 +185,11 @@ listenOnAllIPs: false
autopurge:
## @param autopurge.snapRetainCount The most recent snapshots amount (and corresponding transaction logs) to retain
##
snapRetainCount: 3
snapRetainCount: 10
## @param autopurge.purgeInterval The time interval (in hours) for which the purge task has to be triggered
## Set to a positive integer to enable the auto purging
## Set to a positive integer to enable the auto purging. Set to 0 to disable auto purging.
##
purgeInterval: 0
purgeInterval: 1
## @param logLevel Log level for the ZooKeeper server. ERROR by default
## Have in mind if you set it to INFO or WARN the ReadinessProve will produce a lot of logs
##