Skip to content

Commit

Permalink
chore: add instructions for installing with Helm
Browse files Browse the repository at this point in the history
Docs to go along with new helm chart repository

knative/operator#1931
  • Loading branch information
patrickleet authored Nov 8, 2024
1 parent 221ab88 commit 17a3ced
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/install/operator/knative-with-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ The following table describes the supported versions of Serving and Eventing for

## Install the Knative Operator

Before you install the Knative Serving and Eventing components, first install the Knative Operator.
Before you install the Knative Serving and Eventing components, first install the Knative Operator from the provided K8S Manifests, or via Helm.

### Install K8S Manifests (Option 1)

!!! warning
Knative Operator 1.5 is the last version that supports CRDs with both `v1alpha1` and `v1beta1`. If you are upgrading an existing Operator install from v1.2 or earlier to v1.3 or later, run the following command to upgrade the existing custom resources to `v1beta1` before installing the current version:
Expand All @@ -31,6 +33,21 @@ kubectl apply -f {{artifact(org="knative",repo="operator",file="operator.yaml" )

You can find information about the released versions of the Knative Operator on the [releases page](https://github.com/knative/operator/releases).

### Install via Helm (Option 2)

You can install the Knative Operator with our helm chart:

```
helm repo add knative-operator https://knative.github.io/operator
helm install knative-operator knative-operator/knative-operator
```

To see available values, run:

```
helm show values knative-operator/knative-operator
```

### Verify your Knative Operator installation

1. Because the Operator is installed to the `default` namespace, ensure you set the current namespace to `default` by running the command:
Expand Down

0 comments on commit 17a3ced

Please sign in to comment.