Step 2:

ARTIFACTORY: How to apply Artifactory tuning parameters when using Helm based Installations

AuthorFullName__c
Vignesh Surendrababu
articleNumber
000005507
ft:sourceType
Salesforce
FirstPublishedDate
2022-12-18T11:41:26Z
lastModifiedDate
2023-01-22T11:07:26Z
VersionNumber
2
Now, we can use the existing system.yaml file available to modify the values with the required parameters such as database maxConnections, maxThreads, extraJavaOpts to update custom runtime property.

Existing system.yaml
router:
  serviceRegistry:
    insecure: false
shared:
  logging:
    consoleLog:
      enabled: false
  extraJavaOpts: >
    -Dartifactory.access.client.max.connections=50
  database:
    type: postgresql
    url: "jdbc:postgresql://jfrt-postgresql:5432/artifactory"
    driver: org.postgresql.Driver
    username: "artifactory"
artifactory:
  database:
    maxOpenConnections: 80
  tomcat:
    maintenanceConnector:
      port: 8091
    connector:
      maxThreads: 200
      sendReasonPhrase: false
      extraConfig: acceptCount="100"
frontend:
  session:
    timeMinutes: "30"
access:
  database:
    maxOpenConnections: 80
  tomcat:
    connector:
      maxThreads: 50
      sendReasonPhrase: false
      extraConfig: acceptCount="100"
metadata:
  database:
    maxOpenConnections: 80
jfconnect:
  enabled: true