Thomas Maas
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Publish Note

      Everyone on the web can find and read all notes of this public team.
      Once published, notes can be searched and viewed by anyone online.
      See published notes
      Please check the box to agree to the Community Guidelines.
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Publish Note

Everyone on the web can find and read all notes of this public team.
Once published, notes can be searched and viewed by anyone online.
See published notes
Please check the box to agree to the Community Guidelines.
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Rate limiting and Authnz for OpenShift Service Mesh with Kuadrant (dev preview) ## Rate Limit your services in the mesh like the old days Rate limiting is a critical aspect of managing traffic in a mesh network, and we're excited to announce that it's now easier than ever to implement in OpenShift Service Mesh (OSSM) with [Kuadrant](https://kuadrant.io). Developed by Red Hat, Kuadrant is a Kubernetes-native solution that integrates seamlessly with OpenShift Service Mesh and provides robust rate limiting and authorization capabilities to help you maintain control over your cluster's resources. Kuadrant bundles [Limitador](https://github.com/Kuadrant/limitador), the rate limiting service, and [Authorino](https://github.com/Kuadrant/authorino), our lightweight authorization service, which are leveraged within Red Hat OpenShift application services today. The Kuadrant Operator, available from [Operator Hub](https://operatorhub.io/operator/kuadrant-operator), will take care of all the wiring and deployments of the services required for applying Rate Limits and Authorization Policies to your infrastructure. Once installed, Policy Custom Resource Definitions let cluster operators apply a cluster-wide Rate Limit policy to protect the infrastructure from DDoS attacks; while application developers can use advanced features to control usages of their API endpoints based on API keys handed out to their users. Kuadrant supports a wide range of use cases, from simple Rate Limiting to ones that span across authorization and identity-based Rate Limits. ## Advanced Authnz workflows in OSSM OpenShift Service Mesh already offers support for protecting APIs based on built-in Envoy filters for simple, opinionated use-cases such as JSON Web Token (JWT) authentication and authorization based on limited condition matchers, via Istio Authorization Policies. However, as developers, we are frequently asked to go the extra mile in order to support more complex real-world use cases while not giving up on the benefits of relying on proven standards and patterns for implementing authentication and authorization properly. This is where Authorino, enabled by Kuadrant on OpenShift Service Mesh, comes in. Kuadrant Authorization Policies will not only handle the wiring of auth filtering for your network traffic but will also open up options for authentication and authorization based on API keys (for simpler and quicker onboarding), Kubernetes RBAC (for a truly Kubernetes-native setup), and Open Policy Agent (OPA) (for full-power, complex authorization rules), among others. Here’s a practical example. Imagine you have an API that you want to be accessed by users authenticated by an Single-Sign On (SSO) server that implements OpenID Connect (OIDC) but also consumed within the cluster by other workloads authenticated using Kubernetes Service Account tokens. Moreover, say you want to enforce Role-Based Access Control (RBAC) with permissions (roles and role bindings) managed as Kubernetes resources; plus rate limit requests to your API per user. You can achieve all that with a [single Kuadrant AuthPolicy](http://kuadrant.io/docs/kuadrant-operator/user-guides/authenticated-rl-with-jwt-and-k8s-authnz.html) custom resource. ## Gateway API & Policy attachment Kuadrant leverages the [Kubernetes Gateway API](https://gateway-api.sigs.k8s.io/), which is currently under development by the community. This API introduces a range of new network resources, including the Gateway, which represents an ingress point into your cluster, and the HTTPRoute, which connects a Gateway to a Kubernetes service for HTTP traffic. The API introduces [more new resources](https://gateway-api.sigs.k8s.io/concepts/api-overview/#resource-model), but most importantly all these resources are role-oriented. Managing the Gateway resource, for example, would be more targeted at cluster operators, while the HTTPRoute is targeted at application developers deploying Services on the cluster. OpenShift Service Mesh 2.2 added support for the [Kubernetes Gateway API as a tech preview](https://docs.openshift.com/container-platform/4.10/service_mesh/v2x/servicemesh-release-notes.html#new-features-red-hat-openshift-service-mesh-2-2). Leveraging that very same API, Kuadrant uses the [Policy Attachment](https://gateway-api.sigs.k8s.io/references/policy-attachment/) mechanism of the Gateway API to provide both Rate Limiting and Authorization. The Kuadrant policies, which are custom resources, represent the policy to apply to the network resource it points to, e.g. a RateLimitPolicy attached to an HTTPRoute that routes traffic to a given back-end service to a maximum given rate of 100 requests per second. ## Secure Your Services in the Mesh with Kuadrant: A Hands-On Guide ### Pre requisites * [OpenShift cluster](https://docs.openshift.com/container-platform/4.11/welcome/index.html) * [oc CLI tool](https://docs.openshift.com/container-platform/4.2/cli_reference/openshift_cli/getting-started-cli.html#cli-installing-cli_cli-developer-commands) * Admin privileges to the OpenShift cluster * The following [operators installed](https://docs.openshift.com/container-platform/4.11/operators/user/olm-installing-operators-in-namespace.html#olm-installing-from-operatorhub-using-web-console_olm-installing-operators-in-namespace) in the cluster * [Red Hat OpenShift distributed tracing platform](https://catalog.redhat.com/software/operators/detail/5ec54a5c78e79e6a879fa271) * [Red Hat OpenShift Service Mesh](https://catalog.redhat.com/software/operators/detail/5ec53e8c110f56bd24f2ddc4) ### Limitations As of today, but will be addressed in the near future * 1 Kuadrant instance (CR) per cluster * 1 AuthPolicy and RateLimitPolicy per network resource * Namespace of policies needs to be the same of its target network resources * Gateways that'll be managed by Kuadrant should be already in the cluster ### Diagram of what we'll be doing ![diagram with architecture of demo](https://i.imgur.com/A1cLSJg.png) ### Prepare your service mesh **1. Login to your cluster** ```sh export CLUSTER_DOMAIN=<openshift-cluster-domain> oc login --token=<secret> --server=https://api.$CLUSTER_DOMAIN:6443 ``` **2. Install [Gateway API](https://gateway-api.sigs.k8s.io/concepts/api-overview/)** ```sh kubectl get crd gateways.gateway.networking.k8s.io || { kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.4.0" | kubectl apply -f -; } ``` **3. Create the service mesh control plane (SMCP)** Create the namespace where the SMCP will be installed: ```sh kubectl create namespace istio-system ``` Apply the `ServiceMeshControlPlane` custom resource: ```sh kubectl apply -n istio-system -f -<<EOF apiVersion: maistra.io/v2 kind: ServiceMeshControlPlane metadata: name: istiocontrolplane # set the ISTIOOPERATOR_NAME env var in the Kuadrant Operator deployment if this is named otherwise spec: runtime: components: pilot: container: env: PILOT_ENABLE_GATEWAY_API: "true" PILOT_ENABLE_GATEWAY_API_DEPLOYMENT_CONTROLLER: "true" PILOT_ENABLE_GATEWAY_API_STATUS: "true" version: v2.3 policy: type: Istiod telemetry: type: Istiod addons: prometheus: enabled: false kiali: enabled: false grafana: enabled: false EOF ``` **4. Deploy the gateway** ```sh kubectl apply -n istio-system -f -<<EOF apiVersion: gateway.networking.k8s.io/v1alpha2 kind: Gateway metadata: labels: istio: ingressgateway name: istio-ingressgateway spec: gatewayClassName: istio listeners: - name: default port: 80 protocol: HTTP allowedRoutes: namespaces: from: All addresses: - value: istio-ingressgateway.istio-system.svc.cluster.local type: Hostname EOF ``` ### Set up Kuadrant **1. Install the Kuadrant Operator** [Install Kuadrant](https://docs.openshift.com/container-platform/4.11/operators/user/olm-installing-operators-in-namespace.html#olm-installing-from-operatorhub-using-web-console_olm-installing-operators-in-namespace) from the your OpenShift cluster UI ![](https://i.imgur.com/ogFyppY.png) **2. Request a Kuadrant instance** Create the namespace: ```sh kubectl create namespace kuadrant ``` Apply the `Kuadrant` custom resource: ```sh kubectl apply -n kuadrant -f -<<EOF apiVersion: kuadrant.io/v1beta1 kind: Kuadrant metadata: name: kuadrant spec: {} EOF ``` ### Add an application to protect **1. Deploy an example application** Create the namespace where the application, its networking objects and protection policies will be installed: ```sh kubectl create namespace toystore ``` As an example, one could use our testing multiuse "echo" API, and call it "toystore": ```sh kubectl apply -n toystore -f https://raw.githubusercontent.com/Kuadrant/kuadrant-operator/3e05cf590dab0faeca63c4b13b88771676beddc2/examples/toystore/toystore.yaml ``` **2. Onboard the application into the mesh** Add the application namespace (toystore) to the mesh: ```sh kubectl apply -n toystore -f -<<EOF apiVersion: maistra.io/v1 kind: ServiceMeshMember metadata: name: default spec: controlPlaneRef: namespace: istio-system name: istiocontrolplane EOF ``` Annotate the deployment for the Istio sidecar injection: ```sh kubectl patch -n toystore deployment/toystore -p '{"spec": {"template":{"metadata":{"annotations":{"sidecar.istio.io/inject":"true"}}}} }' ``` Route the application through the gateway: ```sh kubectl apply -n toystore -f - <<EOF apiVersion: gateway.networking.k8s.io/v1alpha2 kind: HTTPRoute metadata: name: toystore labels: app: toystore spec: parentRefs: - name: istio-ingressgateway namespace: istio-system hostnames: ["*.toystore.apps.$CLUSTER_DOMAIN"] rules: - matches: - path: type: PathPrefix value: "/toy" method: GET backendRefs: - name: toystore port: 80 EOF ``` **3.Expose the application** Expose the application for N/S traffic: ```sh oc expose -n istio-system service/istio-ingressgateway --port 8080 --name toystore --hostname=api.toystore.apps.$CLUSTER_DOMAIN ``` Make sure the application is reachable (unprotected for now): ```sh curl http://api.toystore.apps.$CLUSTER_DOMAIN/toy -i # HTTP/1.1 200 OK ``` ### Protect the application with Kuadrant **1. Require API keys to authenticate to the application** Let's keep things simple and protect the application with API keys. Create API keys for users Bob and Alice: ```sh kubectl -n toystore apply -f -<<EOF --- apiVersion: v1 kind: Secret metadata: annotations: secret.kuadrant.io/user-id: bob name: bob-key labels: authorino.kuadrant.io/managed-by: authorino app: toystore stringData: api_key: IAMBOB type: Opaque --- apiVersion: v1 kind: Secret metadata: annotations: secret.kuadrant.io/user-id: alice name: alice-key labels: authorino.kuadrant.io/managed-by: authorino app: toystore stringData: api_key: IAMALICE type: Opaque EOF ``` Create a Kuadrant `AuthPolicy` custom resource to configure the authentication: ```sh kubectl -n toystore apply -f - <<EOF --- apiVersion: kuadrant.io/v1beta1 kind: AuthPolicy metadata: name: toystore spec: targetRef: group: gateway.networking.k8s.io kind: HTTPRoute name: toystore rules: authScheme: identity: - name: friends apiKey: allNamespaces: true selector: matchLabels: app: toystore credentials: in: authorization_header keySelector: APIKEY response: - json: properties: - name: userID valueFrom: authJSON: auth.identity.metadata.annotations.secret\.kuadrant\.io/user-id name: rate-limit-apikey wrapper: envoyDynamicMetadata wrapperKey: ext_auth_data EOF ``` Verify that the endpoint is now protected: ```sh curl http://api.toystore.apps.$CLUSTER_DOMAIN/toy -i # HTTP/1.1 401 Unauthorized ``` You should be able to access the application supplying either Alice's or Bob's API Key: ```sh curl -H 'Authorization: APIKEY IAMBOB' http://api.toystore.apps.$CLUSTER_DOMAIN/toy -i # HTTP/1.1 200 OK ``` **2. Rate limit the application** Let's rate limit per API key (also known as "authenticated rate limiting"): | User | Limit | | ------------- | ----- | | `Bob` | **2** reqs / **10** secs (0.2 rps) | | `Alice` | **5** reqs / **10** secs (0.5 rps) | ```sh kubectl -n toystore apply -f -<<EOF --- apiVersion: kuadrant.io/v1beta1 kind: RateLimitPolicy metadata: name: toystore spec: targetRef: group: gateway.networking.k8s.io kind: HTTPRoute name: toystore rateLimits: - configurations: - actions: - metadata: descriptor_key: "userID" default_value: "no-user" metadata_key: key: "envoy.filters.http.ext_authz" path: - segment: key: "ext_auth_data" - segment: key: "userID" limits: - conditions: - "userID == bob" maxValue: 2 seconds: 10 variables: [] - conditions: - "userID == alice" maxValue: 5 seconds: 10 variables: [] EOF ``` *Note that it may take up to a couple of minutes depending on your cluster to the RLP to be applied.* Only 2 requests out of every 10 are allowed for Bob: ```sh while :; do curl --write-out '%{http_code}' --silent --output /dev/null -H 'Authorization: APIKEY IAMBOB' -X GET http://api.toystore.apps.$CLUSTER_DOMAIN/toy | egrep --color "\b(429)\b|$"; sleep 1; done ``` Only 5 requests out of every 10 are allowed for Alice: ```sh while :; do curl --write-out '%{http_code}' --silent --output /dev/null -H 'Authorization: APIKEY IAMALICE' -X GET http://api.toystore.apps.$CLUSTER_DOMAIN/toy | egrep --color "\b(429)\b|$"; sleep 1; done ``` ### Thanks for giving Kuadrant a try! Be sure to share any feedback or issues you might encounter through [Github](https://github.com/orgs/Kuadrant) or [Slack](https://join.slack.com/t/kuadrant/shared_invite/zt-16ggrm41h-z1HLYGkRxJ6l_oZVU~eQzQ).

Import from clipboard

Paste your webpage below. It will be converted to Markdown.

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template is not available.
Upgrade
All
  • All
  • Team
No template found.

Create custom template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

How to use Slide mode

API Docs

Edit in VSCode

Install browser extension

Get in Touch

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

No updates to save
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully