Jump to content

Kubernetes: Difference between revisions

235 bytes added ,  12 November 2022
No edit summary
Line 359: Line 359:


If your backend uses HTTPS, you will need to add the annotation: <code>nginx.ingress.kubernetes.io/backend-protocol: HTTPS</code>
If your backend uses HTTPS, you will need to add the annotation: <code>nginx.ingress.kubernetes.io/backend-protocol: HTTPS</code>
For self-signed SSL certificates, you will also need the annotation:
<syntaxhighlight lang="yaml">
    nginx.ingress.kubernetes.io/configuration-snippet: |
      proxy_ssl_name $host;
      proxy_ssl_server_name on;
</syntaxhighlight>


==Autoscaling==
==Autoscaling==