Create a unique Join Key

ARTIFACTORY: Installation Quick Start Guide - Helm

AuthorFullName__c
Paul Pan
articleNumber
000005199
ft:sourceType
Salesforce
FirstPublishedDate
2022-01-13T19:22:21Z
lastModifiedDate
2024-03-13T08:56:30Z
VersionNumber
14

By default the chart will also set a Join Key value for you. For a production environment we highly recommend setting a unique value.

# Create a join key
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

$ kubectl create secret generic joinkey-secret --from-literal=join-key=${JOIN_KEY}