Ingress NGINX Controller for Kubernetes
Find a file
2018-04-26 13:57:18 +03:00
.github Request ingress controller version 2017-10-08 12:00:29 -03:00
.travis Fix publish ARCH error (#1862) 2017-12-27 12:29:04 -03:00
cmd/nginx Correct some info in flags.go 2018-04-15 23:49:00 +08:00
deploy Move deployment documentation under docs/deploy/ 2018-04-26 13:57:18 +03:00
docs Configure mkdocs with mkdocs-material and friends 2018-04-26 13:57:18 +03:00
hack automate dev environment build 2018-04-24 16:29:31 -04:00
images Update nginx image 2018-04-24 16:24:38 -03:00
internal Apply gometalinter suggestions 2018-04-25 18:53:49 -03:00
rootfs Merge pull request #2408 from Shopify/updated-buffered-backends 2018-04-24 14:09:02 -07:00
test Apply gometalinter suggestions 2018-04-25 18:53:49 -03:00
vendor Update go dependencies 2018-04-21 14:26:59 -03:00
version Remove GenericController and add tests 2017-11-05 17:51:05 -03:00
.codecov.yml Migrate to codecov.io (#2120) 2018-02-20 08:27:02 -08:00
.dockerignore Move nginx to root directory 2017-10-06 16:58:36 -03:00
.gitignore Configure mkdocs with mkdocs-material and friends 2018-04-26 13:57:18 +03:00
.luacheckrc Add busted unit testing framework for lua code 2018-04-23 10:46:28 -04:00
.travis.yml Fix golint installation 2018-04-24 09:47:23 -03:00
Changelog.md Release nginx ingress controller 0.13.0 2018-04-13 14:53:39 -03:00
code-of-conduct.md Update code-of-conduct.md (#1842) 2017-12-20 15:34:27 -03:00
CONTRIBUTING.md Auto stash before merge of "master" and "master/master" 2017-10-20 22:38:27 -03:00
Gopkg.lock Update go dependencies 2018-04-21 14:26:59 -03:00
Gopkg.toml Update go dependencies 2018-04-21 14:26:59 -03:00
labels.yaml add labels.yaml file 2017-02-09 00:54:30 -05:00
LICENSE Initial commit 2016-11-04 23:54:14 +01:00
Makefile Merge pull request #2417 from Shopify/dev-up 2018-04-24 13:52:02 -07:00
mkdocs.yml Configure mkdocs with mkdocs-material and friends 2018-04-26 13:57:18 +03:00
OWNERS Update owners 2018-04-13 20:08:13 -03:00
OWNERS_ALIASES Update owners 2018-04-13 20:08:13 -03:00
README.md Move all documentation under docs/ 2018-04-26 13:57:18 +03:00
requirements-docs.txt Configure mkdocs with mkdocs-material and friends 2018-04-26 13:57:18 +03:00

Help us to improve the NGINX Ingress controller completing the survey


NGINX Ingress Controller

Build Status Coverage Status Go Report Card

Description

This repository contains the NGINX controller built around the Kubernetes Ingress resource that uses ConfigMap to store the NGINX configuration.

Learn more about using Ingress on k8s.io

What is an Ingress Controller?

Configuring a webserver or loadbalancer is harder than it should be. Most webserver configuration files are very similar. There are some applications that have weird little quirks that tend to throw a wrench in things, but for the most part you can apply the same logic to them and achieve a desired result.

The Ingress resource embodies this idea, and an Ingress controller is meant to handle all the quirks associated with a specific "class" of Ingress.

An Ingress Controller is a daemon, deployed as a Kubernetes Pod, that watches the apiserver's /ingresses endpoint for updates to the Ingress resource. Its job is to satisfy requests for Ingresses.

Documentation

See docs/index.md for detailed documentation.