Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 1.2 KB

README.md

File metadata and controls

57 lines (41 loc) · 1.2 KB

Limitador Operator

License

Overview

The Operator to manage Limitador deployments.

CustomResourceDefinitions

  • Limitador, which defines a desired Limitador deployment.
  • RateLimit, which declaratively specifies rate limit configurations.

Limitador CRD

Limitador v1alpha1 API reference

Example:

---
apiVersion: limitador.kuadrant.io/v1alpha1
kind: Limitador
metadata:
  name: limitador-sample
spec:
  replicas: 1
  version: "0.4.0"

RateLimit

RateLimit v1alpha1 API reference

Example:

---
apiVersion: limitador.kuadrant.io/v1alpha1
kind: RateLimit
metadata:
  name: ratelimit-sample
spec:
  namespace: test_namespace
  max_value: 10
  seconds: 60
  conditions:
    - "req.method == GET"
  variables:
    - user_id

Licensing

This software is licensed under the Apache 2.0 license.

See the LICENSE and NOTICE files that should have been provided along with this software for details.