How it Works:

JFROG PLATFORM: Getting started with the JFrog Platform Helm Chart

AuthorFullName__c
Ashraf Kherbawy
articleNumber
000005655
ft:sourceType
Salesforce
FirstPublishedDate
2023-03-30T09:55:40Z
lastModifiedDate
2023-03-30
VersionNumber
3
The JFrog Platform deploys each independent JFrog product chart simultaneously. This means enabling Artifactory, Xray, and Distribution in your values.yaml file will result in the deployment of all three products as shown below example.
artifactory:
  enabled: true
xray:
  enabled: true
distribution:
  enabled: true
In turn, this will deploy each product chart, with the provided values that you configure (You may see the list of our charts here). With this in mind, we can configure each chart’s sub-section, with any values that it has in its corresponding chart. To further explain, let’s take a look at this example:
artifactory:
  enabled: true
  mc:
    enabled: true
  artifactory: 
    replicaCount: 2
xray:
  enabled: true
distribution:
  enabled: true
All of the added values under Artifactory can be found in Artifactory’s chart, and the same logic applies to the rest of the products.

Important to note that all of the products are enabled by default, so you will have to specify which products you don’t want to enable, including the non-JFrog products, such as RabbitMQ.