Merge pull request #1195 from tompizmor/zookeeper_values_lists

Clarify zookeeper serverUsers and serverPasswords input format
This commit is contained in:
Carlos Rodríguez Hernández
2019-05-23 09:53:02 +02:00
committed by GitHub
4 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: zookeeper
version: 2.2.1
version: 2.2.2
appVersion: 3.4.14
description: A centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services for distributed applications.
keywords:

View File

@@ -75,8 +75,8 @@ The following tables lists the configurable parameters of the Zookeeper chart an
| `auth.enabled` | Enable Zookeeper auth | `false` |
| `auth.clientUser` | User that will use Zookeeper clients to auth | `nil` |
| `auth.clientPassword` | Password that will use Zookeeper clients to auth | `nil` |
| `auth.serverUsers` | List of user to be created | `[]` |
| `auth.serverPasswords` | List of passwords to assign to users when created | `[]` |
| `auth.serverUsers` | List of user to be created | `nil` |
| `auth.serverPasswords` | List of passwords to assign to users when created | `nil` |
| `heapSize` | Size in MB for the Java Heap options (Xmx and XMs) | `[]` |
| `logLevel` | Log level of Zookeeper server | `ERROR` |
| `jvmFlags` | Default JVMFLAGS for the ZooKeeper process | `nil` |

View File

@@ -96,12 +96,12 @@ auth:
## Password that will use Zookeeper clients to auth
##
# clientPassword:
## Comma, semicolon or whitespace separated list of user to be created. Example: user1,user2,admin
## Comma, semicolon or whitespace separated list of user to be created. Specify them as a string, for example: "user1,user2,admin"
##
# serverUsers: []
## Comma, semicolon or whitespace separated list of passwords to assign to users when created. Example: pass4user1, pass4user2, pass4admin
# serverUsers: ""
## Comma, semicolon or whitespace separated list of passwords to assign to users when created. Specify them as a string, for example: "pass4user1, pass4user2, pass4admin"
##
# serverPasswords: []
# serverPasswords: ""
## Size in MB for the Java Heap options (Xmx and XMs). This env var is ignored if Xmx an Xms are configured via JVMFLAGS
##

View File

@@ -96,12 +96,12 @@ auth:
## Password that will use Zookeeper clients to auth
##
# clientPassword:
## Comma, semicolon or whitespace separated list of user to be created. Example: user1,user2,admin
## Comma, semicolon or whitespace separated list of user to be created. Specify them as a string, for example: "user1,user2,admin"
##
# serverUsers: []
## Comma, semicolon or whitespace separated list of passwords to assign to users when created. Example: pass4user1, pass4user2, pass4admin
# serverUsers: ""
## Comma, semicolon or whitespace separated list of passwords to assign to users when created. Specify them as a string, for example: "pass4user1, pass4user2, pass4admin"
##
# serverPasswords: []
# serverPasswords: ""
## Size in MB for the Java Heap options (Xmx and XMs). This env var is ignored if Xmx an Xms are configured via JVMFLAGS
##