Obtain, apply, or update a Mirantis k0rdent Enterprise license#
After you install the Mirantis k0rdent Enterprise image, download your license as described below. This section also explains how to apply your new license.
Warning
You are not authorized to run Mirantis k0rdent Enterprise without a valid license. For more information, refer to Mirantis Agreements and Terms.
To download your Mirantis k0rdent Enterprise license#
- Open the email from Mirantis Support with the subject Welcome to Mirantis' CloudCare Portal and follow the instructions to log in. If you did not receive the CloudCare Portal email, you may not yet be added as a Designated Contact. Contact your Designated Administrator for assistance.
- In the top navigation bar, click Environments.
- Click the Cloud Name associated with the license you want to download.
- Scroll to License Information and click the License File URL. A new browser tab opens.
- Click View file to download the license file.
Note
Although Mirantis k0rdent Enterprise is generally offered as a subscription service, Mirantis can provide a free trial license on request. Use the contact form to request a free trial license.
To apply your license via CLI#
-
Create a
Secretwith your license (JWT Value)KUBECONFIG=~/.kube/config kubectl create secret generic k0rdent-license-secret --from-file=token=/path/to/license/file -n default -
Create the
Licenseobject pointing to the Secret. Add the following to a file (for example,license.yaml):apiVersion: k0rdent.mirantis.com/v1beta1 kind: License metadata: name: k0rdent-license spec: license: name: kOrdent-license-secret namespace: default key: token -
Apply the
Licenseto the cluster in the default namespace:kubectl apply -f /path/to/license.yaml