# Install Cytomine on Kubernetes
TIP
If you experiment any issues, please describe your problem precisely in our ticket system on Github. (opens new window)
WARNING
This Helm chart is under active development and may be unstable. Use it at your own risk!
# Prerequisites
- Git
- A Kubernetes cluster
- Helm (opens new window) (v3.0+ recommended)
# Installation
Clone the Helm chart repository:
git clone https://github.com/cytomine/cytomine-helm.git cd cytomine-helm
1
2Configure the values in
cytomine-helm/charts/cytomine/values.yaml
:# Your domain name global: domainName: null
1
2
3All other values can use the default settings.
Install the Cytomine Helm chart with a release name
cytomine
in the namespacecytomine-production
:helm install cytomine charts/cytomine -n cytomine-production --create-namespace
1TIP
cytomine
can be changed to another release name.cytomine-production
can be changed to another namespace.
# Uninstallation
To uninstall Cytomine in Kubernetes:
helm uninstall cytomine -n cytomine-production
1