generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12dc43b
commit f5d1295
Showing
3 changed files
with
12 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
website/content/en/docs/installation/cap-operator-manager/kyma-cluster.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- | ||
title: "Kyma Cluster" | ||
linkTitle: "Kyma Cluster" | ||
weight: 20 | ||
weight: 10 | ||
type: "docs" | ||
tags: ["setup"] | ||
description: > | ||
How to install CAP Operator using CAP Operator Manager in a Kyma cluster | ||
--- | ||
|
||
For steps to install CAP Operator using CAP Operator Manager in a Kyma cluster, please refer to [link](https://sap.github.io/cap-operator-lifecycle/docs/installation/kyma-cluster/) | ||
For steps to install CAP Operator using CAP Operator Manager in a Kyma cluster, please refer to [link](https://sap.github.io/cap-operator-lifecycle/docs/installation/kyma-cluster/). |
22 changes: 9 additions & 13 deletions
22
website/content/en/docs/installation/cap-operator-manager/local-cluster.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,32 @@ | ||
--- | ||
title: "Local Cluster" | ||
linkTitle: "Local Cluster" | ||
weight: 10 | ||
weight: 20 | ||
type: "docs" | ||
tags: ["setup"] | ||
description: > | ||
How to install CAP Operator using CAP Operator Manager in a local cluster | ||
--- | ||
|
||
## Install CAP Operator Manager | ||
To install the latest version of CAP Operator Manager, please execute the following command: | ||
To install the CAP Operator using CAP Operator Manager, please execute the following commands: | ||
|
||
```bash | ||
kubectl apply -f https://github.com/SAP/cap-operator-lifecycle/releases/latest/download/manager_manifest.yaml | ||
``` | ||
|
||
This would create namespace `cap-operator-system` with CAP Operator Manager installed. | ||
|
||
## Install CAP Operator using CAP Operator Manager | ||
Once the CAP Operator Manager is running, you can install CAP operator by executing the following command: | ||
The above command will create namespace `cap-operator-system` with CAP Operator Manager installed. Once the CAP Operator Manager pod is running, you can install the CAP operator by executing the following command: | ||
|
||
```bash | ||
kubectl apply -n cap-operator-system -f https://github.com/SAP/cap-operator-lifecycle/releases/latest/download/manager_default_CR.yaml | ||
``` | ||
**This would work only if the `ingressGatewayLabels` in your clusters matches the following values** | ||
|
||
```yaml | ||
ingressGatewayLabels: | ||
- name: istio | ||
value: ingressgateway | ||
- name: app | ||
value: istio-ingressgateway | ||
ingressGatewayLabels: | ||
- name: istio | ||
value: ingressgateway | ||
- name: app | ||
value: istio-ingressgateway | ||
``` | ||
If not, you will have to manually create the `CAPOperator` resource. For more details, refer to [link](https://sap.github.io/cap-operator-lifecycle/docs/installation/local-cluster/). | ||
If not, you will have to manually create the `CAPOperator` resource. For more details on the same, please refer to [link](https://sap.github.io/cap-operator-lifecycle/docs/installation/local-cluster/). |