github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.11.x/enterprise/deployment.md (about)

     1  # Deploy Enterprise Edition
     2  
     3  To deploy and use Pachyderm's Enterprise Edition, follow
     4  [the deployment instructions](../deploy-manage/deploy/google_cloud_platform.md) for your platform
     5  and then [activate the Enterprise Edition](#activate-pachyderm-enterprise-edition).
     6  Pachyderm provides a FREE evaluation token for the Enterprise Edition on the landing
     7  page of the Enterprise dashboard.
     8  
     9  !!! note
    10      Pachyderm automatically deploys the Enterprise dashboard. If you want
    11      to deploy without the dashboard, run
    12      `pachctl deploy [command] --no-dashboard`.
    13  
    14  ## Activate Pachyderm Enterprise Edition
    15  
    16  There are two ways to activate Pachyderm's enterprise features::
    17  
    18  - [Activate Pachyderm Enterprise by Using the `pachctl` CLI](#activate-by-using-the-pachctl-cli)
    19  - [Activate Pachyderm Enterprise by Using the Dashboard](#activate-by-using-the-dashboard)
    20  
    21  For either method, you need to have your Pachyderm Enterprise activation code
    22  available. You should have received this from the Pachyderm sales team when
    23  registering for the Enterprise Edition. If you are a new user evaluating Pachyderm,
    24  you can request a FREE evaluation code on the landing page of the dashboard.
    25  If you are having trouble locating your activation code, contact [support@pachyderm.io](mailto:support@pachyderm.io).
    26  
    27  ### Activate by Using the `pachctl` CLI
    28  
    29  When you have Pachyderm up and running, the `kubectl get pods` must return a similar
    30  output:
    31  
    32  ```
    33  kubectl get pods
    34  ```
    35  
    36  **System response:**
    37  
    38  ```shell
    39  NAME                     READY     STATUS    RESTARTS   AGE
    40  dash-6c9dc97d9c-vb972    2/2       Running   0          6m
    41  etcd-7dbb489f44-9v5jj    1/1       Running   0          6m
    42  pachd-6c878bbc4c-f2h2c   1/1       Running   0          6m
    43  ```
    44  
    45  You should also be able to connect to the Pachyderm cluster via the `pachctl` CLI:
    46  
    47  ```
    48  pachctl version
    49  ```
    50  
    51  **System response:**
    52  
    53  ```shell
    54  COMPONENT           VERSION
    55  pachctl             {{ config.pach_latest_version }}
    56  pachd               {{ config.pach_latest_version }}
    57  ```
    58  
    59  To activate the Pachyderm Enterprise Edition, complete the following steps::
    60  
    61  1. Activate the Enterprise Edition by running:
    62  
    63     ```shell
    64     pachctl enterprise activate <activation-code>
    65     ```
    66  
    67     If this command does not return any error, then the activation was
    68     successful.
    69  
    70  1. Verify the status of the enterprise activation:
    71  
    72     ```shell
    73     pachctl enterprise get-state
    74     ```
    75  
    76     **System response:**
    77  
    78     ```shell
    79     ACTIVE
    80     ```
    81  
    82  ### Activate by Using the Dashboard
    83  
    84  You can activate Enterprise Edition directly in the dashboard.
    85  
    86  To active Enterprise Edition in the Dashboard, complete the following steps:
    87  
    88  1. Connect to the dashboard by using one of the following methods:
    89  
    90     * If you can connect directly, point your browser to port
    91     `30080` on your Kubernetes cluster's IP address.
    92  
    93     * Enable port forwarding by running `pachctl port-forward` in a separate terminal
    94     window and then, point your browser to `localhost:30080`.
    95  
    96     When you first access the dashboard, you are prompted to enter your activation code.
    97  
    98  1. Enter the promo code:
    99  
   100     ![alt tag](../assets/images/token.png)
   101  
   102     After you enter your activation code, you have full access to the Enterprise
   103     dashboard, and your cluster has an active Enterprise Edition license.
   104  
   105  1. Confirm that your cluster has an active Enterprise Edition license:
   106  
   107     ```shell
   108     pachctl enterprise get-state
   109     ```
   110  
   111     **System response:**
   112  
   113     ```shell
   114     ACTIVE
   115     ```