{"id":20410267,"url":"https://github.com/kuadrant/helm-charts","last_synced_at":"2026-03-19T15:42:30.171Z","repository":{"id":242531952,"uuid":"806476390","full_name":"Kuadrant/helm-charts","owner":"Kuadrant","description":"Kuadrant repository for its Helm Charts","archived":false,"fork":false,"pushed_at":"2026-02-12T16:48:56.000Z","size":3038,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-13T07:24:33.138Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kuadrant.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-27T09:17:54.000Z","updated_at":"2026-02-12T16:52:04.000Z","dependencies_parsed_at":"2024-06-03T16:11:22.156Z","dependency_job_id":"192e6a1b-512e-4971-b1e3-cc8ae1b8c0a2","html_url":"https://github.com/Kuadrant/helm-charts","commit_stats":null,"previous_names":["kuadrant/helm-charts"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/Kuadrant/helm-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuadrant%2Fhelm-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuadrant%2Fhelm-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuadrant%2Fhelm-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuadrant%2Fhelm-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kuadrant","download_url":"https://codeload.github.com/Kuadrant/helm-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuadrant%2Fhelm-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30324185,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T01:36:58.598Z","status":"online","status_checked_at":"2026-03-10T02:00:06.579Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T05:45:17.117Z","updated_at":"2026-03-10T04:04:26.447Z","avatar_url":"https://github.com/Kuadrant.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kuadrant Helm Charts Repository\nKuadrant repository for its Helm Charts\n\n## Setup Repo Info\n\n```shell\nhelm repo add kuadrant https://kuadrant.io/helm-charts/ --force-update\n```\n\nSee [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation.\n\n## Kuadrant operator chart\nThe official Kuadrant Kubernetes Operator\n\n### Install Dependencies\nFollow the steps below to install the following dependencies for Kuadrant Operator:\n- [Gateway API](https://gateway-api.sigs.k8s.io/)\n- [cert-manager](https://cert-manager.io/)\n- A Gateway Provider [Istio](https://istio.io/latest/docs/ambient/install/helm/) or [Envoy Gateway](https://gateway.envoyproxy.io/)\n\n#### Kubernetes Gateway API:\n\n ```sh\n kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/standard-install.yaml\n ```\n\n#### cert-manager\n\n ```sh\n helm repo add jetstack https://charts.jetstack.io --force-update\n helm install \\\n   cert-manager jetstack/cert-manager \\\n   --namespace cert-manager \\\n   --create-namespace \\\n   --version v1.15.3 \\\n   --set crds.enabled=true\n ```\n\n#### Gateway Provider (I.E. Istio):\n\n ```sh\n helm install sail-operator \\\n         --create-namespace \\\n         --namespace istio-system \\\n         --wait \\\n         --timeout=300s \\\n         https://github.com/istio-ecosystem/sail-operator/releases/download/0.1.0/sail-operator-0.1.0.tgz\n\n kubectl apply -f -\u003c\u003cEOF\n apiVersion: sailoperator.io/v1alpha1\n kind: Istio\n metadata:\n   name: default\n spec:\n   # Supported values for sail-operator v0.1.0 are [v1.22.4,v1.23.0]\n   version: v1.23.0\n   namespace: istio-system\n   # Disable autoscaling to reduce dev resources\n   values:\n     pilot:\n       autoscaleEnabled: false\n EOF\n ```\n\nOne could opt for [Envoy Gateway](https://gateway.envoyproxy.io/latest/install/install-helm/) if preferred.\n\n### Install Kuadrant Operator\n\n```sh\nhelm repo add kuadrant https://kuadrant.io/helm-charts/ --force-update\nhelm install \\\n kuadrant-operator kuadrant/kuadrant-operator \\\n --create-namespace \\\n --namespace kuadrant-system\n```\n\n### Parameters\n**Coming soon!** At the moment, there's no configuration parameters exposed.\n\n## Usage\nRead the documentation and user guides in [Kuadrant.io](https://docs.kuadrant.io).\n\n## Other Charts\nYou can also install individual Kuadrant components via helm charts if you prefer.\n\n| Chart              | Reference                                                    | Docs                                  |\n|--------------------|--------------------------------------------------------------|---------------------------------------|\n| Limitador operator | `helm install kuadrant-operator kuadrant/limitador-operator` | [install](docs/limitador-operator.md) |\n| Authorino operator | `helm install kuadrant-operator kuadrant/authorino-operator` | [install](docs/authorino-operator.md) |\n| DNS Operator       | `helm install kuadrant-operator kuadrant/dns-operator`       | [install](docs/dns-operator.md)       |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuadrant%2Fhelm-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuadrant%2Fhelm-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuadrant%2Fhelm-charts/lists"}