Helm (Kubernetes)
Add the
charts.jfrog.iorepository to your Helm client.helm repo add jfrog https://charts.jfrog.io
Update the Helm repository.
helm repo update
Installation requires Catalog, Cache, and Valkey. The following sample shows how to provide these in the
values.yamlfile.catalog: enabled: true cache: enabled: true valkey: enabled: trueRun the Helm install command to proceed with the installation. The following command shows how to pass the required values through a
values.yamlfile.helm upgrade --install xray jfrog/xray --namespace xray -f values.yaml
To access the logs, find the name of the Valkey pod using the following command:
kubectl --namespace <your namespace> get pods
To get the container logs, run the following command:
kubectl --namespace <your namespace> logs -f <name of the pod>
Helm (OpenShift)
Add the
charts.jfrog.iorepository to your Helm client.helm repo add jfrog https://charts.jfrog.io
Update the Helm repository.
helm repo update
Installation requires Catalog, Cache, and Valkey. The following sample shows how to provide these in the
values.yamlfile in the Xray installation.catalog: enabled: true containerSecurityContext: enabled: false podSecurityContext: enabled: false cache: enabled: true valkey: enabled: trueRun the Helm install command to proceed with the installation. The following command shows how to pass the required values through a
values.yamlfile.helm upgrade --install xray jfrog/xray --namespace xray -f values.yaml
To access the logs, find the name of the Valkey pod using the following command:
kubectl --namespace <your namespace> get pods
To get the container logs, run the following command:
kubectl --namespace <your namespace> logs -f <name of the pod>