Skip to content

Commit

Permalink
Fix readme use to -hex 32 instead of -hex 16
Browse files Browse the repository at this point in the history
  • Loading branch information
chukka committed Apr 1, 2020
1 parent 327226b commit 6c0f441
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions stable/artifactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# JFrog Artifactory Chart Changelog
All changes to this chart will be documented in this file.

## [9.2.5] - Apr 1, 2020
* Fix readme use to `-hex 32` instead of `-hex 16`

## [9.2.4] - Mar 31, 2020
* Change the way the artifactory `command:` is set so it will properly pass a SIGTERM to java

Expand Down
2 changes: 1 addition & 1 deletion stable/artifactory/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: artifactory
home: https://www.jfrog.com/artifactory/
version: 9.2.4
version: 9.2.5
appVersion: 7.3.2
description: Universal Repository Manager supporting all major packaging formats,
build tools and CI servers.
Expand Down
8 changes: 4 additions & 4 deletions stable/artifactory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ Artifactory requires a unique join key. By default the chart has one set in valu
You should generate a unique key and pass it to the template at install/upgrade time.
```bash
# Create a key
export JOIN_KEY=$(openssl rand -hex 16)
export JOIN_KEY=$(openssl rand -hex 32)
echo ${JOIN_KEY}
# Pass the created join key to helm
Expand All @@ -341,7 +341,7 @@ helm install --name artifactory --set artifactory.joinKey=${JOIN_KEY} jfrog/arti
Alternatively, you can create a secret containing the join key manually and pass it to the template at install/upgrade time.
```bash
# Create a key
export JOIN_KEY=$(openssl rand -hex 16)
export JOIN_KEY=$(openssl rand -hex 32)
echo ${JOIN_KEY}
# Create a secret containing the key. The key in the secret must be named join-key
Expand Down Expand Up @@ -880,9 +880,9 @@ The following table lists the configurable parameters of the artifactory chart a
| `artifactory.livenessProbe.timeoutSeconds` | When the probe times out | 10 |
| `artifactory.livenessProbe.successThreshold` | Minimum consecutive successes for the probe to be considered successful after having failed. | 1 |
| `artifactory.livenessProbe.failureThreshold` | Minimum consecutive failures for the probe to be considered failed after having succeeded. | 10 |
| `artifactory.masterKey` | Artifactory Master Key. A 128-Bit key size (hexadecimal encoded) string (32 hex characters). Can be generated with `openssl rand -hex 16`. NOTE: This key is generated only once and cannot be updated once created | `` |
| `artifactory.masterKey` | Artifactory Master Key. A 128-Bit key size (hexadecimal encoded) string (32 hex characters). Can be generated with `openssl rand -hex 32`. NOTE: This key is generated only once and cannot be updated once created | `` |
| `artifactory.masterKeySecretName` | Artifactory Master Key secret name | |
| `artifactory.joinKey` | Join Key to connect other services to Artifactory. Can be generated with `openssl rand -hex 16` | `EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE` |
| `artifactory.joinKey` | Join Key to connect other services to Artifactory. Can be generated with `openssl rand -hex 32` | `EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE` |
| `artifactory.admin.ip` | Artifactory admin ip to be set upon startup, can use (*) for 0.0.0.0| `127.0.0.1` |
| `artifactory.admin.username` | Artifactory admin username to be set upon startup| `admin` |
| `artifactory.admin.password` | Artifactory admin password to be set upon startup| |
Expand Down

0 comments on commit 6c0f441

Please sign in to comment.