From 8556884f16778bfbeea01c18ba0f920c3d2a7346 Mon Sep 17 00:00:00 2001 From: Andrew Greenwood Date: Tue, 1 Oct 2019 17:00:23 -0600 Subject: [PATCH] Add node_selector example to full cluster.yml Fairly common to want to reduce the ingress controller deployments to a subset of nodes. Helpful to find this in the 'full' example. --- content/rke/latest/en/example-yamls/_index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/rke/latest/en/example-yamls/_index.md b/content/rke/latest/en/example-yamls/_index.md index 54113ec8b6d..9f4c60ac773 100644 --- a/content/rke/latest/en/example-yamls/_index.md +++ b/content/rke/latest/en/example-yamls/_index.md @@ -226,10 +226,12 @@ dns: # Currently only nginx ingress provider is supported. # To disable ingress controller, set `provider: none` - +# `node_selector` controls ingress placement and is optional ingress: provider: nginx - + node_selector: + app: ingress + # All add-on manifests MUST specify a namespace addons: |- ---