From 29b30089454128497204664cb906eeb9b12b93ff Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Fri, 10 Jan 2025 16:19:16 -0600 Subject: [PATCH] Clarify node-labels are additive or destructive --- docs/src/charm/howto/install-custom.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/src/charm/howto/install-custom.md b/docs/src/charm/howto/install-custom.md index dbb4a74a5..d8fd6ced2 100644 --- a/docs/src/charm/howto/install-custom.md +++ b/docs/src/charm/howto/install-custom.md @@ -35,8 +35,10 @@ k8s: dns-cluster-domain: "cluster.local" dns-upstream-nameservers: "8.8.8.8 8.8.4.4" - # Add custom node labels - node-labels: "environment=production zone=us-east-1" + # Add/Remove custom node labels + # Using = one can ensure the label is added to all the nodes of this application + # Using =- one can ensure the label is removed from all the nodes of this application + node-labels: "environment=production zone=us-east-1 node-role.kubernetes.io/worker=-" # Configure local storage local-storage-enabled: true