generated from nginx/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 112
Annotation conversion guidance for SSL and gRPC backend (upstream) services #886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking βSign up for GitHubβ, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jnewfield
wants to merge
11
commits into
nginx:main
Choose a base branch
from
jnewfield:newfield-nic-migration-update
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
cd63d4a
Changes have been made
jnewfield 637527d
Merge branch 'main' into newfield-nic-migration-update
ADubhlaoich 0cfaf0f
Merge branch 'main' into newfield-nic-migration-update
ADubhlaoich 3804e02
Merge branch 'main' into newfield-nic-migration-update
ADubhlaoich d4bfd2e
Changes have been made
jnewfield 493fcc3
Merge branch 'newfield-nic-migration-update' of https://github.com/jnβ¦
jnewfield a982c0a
Changes have been made
jnewfield a5cf476
Changes have been made
jnewfield 3c93e8d
Changes have been made
jnewfield 846a88f
Merge branch 'main' into newfield-nic-migration-update
jnewfield 67f764f
Merge branch 'main' into newfield-nic-migration-update
ADubhlaoich File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -488,6 +488,20 @@ nginx.com/sticky-cookie-services: "serviceName=example-svc cookie_name expires=t | |||||||
NGINX Ingress Controller has additional annotations for features using NGINX Plus that have no Ingress-NGINX Controller equivalent, such as active health checks and authentication using JSON Web Tokens (JWTs). | ||||||||
{{< /call-out >}} | ||||||||
|
||||||||
The following table outlines annotation conversions for enabling TLS and gRPC protocols to backend (upstream) services. | ||||||||
|
||||||||
{{< bootstrap-table "table table-bordered table-striped table-responsive" >}} | ||||||||
| Ingress-NGINX Controller | NGINX Ingress Controller | | ||||||||
| ------------------------ | ------------------------ | | ||||||||
| [_nginx.ingress.kubernetes.io/backend-protocol_](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#backend-protocol): "HTTPS" | [_nginx.org/ssl-services_]({{< ref "/nic/configuration/ingress-resources/advanced-configuration-with-annotations.md#backend-services-upstreams" >}}): "ssl_service_name" | | ||||||||
| [_nginx.ingress.kubernetes.io/backend-protocol_](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#backend-protocol): "GRPC" | [_nginx.org/grpc-services_]({{< ref "/nic/configuration/ingress-resources/advanced-configuration-with-annotations.md#backend-services-upstreams" >}}): "grpc_service_name" | | ||||||||
| [_nginx.ingress.kubernetes.io/backend-protocol_](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#backend-protocol): "GRPCS" | [_nginx.org/ssl-services_]({{< ref "/nic/configuration/ingress-resources/advanced-configuration-with-annotations.md#backend-services-upstreams" >}}): "grpc_service_name"<br />[_nginx.org/grpc-services_]({{< ref "/nic/configuration/ingress-resources/advanced-configuration-with-annotations.md#backend-services-upstreams" >}}): "grpc_service_name" | | ||||||||
|
||||||||
{{% /bootstrap-table %}} | ||||||||
Comment on lines
+499
to
+500
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
{{< call-out "important" >}} | ||||||||
GRPC services require Ingresses with TLS termination and HTTP/2 enabled (see [_http2 ConfigMap key_](/nic/configuration/global-configuration/configmap-resource.md#listeners)). | ||||||||
{{< /call-out >}} | ||||||||
|
||||||||
### Global configuration with ConfigMaps | ||||||||
|
||||||||
This table maps the Ingress-NGINX Controller ConfigMap keys to NGINX Ingress Controller's equivalent ConfigMap keys. | ||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.