How to install JSM on kubernetes using the Helm charts ?
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
This article addresses the installation of Jira Service Management on a Kubernetes cluster. Installation using Helm chart documentation does not explicitly mention Jira Service Management as an option for the product placeholder in the Helm installation guide.
Environment
JSM 5.x, 10.x
Solution
Follow Installation using Helm chart documentation to obtain values.yaml file and for all other installation steps.
Further modify values.yaml like following. Here JSM docker image repository and tag has to be mentioned. JSM images are listed atlassian/jira-servicemanagement
1
2
3
image:
repository: atlassian/jira-servicemanagement
tag: 5.12.17-jdk17
Use the product placeholder 'jira' for Jira Service Management in the Helm install command.
So, Helm install command for Jira Service Management would be:
1
2
3
4
5
helm install <release-name> \
atlassian-data-center/jira \
--namespace <namespace> \
--version <chart-version> \
--values values.yaml
Was this helpful?