Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Kong | 36,409 | 12 hours ago | 99 | apache-2.0 | Lua | |||||
🦍 The Cloud-Native API Gateway | ||||||||||
Kuboard Press | 19,085 | 4 months ago | 365 | JavaScript | ||||||
Kuboard 是基于 Kubernetes 的微服务管理界面。同时提供 Kubernetes 免费中文教程,入门教程,最新版本的 Kubernetes v1.23.4 安装手册,(k8s install) 在线答疑,持续更新。 | ||||||||||
Authelia | 18,065 | 2 | 11 hours ago | 64 | October 28, 2019 | 103 | apache-2.0 | Go | ||
The Single Sign-On Multi-Factor portal for web apps | ||||||||||
Ingress Nginx | 16,031 | 1 | 11 hours ago | 63 | July 21, 2021 | 598 | apache-2.0 | Go | ||
Ingress-NGINX Controller for Kubernetes | ||||||||||
External Dns | 6,868 | 12 | 12 hours ago | 139 | November 07, 2023 | 259 | apache-2.0 | Go | ||
Configure external DNS servers (AWS Route53, Google CloudDNS and others) for Kubernetes Ingresses and Services | ||||||||||
K8s For Docker Desktop | 4,782 | 13 days ago | 47 | apache-2.0 | PowerShell | |||||
为Docker Desktop for Mac/Windows开启Kubernetes和Istio。 | ||||||||||
Flagger | 4,501 | 7 | 7 days ago | 62 | November 30, 2023 | 247 | apache-2.0 | Go | ||
Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments) | ||||||||||
Kubernetes Ingress | 4,422 | 3 | 9 hours ago | 102 | October 19, 2022 | 84 | apache-2.0 | Go | ||
NGINX and NGINX Plus Ingress Controllers for Kubernetes | ||||||||||
Aws Load Balancer Controller | 3,591 | 6 days ago | 18 | June 28, 2021 | 214 | apache-2.0 | Go | |||
A Kubernetes controller for Elastic Load Balancers | ||||||||||
K8s Tutorials | 3,572 | a month ago | 2 | mit | Go | |||||
k8s tutorials | k8s 教程 |
This repo provides an implementation of an Ingress Controller for NGINX and NGINX Plus from the people behind NGINX.
NGINX Ingress Controller works with both NGINX and NGINX Plus and supports the standard Ingress features - content-based routing and TLS/SSL termination.
Additionally, several NGINX and NGINX Plus features are available as extensions to the Ingress resource via annotations and the ConfigMap resource. In addition to HTTP, NGINX Ingress Controller supports load balancing Websocket, gRPC, TCP and UDP applications. See ConfigMap and Annotations docs to learn more about the supported features and customization options.
As an alternative to the Ingress, NGINX Ingress Controller supports the VirtualServer and VirtualServerRoute resources. They enable use cases not supported with the Ingress resource, such as traffic splitting and advanced content-based routing. See VirtualServer and VirtualServerRoute resources doc.
TCP, UDP and TLS Passthrough load balancing is also supported. See the TransportServer resource doc.
Read this doc to learn more about NGINX Ingress Controller with NGINX Plus.
Note
This project is different from the NGINX Ingress Controller in kubernetes/ingress-nginx repo. See this doc to find out about the key differences.
The Ingress is a Kubernetes resource that lets you configure an HTTP load balancer for applications running on Kubernetes, represented by one or more Services. Such a load balancer is necessary to deliver those applications to clients outside of the Kubernetes cluster.
The Ingress resource supports the following features:
foo.example.com
to one group of services
and the host header bar.example.com
to another group./serviceA
to service A and
requests with the URI that starts with /serviceB
to service B.foo.example.com
.See the Ingress User Guide to learn more about the Ingress resource.
The Ingress Controller is an application that runs in a cluster and configures an HTTP load balancer according to Ingress resources. The load balancer can be a software load balancer running in the cluster or a hardware or cloud load balancer running externally. Different load balancers require different Ingress Controller implementations.
In the case of NGINX, the Ingress Controller is deployed in a pod along with the load balancer.
Note
All documentation should only be used with the latest stable release, indicated on the releases page of the GitHub repository.
We publish NGINX Ingress Controller releases on GitHub. See our releases page.
The latest stable release is 3.3.2. For production use, we recommend that you choose the latest stable release.
The edge version is useful for experimenting with new features that are not yet published in a stable release. To use it, choose the edge version built from the latest commit from the main branch.
To use the NGINX Ingress Controller, you need to have access to:
It is important that the versions of those things above match.
The table below summarizes the options regarding the images, Helm chart, manifests, documentation and examples and gives your links to the correct versions:
Version | Description | Image for NGINX | Image for NGINX Plus | Installation Manifests and Helm Chart | Documentation and Examples |
---|---|---|---|---|---|
Latest stable release | For production use | Use the 3.3.2 images from DockerHub, GitHub Container, Amazon ECR Public Gallery or Quay.io or build your own image. | Use the 3.3.2 images from the F5 Container Registry or the AWS Marketplace or Build your own image. | Manifests. Helm chart. | Documentation. Examples. |
Edge/Nightly | For testing and experimenting | Use the edge or nightly images from DockerHub, GitHub Container, Amazon ECR Public Gallery or Quay.io or build your own image. | Build your own image. | Manifests. Helm chart. | Documentation. Examples. |
We generate SBOMs for the binaries and the Docker images.
The SBOMs for the binaries are available in the releases page. The SBOMs are generated using syft and are available in SPDX format.
The SBOMs for the Docker images are available in the DockerHub, GitHub Container, Amazon ECR Public Gallery or Quay.io repositories. The SBOMs are generated using syft and stored as an attestation in the image manifest.
For example to retrieve the SBOM for linux/amd64
from Docker Hub and analyze it using
grype you can run the following command:
docker buildx imagetools inspect nginx/nginx-ingress:edge --format '{{ json (index .SBOM "linux/amd64").SPDX }}' | grype
Wed like to hear your feedback! If you have any suggestions or experience issues with our Ingress Controller, please create an issue or send a pull request on GitHub. You can contact us directly via [email protected] or on the NGINX Community Slack.
If you'd like to contribute to the project, please read our Contributing guide.
For NGINX Plus customers NGINX Ingress Controller (when used with NGINX Plus) is covered by the support contract.