Author: Jason De Paola
Updated: September 2024
Audience: Everyone
Environmental details: Self-hosted, Replicated - KOTS
Summary
These are the instructions for manually uploading a new Jama license file (.yaml) to KOTS Admin. This works for both Internet and Airgap installations.
**WARNING**
Please get in touch with Jama Support before attempting this operation. We need to pin your application license to your specific version, or this process will try to install the latest release, potentially causing deployment issues.
Solution
Check your kots version
kubectl kots version
Check installed KOTS application
kubectl kots get apps
Example output
SLUG STATUS VERSION
jama-k8s ready 9.6.4
Save the KOTS Admin Console config
kubectl kots get config jama-k8s -n default > config.yaml
If your KOTS version is v1.108.0
or later, you can use the --current
flag to get the config for the currently deployed sequence. Otherwise, the above command will grab the latest saved config even if not deployed.
kubectl kots get config jama-k8s -n default --current > config.yaml
Remove the jama-k8s app
kubectl kots remove jama-k8s -n default -f
Reinstall the jama-k8s app with new license
- Copy the license.yaml file to the app server or create a new file and paste the license contents into a file,
license.yaml
, and save it somewhere on the app server filesystem. - Then, you can run the following command where you need the
config.yaml
file from above and thelicense.yaml
file from the previous step.
kubectl kots install jama-k8s/standardkots --app-version-label=<JAMA_APP_VERSION> --license-file license.yaml --namespace default --config-values config.yaml
--app-version-label=<JAMA_APP_VERSION>
should specify the current version you want to deploy, e.g. --app-version-label=9.17.1
The screenshot below demonstrates a successful operation, after which the KOTS Admin Console should be available with the new license and config restored.
NOTE: You may encounter the following error:
Error: failed to forward port: failed to query healthz: Get http://localhost:8800/healthz: context deadline exceeded (Client.Timeout exceeded while awaiting headers)
In this case, you may need to create an SSH tunnel before attempting the steps above:
ssh -L 8800:<SERVER IP>:8800 <USER>@localhost
Cause
We have noticed that licenses sometimes fail to sync. Here is a method for pushing the license file and preserving KOTS Admin settings.
Final note
If, after manually updating the license, you run into an error where the application returns an error page stating the "tenant is closed" or "tenant does not exist" then please follow the steps in KOTS - Reset tenant state.
References
Please feel free to leave feedback in the comments below.
Related to
Comments
3 comments
Update: This procedure can also be used to swap license files in KOTS without disrupting the database and assets.
Use case: This was done successfully in a testing environment for a Jama Connect customer that wanted to keep their production environment up, create a new instance and migrate data over, then verify the data before decommissioning the previous app server and switch the license on the new instance from nonProd to prod.
we are using Release 9.0.3. Following the steps given above, at the stage “Wating for admin Console to be ready”, following error comes up.
Deploying Admin Console
• Waiting for Admin Console to be ready ✓
Error: failed to forward port: failed to query healthz: Get "http://localhost:8800/healthz": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
Are we missing something?
I had a customer ask for their YAML license file and where they can find it. Eventually they found it. It would be great if this article would mention how to obtain it as well.
Article is closed for comments.