Skip to content
Snippets Groups Projects
Verified Commit 51c1539a authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

feat(nginx-system): Add affinity configuration

This patch forces a spreading across multiple Nodes for ingress
controller Pods. This should ensure that Pods a single node failing,
doesn't take down all ingress Pods.

Further this patch introduces a node affinity, that prefers nodes with
better CPU feature support. In order to utilise hardware acceleration as
much as possible.

References:
https://www.intel.com/content/dam/develop/external/us/en/documents/open-ssl-performance-paper-345527.pdf
parent a39e4e52
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,47 @@ metadata: ...@@ -31,6 +31,47 @@ metadata:
data: data:
values.yaml: | values.yaml: |
controller: controller:
affinity:
# Force spread across nodes
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/name
operator: In
values:
- ingress-nginx
- key: app.kubernetes.io/instance
operator: In
values:
- nginx-ingress
- key: app.kubernetes.io/component
operator: In
values:
- controller
topologyKey: "kubernetes.io/hostname"
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 5
preference:
matchExpressions:
- key: feature.node.kubernetes.io/cpu-cpuid.AESNI
operator: Exists
- weight: 1
preference:
matchExpressions:
- key: feature.node.kubernetes.io/cpu-cpuid.SHA
operator: Exists
- weight: 1
preference:
matchExpressions:
- key: feature.node.kubernetes.io/cpu-cpuid.AVX
operator: Exists
- weight: 1
preference:
matchExpressions:
- key: feature.node.kubernetes.io/cpu-cpuid.AVX2
operator: Exists
ingressClassResource: ingressClassResource:
name: nginx name: nginx
enabled: true enabled: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment