You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/nginx-ingress/flags.go
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -199,7 +199,7 @@ var (
199
199
200
200
defaultHTTPSListenerPort=flag.Int("default-https-listener-port", 443, "Sets a custom port for the HTTPS `default_server`. [1024 - 65535]")
201
201
202
-
enableDynamicSSLReload=flag.Bool(dynamicSSLReloadParam, true, "Enable reloading of SSL Certificates without restarting the NGINX process. Requires -nginx-plus")
202
+
enableDynamicSSLReload=flag.Bool(dynamicSSLReloadParam, true, "Enable reloading of SSL Certificates without restarting the NGINX process.")
203
203
204
204
startupCheckFnfunc() error
205
205
)
@@ -275,11 +275,6 @@ func parseFlags() {
275
275
if*ingressLink!=""&&*externalService!="" {
276
276
glog.Fatal("ingresslink and external-service cannot both be set")
277
277
}
278
-
279
-
if*enableDynamicSSLReload&&!*nginxPlus {
280
-
glog.V(3).Infof("%s flag requires -nginx-plus and will not be enabled", dynamicSSLReloadParam)
Copy file name to clipboardExpand all lines: docs/content/installation/installing-nic/installation-with-helm.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -418,6 +418,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
418
418
|**controller.strategy**| Specifies the strategy used to replace old Pods with new ones. Docs for [Deployment update strategy](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy) and [Daemonset update strategy](https://kubernetes.io/docs/tasks/manage-daemon/update-daemon-set/#daemonset-update-strategy) | {} |
419
419
|**controller.disableIPV6**| Disable IPV6 listeners explicitly for nodes that do not support the IPV6 stack. |false|
420
420
|**controller.readOnlyRootFilesystem**| Configure root filesystem as read-only and add volumes for temporary data. |false|
421
+
|**controller.enableSSLDynamicReload**| Enable lazy loading for SSL Certificates. |true|
421
422
|**rbac.create**| Configures RBAC. |true|
422
423
|**prometheus.create**| Expose NGINX or NGINX Plus metrics in the Prometheus format. |true|
423
424
|**prometheus.port**| Configures the port to scrape the metrics. | 9113 |
0 commit comments