Skip to content

Commit 987039c

Browse files
authored
Chart: Remove controller.enableWorkerSerialReloads. (#11400)
1 parent a02f5d2 commit 987039c

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

charts/ingress-nginx/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ As of version `1.26.0` of this chart, by simply not providing any clusterIP valu
301301
| controller.enableAnnotationValidations | bool | `false` | |
302302
| controller.enableMimalloc | bool | `true` | Enable mimalloc as a drop-in replacement for malloc. # ref: https://github.com/microsoft/mimalloc # |
303303
| controller.enableTopologyAwareRouting | bool | `false` | This configuration enables Topology Aware Routing feature, used together with service annotation service.kubernetes.io/topology-mode="auto" Defaults to false |
304-
| controller.enableWorkerSerialReloads | bool | `false` | This configuration defines if NGINX workers should reload serially instead of concurrently when multiple changes that require reloads are queued |
305304
| controller.existingPsp | string | `""` | Use an existing PSP instead of creating one |
306305
| controller.extraArgs | object | `{}` | Additional command line arguments to pass to Ingress-Nginx Controller E.g. to specify the default SSL certificate you can use |
307306
| controller.extraContainers | list | `[]` | Additional containers to be added to the controller pod. See https://github.com/lemonldap-ng-controller/lemonldap-ng-controller as example. |

charts/ingress-nginx/templates/controller-configmap.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ metadata:
1414
namespace: {{ include "ingress-nginx.namespace" . }}
1515
data:
1616
allow-snippet-annotations: "{{ .Values.controller.allowSnippetAnnotations }}"
17-
enable-serial-reloads: "{{ .Values.controller.enableWorkerSerialReloads }}"
1817
{{- if .Values.controller.addHeaders }}
1918
add-headers: {{ include "ingress-nginx.namespace" . }}/{{ include "ingress-nginx.fullname" . }}-custom-add-headers
2019
{{- end }}

charts/ingress-nginx/values.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ controller:
9393
# when users add those annotations.
9494
# Global snippets in ConfigMap are still respected
9595
allowSnippetAnnotations: false
96-
# -- This configuration defines if NGINX workers should reload serially instead of concurrently when multiple changes that require reloads are queued
97-
enableWorkerSerialReloads: false
9896
# -- Required for use with CNI based kubernetes installations (such as ones set up by kubeadm),
9997
# since CNI and hostport don't mix yet. Can be deprecated once https://github.com/kubernetes/kubernetes/issues/23920
10098
# is merged

0 commit comments

Comments
 (0)