From ebdce572449807bfa56270d8b34ec5e3f1590f44 Mon Sep 17 00:00:00 2001 From: dd di cesare <4183971+didierofrivia@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:22:12 +0100 Subject: [PATCH] =?UTF-8?q?[helm]=C2=A0Readme=20(#1033)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: dd di cesare --- charts/kuadrant-operator/README.md | 62 ++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 charts/kuadrant-operator/README.md diff --git a/charts/kuadrant-operator/README.md b/charts/kuadrant-operator/README.md new file mode 100644 index 000000000..3fb6d592f --- /dev/null +++ b/charts/kuadrant-operator/README.md @@ -0,0 +1,62 @@ +# Kuadrant Operator + +This is the Helm Chart to install the official Kuadrant Kubernetes Operator + +## Installation + +### Prerequisites +- [Gateway API](https://gateway-api.sigs.k8s.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)) + +### Install Gateway API and Gateway Provider + +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: + +```sh +helm install sail-operator \ + --create-namespace \ + --namespace istio-system \ + --wait \ + --timeout=300s \ + https://github.com/istio-ecosystem/sail-operator/releases/download/0.1.0/sail-operator-0.1.0.tgz + +kubectl apply -f -<