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.
- Kubernetes 1.19+
- Artifactory Pro trial license get one from here
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
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
To install the chart with the release name artifactory
:
helm upgrade --install artifactory jfrog/artifactory --namespace artifactory --create-namespace
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
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
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