File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,9 @@ rke2_disable:
184184# Option to disable kube-proxy
185185disable_kube_proxy : false
186186
187+ # Option to disable builtin cloud controller - mostly for onprem
188+ rke2_disable_cloud_controller : false
189+
187190# Path to custom manifests deployed during the RKE2 installation
188191# It is possible to use Jinja2 templating in the manifests
189192rke2_custom_manifests :
Original file line number Diff line number Diff line change @@ -145,6 +145,9 @@ rke2_disable:
145145# Option to disable kube-proxy
146146disable_kube_proxy : false
147147
148+ # Option to disable builtin cloud controller - mostly for onprem
149+ rke2_disable_cloud_controller : false
150+
148151# Path to custom manifests deployed during the RKE2 installation
149152# It is possible to use Jinja2 templating in the manifests
150153rke2_custom_manifests :
Original file line number Diff line number Diff line change @@ -77,3 +77,7 @@ kubelet-arg:
7777 - {{ argument }}
7878{% endfor %}
7979{% endif %}
80+ {% if (rke 2_disable_cloud_controller | bool ) %}
81+ disable-cloud-controller : true
82+ {% endif %}
83+
You can’t perform that action at this time.
0 commit comments