Skip to content

Commit

Permalink
[Docs] Added installation steps using CAP Operator manager in Kyma/Lo…
Browse files Browse the repository at this point in the history
…cal cluster (#30)
  • Loading branch information
anirudhprasad-sap authored Oct 10, 2023
1 parent b3aac90 commit 27123f5
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "Using CAP Operator Manager"
linkTitle: "Using CAP Operator Manager"
weight: 30
type: "docs"
tags: ["setup"]
description: >
How to install CAP Operator using CAP Operator Manager in a Kyma/local cluster
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: "Kyma Cluster"
linkTitle: "Kyma Cluster"
weight: 20
type: "docs"
tags: ["setup"]
manualLink: https://sap.github.io/cap-operator-lifecycle/docs/installation/kyma-cluster/
manualLinkTitle: "Kyma Cluster"
description: >
How to install CAP Operator using CAP Operator Manager in a Kyma cluster
---

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: "Local Cluster"
linkTitle: "Local Cluster"
weight: 10
type: "docs"
tags: ["setup"]
description: >
How to install CAP Operator using CAP Operator Manager in a local cluster
---

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
```

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
```
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/).

0 comments on commit 27123f5

Please sign in to comment.