This topics explains how to update the Access configuration file (access.config.latest.yaml)
on an Artifactory instance that is installed using Helm.
The chart uses the Access Patch method of modifying the Access config, which means you only need to add the values that you want to modify (no need to add the default values).
Modify the Access configuration
In your values.yaml
file, under the access.accessConfig
key, you must add all of the configurations that you want to change. They must be indented and ordered as in the actual configuration file. For example, if you want to configure the following values:
security: tls: enabled: true user-lock-policy: attempts: 5 token: refresh-expiry: 100000
You must paste the configuration given above under the access.accessConfig
key:
access: accessConfig: security: tls: enabled: true user-lock-policy: attempts: 5 token: refresh-expiry: 100000
Warning
The templates accept values exactly as provided. Any mistakes in value order, indentation, or typos will prevent the configuration file from initializing, which could cause Access to crash.