We have deployed jira-software using official chart. Want to add jira-servicemanagement to same instance. We can upload jira-servicemangement application to existing instance but want to know if Atlassian has combine image for jira-software and jira-servicemanagement?
Hello, @Munjal Patel ! It's been some time!
As far as I know, there is no "all-in-one" image that combines Jira Software and Jira Service Management.
You can curl jsm in a custom Jira Software Dockerfile and do smth like:
RUN unzip /opt/jira-servicedesk-application-${JSM_VERSION}.obr -d /opt/jsm \ && ls /opt/jsm/dependencies/*.jar 1> /dev/null 2>&1 \ && mkdir -p ${JIRA_HOME}/plugins/installed-plugins/ \ && cp /opt/jsm/dependencies/*.jar ${JIRA_HOME}/plugins/installed-plugins/ \ && cp /opt/jsm/*.jar ${JIRA_HOME}/plugins/installed-plugins/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've often wondered too.
That's a shame. That would make upgrades so much simpler.
The best alternative I've found is to follow some of the steps for the Zero Downtime Upgrade (even if you are on Server or DC with a single node):
Basically:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.