-
Notifications
You must be signed in to change notification settings - Fork 135
Use new crd.projectcalico.org.v1 Helm chart to install CRDs #2495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -92,7 +92,13 @@ To install a standard $[prodname] cluster with Helm: | |||||
| } | ||||||
| </CodeBlock> | ||||||
|
|
||||||
| 1. Install the Tigera Operator and custom resource definitions using the Helm 3 chart: | ||||||
| 1. Create the necessary custom resource definitions. | ||||||
|
|
||||||
| ```bash | ||||||
| helm install calico-crds crd.projectcalico.org.v1-$[chart_version_name] --version $[releaseTitle] --namespace tigera-operator | ||||||
|
||||||
| helm install calico-crds crd.projectcalico.org.v1-$[chart_version_name] --version $[releaseTitle] --namespace tigera-operator | |
| helm install calico-crds tigera-ee/crds --version $[releaseTitle] --namespace tigera-operator --create-namespace |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,7 +79,13 @@ For more information about configurable options via `values.yaml` please see [He | |
| kubectl create namespace tigera-operator | ||
| ``` | ||
|
|
||
| 1. Install the Tigera Operator and custom resource definitions using the Helm chart: | ||
| 1. Create the necessary custom resource definitions. | ||
|
|
||
|
Comment on lines
+82
to
+83
|
||
| ```bash | ||
| helm install calico-crds projectcalico/crd.projectcalico.org.v1 --version $[releaseTitle] --namespace tigera-operator | ||
| ``` | ||
|
|
||
| 1. Install the Tigera Operator using the Helm chart: | ||
|
|
||
| ```bash | ||
| helm install $[prodnamedash] projectcalico/tigera-operator --version $[releaseTitle] --namespace tigera-operator | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The earlier “Operator based installation” description still says the operator and CRDs are installed using a single Helm chart. With the new separate CRDs chart step, please update that text to reflect that CRDs are installed via the
crd.projectcalico.org.v1chart and the operator is installed via thetigera-operatorchart, so the conceptual description matches the procedure.