|
| 1 | +.. _kubernetes-operator-install: |
| 2 | + |
| 3 | +=========================== |
| 4 | +kubernetes operator install |
| 5 | +=========================== |
| 6 | + |
| 7 | +.. default-domain:: mongodb |
| 8 | + |
| 9 | +.. contents:: On this page |
| 10 | + :local: |
| 11 | + :backlinks: none |
| 12 | + :depth: 1 |
| 13 | + :class: singlecol |
| 14 | + |
| 15 | +Install Atlas Kubernetes Operator to a cluster. |
| 16 | + |
| 17 | +This command installs a supported version of Atlas Kubernetes Operator to an existing cluster, and optionally imports Atlas resources that are managed by the operator. |
| 18 | + |
| 19 | +This command creates an API key for the Operator and adds it to Kubernetes as a secret, which the Operator then uses to make Atlas Admin API calls. |
| 20 | +The key is scoped to the project when you specify the --projectName option and to the organization when you omit the --projectName option. |
| 21 | + |
| 22 | +Syntax |
| 23 | +------ |
| 24 | + |
| 25 | +.. code-block:: |
| 26 | + :caption: Command Syntax |
| 27 | + |
| 28 | + kubernetes operator install [options] |
| 29 | + |
| 30 | +.. Code end marker, please don't delete this comment |
| 31 | + |
| 32 | +Options |
| 33 | +------- |
| 34 | + |
| 35 | +.. list-table:: |
| 36 | + :header-rows: 1 |
| 37 | + :widths: 20 10 10 60 |
| 38 | + |
| 39 | + * - Name |
| 40 | + - Type |
| 41 | + - Required |
| 42 | + - Description |
| 43 | + * - --atlasGov |
| 44 | + - |
| 45 | + - false |
| 46 | + - Flag that indicates whether to configure Atlas for Government as a target of the operator. |
| 47 | + * - -h, --help |
| 48 | + - |
| 49 | + - false |
| 50 | + - help for install |
| 51 | + * - --import |
| 52 | + - |
| 53 | + - false |
| 54 | + - Flag that indicates whether to import existing Atlas resources into the cluster for the operator to manage. |
| 55 | + * - --kubeContext |
| 56 | + - string |
| 57 | + - false |
| 58 | + - Name of the kubeconfig context to use. |
| 59 | + * - --kubeconfig |
| 60 | + - string |
| 61 | + - false |
| 62 | + - Path to the kubeconfig file to use for CLI requests. |
| 63 | + * - --operatorVersion |
| 64 | + - string |
| 65 | + - false |
| 66 | + - Version of the operator to install. |
| 67 | + * - --orgId |
| 68 | + - string |
| 69 | + - false |
| 70 | + - Organization ID to use. This option overrides the settings in the configuration file or environment variable. |
| 71 | + * - --projectName |
| 72 | + - string |
| 73 | + - false |
| 74 | + - Name of the project to create or use with the installed operator. |
| 75 | + * - --resourceDeletionProtection |
| 76 | + - |
| 77 | + - false |
| 78 | + - Toggle atlas operator deletion protection for resources like Projects, Deployments, etc. Read more: https://dochub.mongodb.org/core/ako-deletion-protection This value defaults to true. |
| 79 | + * - --subresourceDeletionProtection |
| 80 | + - |
| 81 | + - false |
| 82 | + - Toggle atlas operator deletion protection for subresources like Alerts, Integrations, etc. Read more: https://dochub.mongodb.org/core/ako-deletion-protection This value defaults to true. |
| 83 | + * - --targetNamespace |
| 84 | + - string |
| 85 | + - false |
| 86 | + - Namespace where to install the operator. |
| 87 | + * - --watchNamespace |
| 88 | + - strings |
| 89 | + - false |
| 90 | + - List that contains namespaces that the operator will listen to. |
| 91 | + |
| 92 | +Examples |
| 93 | +-------- |
| 94 | + |
| 95 | +.. code-block:: |
| 96 | + :copyable: false |
| 97 | + |
| 98 | + # Install latest version of the operator into the default namespace: |
| 99 | + atlas kubernetes operator install |
| 100 | + |
| 101 | + |
| 102 | +.. code-block:: |
| 103 | + :copyable: false |
| 104 | + |
| 105 | + # Install the latest version of the operator targeting Atlas for Government instead of regular commercial Atlas: |
| 106 | + atlas kubernetes operator install --atlasGov |
| 107 | + |
| 108 | + |
| 109 | +.. code-block:: |
| 110 | + :copyable: false |
| 111 | + |
| 112 | + # Install a specific version of the operator: |
| 113 | + atlas kubernetes operator install --operatorVersion=1.7.0 |
| 114 | + |
| 115 | + |
| 116 | +.. code-block:: |
| 117 | + :copyable: false |
| 118 | + |
| 119 | + # Install a specific version of the operator to a namespace and watch only this namespace and a second one: |
| 120 | + atlas kubernetes operator install --operatorVersion=1.7.0 --targetNamespace=<namespace> --watchNamespace=<namespace>,<secondNamespace> |
| 121 | + |
| 122 | + |
| 123 | +.. code-block:: |
| 124 | + :copyable: false |
| 125 | + |
| 126 | + # Install and import all objects from an organization: |
| 127 | + atlas kubernetes operator install --targetNamespace=<namespace> --orgID <orgID> --import |
| 128 | + |
| 129 | + |
| 130 | +.. code-block:: |
| 131 | + :copyable: false |
| 132 | + |
| 133 | + # Install and import objects from a specific project: |
| 134 | + atlas kubernetes operator install --targetNamespace=<namespace> --orgID <orgID> --projectName <project> --import |
| 135 | + |
| 136 | + |
| 137 | +.. code-block:: |
| 138 | + :copyable: false |
| 139 | + |
| 140 | + # Install the operator and disable deletion protection: |
| 141 | + atlas kubernetes operator install --resourceDeletionProtection=false |
| 142 | + |
| 143 | + |
| 144 | +.. code-block:: |
| 145 | + :copyable: false |
| 146 | + |
| 147 | + # Install the operator and disable deletion protection for sub-resources (Atlas project integrations, private endpoints, etc.): |
| 148 | + atlas kubernetes operator install --subresourceDeletionProtection=false |
0 commit comments