Skip to content

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#

  1. 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.
  2. In the top navigation bar, click Environments.
  3. Click the Cloud Name associated with the license you want to download.
  4. Scroll to License Information and click the License File URL. A new browser tab opens.
  5. 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#

  1. Create a Secret with your license (JWT Value)

    KUBECONFIG=~/.kube/config
    kubectl create secret generic k0rdent-license-secret --from-file=token=/path/to/license/file -n default
    
  2. Create the License object 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
    
  3. Apply the License to the cluster in the default namespace:

    kubectl apply -f /path/to/license.yaml