> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Install the Platform Operator

<Warning>
  This guide assumes you have already installed the <code>ddlctl</code> command line tool. If you have not done so yet, please follow the <a href="/6.3/admin/installation/platform-operator/ddlctl/install">ddlctl installation guide</a> first and ensure you have the correct <code>ddlctl</code> version for your target Domino version per the <a href="/6.3/admin/installation/releases">releases</a> page.
</Warning>

From there, the installation is straightforward and you can just run the following command:

```bash theme={null}
ddlctl bootstrap --skip-domino-resource
```

<Note>
  The <code>--disable-webhook</code> flag is available in <code>ddlctl</code> version <code>0.4.7</code> and later. While we recommend keeping the default behavior of the Platform Operator chart, you can opt to disable the validating webhook with this flag.
</Note>

## Offline installation

If you are installing the Domino Platform Operator on a system that is not connected to the internet, you will need to download the Helm chart independently and point `ddlctl` to it in your local environment, rather than relying on the default behavior of it pulling it for you.

### Download the Helm Chart

Find the version of the Platform Operator that corresponds to your `ddlctl` version on the [releases](/6.3/admin/installation/releases) page and substitute it in the command below:

```bash theme={null}
wget https://mirrors.domino.tech/s3/domino-artifacts/platform-operator/platform-operator-<version>.tgz
```

### Unarchive the Helm chart

You can either click on the downloaded file to unarchive it or run the following command:

```bash theme={null}
tar -xvf platform-operator-<version>.tgz
```

This will result in a directory named `platform-operator`.

### Run the bootstrap command

```bash theme={null}
ddlctl bootstrap --chart-repo-url platform-operator --skip-domino-resource
```

If you downloaded and unarchived the Helm chart in a different directory than your current working directory, make sure to specify that in the `--chart-repo-url` flag.
