From b73455b65736d4f4ce2a0f756678501e215daa8e Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sat, 4 Jan 2025 21:54:38 +0100 Subject: [PATCH] doc(values): add affinity example --- values.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/values.yaml b/values.yaml index 5835db2..5656747 100644 --- a/values.yaml +++ b/values.yaml @@ -93,6 +93,22 @@ deployment: ## @param deployment.affinity Affinity for the postgres-exporter deployment. affinity: {} + # nodeAffinity: + # requiredDuringSchedulingIgnoredDuringExecution: + # nodeSelectorTerms: + # - matchExpressions: + # - key: kubernetes.io/os + # operator: In + # values: + # - linux + # preferredDuringSchedulingIgnoredDuringExecution: + # - weight: 20 + # preference: + # matchExpressions: + # - key: kubernetes.io/arch + # operator: In + # values: + # - amd64 ## @param deployment.initContainers List of additional init containers. initContainers: []