apisix-ingress-controller VS gateway-api

Compare apisix-ingress-controller vs gateway-api and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
apisix-ingress-controller gateway-api
33 30
944 1,589
0.7% 3.8%
8.7 9.8
10 days ago 2 days ago
Go Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

apisix-ingress-controller

Posts with mentions or reviews of apisix-ingress-controller. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-08.
  • Apache APISIX: A dynamic, real-time, high-performance API gateway
    1 project | news.ycombinator.com | 25 Apr 2024
  • Implementing the Idempotency-Key specification on Apache APISIX
    1 project | dev.to | 11 Apr 2024
    This post shows how to implement it with Apache APISIX.
  • 3 Tips for Deploying APISIX in Kubernetes (Part 1)
    1 project | dev.to | 14 Mar 2024
    APISIX Ingress Controller is a tool focused on API management, offering high performance and flexible configuration options. If you require more complex routing rules, rate limiting, circuit breaking, and other advanced features, APISIX Ingress Controller may be a better choice. It provides a rich plugin system, allowing integration of plugins through APISIX Ingress CRD using declarative configuration to handle authentication, authorization, monitoring, logging, and other functionalities. This enriches the capabilities of APISIX Ingress Controller and simplifies configuration.
  • Hardening Apache APISIX with the OWASP's Coraza and Core Ruleset
    6 projects | dev.to | 8 Feb 2024
    In this post, I'd like to describe how to fix some of them via the Apache APISIX API Gateway.
  • Mastering APISIX Health Checks: Active and Passive Monitoring Strategies
    1 project | dev.to | 11 Jan 2024
    In the era of digitization, the availability and stability of services are crucial for the success of enterprises. As a key component of microservices architecture, the API gateway plays a significant role. APISIX, an open-source API gateway platform, ensures the continuity and stability of services through its health check mechanism.
  • 2023 in retrospective
    1 project | dev.to | 11 Jan 2024
    Next February will mark the two-year milestone that I'm working for: API7.ai on Apache APISIX. I'm still very pleased about both. It allows me to do things I like a lot, such as writing posts and giving talks.
  • Five Apache projects you probably didn't know about
    8 projects | dev.to | 21 Dec 2023
    In early 2021, I started to work on the Apache APISIX project. I have to admit that I had never heard about it before. In this post, I'd like to introduce some Apache projects that are less well-known than HTTPD or Kafka.
  • Apache APISIX plugin priority, a leaky abstraction?
    2 projects | dev.to | 14 Dec 2023
    Apache APISIX is an API Gateway, which builds upon the OpenResty reverse-proxy to offer a plugin-based architecture. The main benefit of such an architecture is that it brings structure to the configuration of routes. It's a help at scale, when managing hundreds or thousands of routes.
  • Building a starter pack for an API-as-a-Service
    3 projects | news.ycombinator.com | 20 Nov 2023
  • 10 Common API Resilience Design Patterns with API Gateway
    1 project | dev.to | 9 Nov 2023
    API resilience is about building robust APIs that can withstand a variety of challenges, ensuring that they continue to function effectively. API Gateways play a key role in this, acting as the entry point for external requests and managing the communication between different services by taking into account common API resilience patterns. One of the popular open-source API Gateways, Apache APISIX, provides a variety of features to enhance the resilience and robustness of APIs. In this article, we will explore 10 common API resilience design patterns and how they can be implemented using APISIX.

gateway-api

Posts with mentions or reviews of gateway-api. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-06.
  • cert-manager: All-in-One Kubernetes TLS Certificate Manager
    2 projects | dev.to | 6 May 2024
    # cilium/playbook.yml - name: Bootstrap the Kubernetes cluster hosts: localhost gather_facts: false become: true environment: KUBECONFIG: ~/.kube/config vars: helm_version: v3.14.4 kube_context: k3d-k3s-default tasks: - name: Install Kubernetes library ansible.builtin.pip: name: kubernetes<30 state: present - name: Install helm binary ansible.builtin.shell: cmd: "{{ lookup('ansible.builtin.url', 'https://git.io/get_helm.sh', split_lines=false) }}" creates: /usr/local/bin/helm environment: DESIRED_VERSION: "{{ helm_version }}" - name: Install Kubernetes gateway CRDs kubernetes.core.k8s: src: "{{ item }}" state: present context: "{{ kube_context }}" loop: - https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/standard-install.yaml - https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/experimental-install.yaml - name: Install cilium block: - name: Add cilium helm repository kubernetes.core.helm_repository: name: cilium repo_url: https://helm.cilium.io - name: Install cilium helm release kubernetes.core.helm: name: cilium chart_ref: cilium/cilium namespace: kube-system state: present chart_version: 1.15.x kube_context: "{{ kube_context }}" values: gatewayAPI: enabled: true kubeProxyReplacement: true encryption: enabled: true type: wireguard operator: replicas: 1
  • ArgoCD Deployment on RKE2 with Cilium Gateway API
    2 projects | dev.to | 19 Feb 2024
    It has already been a couple of years since the Kubernetes Ingress was defined as a “frozen” feature while further development will be added to the Gateway API.
  • A Comprehensive Guide to API Gateways, Kubernetes Gateways, and Service Meshes
    9 projects | dev.to | 8 Jun 2023
    Kubernetes provides two APIs to achieve this, the Ingress API and the Gateway API.
  • Using k8s-apiserver as AAA server for microservices?
    4 projects | /r/kubernetes | 17 Feb 2023
    With all that said, K8s is not really meant to function as an API gateway to arbitrary services. You should look into API gateways such as NGINX, Kong or others, service meshes as others have already pointed out, or have a look at the K8s Gateway API the SIG is currently working on. The last one is in the early stages of adoption, but it could provide you with a nice way to do an API Gateway right in K8s.
  • load balancer and kubernetes
    3 projects | /r/aws | 23 Jan 2023
    Maybe there's something in the new fangled gateways.
  • Service Mesh Considerations
    7 projects | dev.to | 14 Dec 2022
    Keep an eye on the Gateway API GAMMA Initiative as it is currently evolving with the goal of streamlining how services meshes can implement the Gateway API and reduce some overlap.
  • EKS: is it possible to rewrite the URL with ALB?
    1 project | /r/kubernetes | 12 Dec 2022
  • Apache Apisix: Open-Source API Gateway and API Management Platform
    6 projects | news.ycombinator.com | 15 Sep 2022
    The selling point for me was ability to configure it using Kubernetes CRD's and future support of the Gateway API (under development - <https://gateway-api.sigs.k8s.io/>).

    Developers can version their API now within helm charts or even yaml templates held along the code in their repositories.

  • A quick glance at the Kubernetes Gateway API
    3 projects | dev.to | 7 Sep 2022
    -- https://gateway-api.sigs.k8s.io
  • Sharing load balancers between containers
    2 projects | /r/kubernetes | 3 Sep 2022
    While you're learning about ingresses, also look into the k8s Gateway API, which is the next generation. https://gateway-api.sigs.k8s.io/

What are some alternatives?

When comparing apisix-ingress-controller and gateway-api you can also consider the following projects:

ingress-nginx - Ingress-NGINX Controller for Kubernetes

caddy-l4 - Layer 4 (TCP/UDP) app for Caddy

envoy - Cloud-native high-performance edge/middle/service proxy

apisix-opa-plugin

emissary - open source Kubernetes-native API gateway for microservices built on the Envoy Proxy

kubernetes-ingress-controller - :gorilla: Kong for Kubernetes: The official Ingress Controller for Kubernetes.

IngressMonitorController - A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you're using it!

tyk-operator - Tyk Operator for Kubernetes

apisix - The Cloud-Native API Gateway

OPA (Open Policy Agent) - Open Policy Agent (OPA) is an open source, general-purpose policy engine.

ingress-merge - Merge Ingress Controller for Kubernetes

multus-cni - A CNI meta-plugin for multi-homed pods in Kubernetes