Skip to content

Latest commit

 

History

History

artifactory

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

JFrog Artifactory Helm Chart

IMPORTANT! Our Helm Chart docs have moved to our main documentation site. Below you will find the basic instructions for installing, uninstalling, and deleting Artifactory. For all other information, refer to Installing Artifactory.

Prerequisites

Chart Details

This chart will do the following:

  • Deploy Artifactory-Pro/Artifactory-Edge (or OSS/CE if custom image is set)
  • Deploy a PostgreSQL database using the stable/postgresql chart (can be changed) NOTE: For production grade installations it is recommended to use an external PostgreSQL.
  • Deploy an optional Nginx server
  • Optionally expose Artifactory with Ingress Ingress documentation

Installing the Chart

Add JFrog Helm repository

Before installing JFrog helm charts, you need to add the JFrog helm repository to your helm client

helm repo add jfrog https://charts.jfrog.io
helm repo update

Install Chart

To install the chart with the release name artifactory:

helm upgrade --install artifactory jfrog/artifactory --namespace artifactory --create-namespace

Apply Sizing configurations to the Chart

Note that sizings with more than one replica require an enterprise license for HA . Refer here To apply the chart with recommended sizing configurations : For small configurations :

helm upgrade --install artifactory jfrog/artifactory -f sizing/artifactory-small.yaml --namespace artifactory --create-namespace

Uninstalling Artifactory

Uninstall is supported only on Helm v3 and on.

Uninstall Artifactory using the following command.

helm uninstall artifactory && sleep 90 && kubectl delete pvc -l app=artifactory

Deleting Artifactory

IMPORTANT: Deleting Artifactory will also delete your data volumes and you will lose all of your data. You must back up all this information before deletion. You do not need to uninstall Artifactory before deleting it.

To delete Artifactory use the following command.

helm delete artifactory --namespace artifactory