Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions docs/getstarted/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,40 +21,43 @@ reliability, performance, and developer experience.

<!-- vale Microsoft.HeadingPunctuation = NO -->

## Already using open source Crossplane?
## Install Upbound Crossplane
<!-- vale Google.WordList = NO -->
If you're already using Crossplane and want to check out Upbound Crossplane
2.0, you can upgrade an existing Crossplane cluster with Helm or the `up`
CLI.
Install Upbound Crossplane (UXP) into a fresh Kubernetes cluster with Helm or
the `up` CLI.

:::important
Already running open source Crossplane? Don't run the commands below — follow
the [Upgrade Guide][upgrade] instead.
:::

<Tabs>

<TabItem value="Helm Install">

```shell
helm upgrade --install crossplane --create-namespace --namespace crossplane-system oci://xpkg.upbound.io/upbound/crossplane --version 2.1.3-up.1
helm repo add upbound-stable https://charts.upbound.io/stable && helm repo update
helm install crossplane --namespace crossplane-system --create-namespace upbound-stable/crossplane --devel
```
:::important
For more details, follow our [Upgrade Guide][upgrade] to see how Upbound can enhance your existing workflow.
:::

</TabItem>


<TabItem value="Up CLI">

Download the `up` CLI and upgrade an existing test cluster.
Download the `up` CLI and install UXP into the cluster pointed to by your
current kubeconfig context.

**Download the CLI:**

```shell
curl -sL "https://cli.upbound.io" | sh
```

**Upgrade an existing Crossplane cluster to UXP:**
**Install Upbound Crossplane:**

```shell
up uxp upgrade
up uxp install
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions docs/getstarted/upgrade-to-upbound/upgrade-to-uxp.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ path uses a **free Community license**.
Add the Upbound repository and upgrade your Crossplane cluster:
```shell
helm repo add upbound-stable https://charts.upbound.io/stable && helm repo update
helm upgrade --install crossplane --namespace crossplane-system oci://xpkg.upbound.io/upbound/crossplane --version "${UXP_VERSION}"
helm upgrade --install crossplane --namespace crossplane-system upbound-stable/crossplane --version "${UXP_VERSION}"
```
</TabItem>

Expand Down Expand Up @@ -276,7 +276,7 @@ for more information.
Add the Upbound repository and upgrade your Crossplane cluster:
```shell
helm repo add upbound-stable https://charts.upbound.io/stable && helm repo update
helm upgrade --install crossplane --namespace crossplane-system oci://xpkg.upbound.io/upbound/crossplane --version "${UXP_VERSION}"
helm upgrade --install crossplane --namespace crossplane-system upbound-stable/crossplane --version "${UXP_VERSION}"
```
</TabItem>

Expand Down
Loading