Browse Source

Fix container engine still installed on dedicated etcd node even if `etcd_deployment_type: host` (#8386)

pull/8402/head
rtsp 2 years ago
committed by GitHub
parent
commit
aa4a3d7afd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubespray-defaults/defaults/main.yaml

2
roles/kubespray-defaults/defaults/main.yaml

@ -258,7 +258,7 @@ kubelet_shutdown_grace_period: 60s
kubelet_shutdown_grace_period_critical_pods: 20s
# Whether to deploy the container engine
deploy_container_engine: inventory_hostname in groups['k8s_cluster'] or etcd_deployment_type != 'host'
deploy_container_engine: "{{ inventory_hostname in groups['k8s_cluster'] or etcd_deployment_type != 'host' }}"
# Container for runtime
container_manager: containerd

Loading…
Cancel
Save