Skip to content

Commit

Permalink
[helm] Adding correct set of dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: dd di cesare <[email protected]>
  • Loading branch information
didierofrivia committed Nov 20, 2024
1 parent b70d785 commit 0593183
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions charts/kuadrant-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,31 @@ This is the Helm Chart to install the official Kuadrant Kubernetes Operator

### Prerequisites
- [Gateway API](https://gateway-api.sigs.k8s.io/)
- [cert-manager](https://cert-manager.io/)
- A Gateway Provider (I.E: [Istio](https://istio.io/latest/docs/ambient/install/helm/),
[Envoy](https://www.envoyproxy.io/docs/envoy/latest/start/start))
[Envoy](https://www.envoyproxy.io/docs/envoy/latest/start/start))

### Install Gateway API and Gateway Provider
### Install dependencies

1. Install Kubernetes Gateway API:

```sh
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/standard-install.yaml
```

2. Install a Gateway Controller, i.e: Istio:
2. Install cert-manager

```sh
helm repo add jetstack https://charts.jetstack.io --force-update
helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.15.3 \
--set crds.enabled=true
```

3. Install a Gateway Controller, i.e: Istio:

```sh
helm install sail-operator \
Expand Down Expand Up @@ -55,7 +68,7 @@ helm install \

### Parameters

At the moment, there's no configuration parameters exposed.
**Coming soon!** At the moment, there's no configuration parameters exposed.

## Usage

Expand Down

0 comments on commit 0593183

Please sign in to comment.