-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ingress docs section and document flags to pass to Contour for
configuring how to setup Envoy service reference Signed-off-by: Steve Sloka <slokas@vmware.com>
- Loading branch information
1 parent
e686049
commit 004d3ae
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Kubernetes Ingress | ||
|
||
Contour supports Kubernetes Ingress and implements many advanced features via [annotations][0]. | ||
|
||
More information about the Ingress spec can be found in the Kubernetes docs: [https://kubernetes.io/docs/concepts/services-networking/ingress/][1] | ||
|
||
## Status | ||
|
||
Contour updates the `status` field on all Ingress objects if the `Host` or `IP` is available through the Envoy service's (`type=LoadBalancer`) [status][2] information. | ||
The default service which Contour looks for this information is the namespace in which Contour is deployed and the service named `envoy`, however this is | ||
configurable by setting the following flags on Contour: | ||
|
||
- `--envoy-service-name`: Defines the name of the Envoy service which this instance of Contour sends configuration (Defaults to `envoy`) | ||
- `--envoy-service-namespace`: Defines the namespace of the Envoy service which this instance of Contour sends configuration (Defaults to namespace of where Contour is deployed) | ||
|
||
[0]: annotations.md | ||
[1]: https://kubernetes.io/docs/concepts/services-networking/ingress/ | ||
[2]: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer |