diff --git a/kubemarine/patches/p1_set_sysctl_variables.py b/kubemarine/patches/p1_set_sysctl_variables.py index 40ec9f9a0..ba057434d 100644 --- a/kubemarine/patches/p1_set_sysctl_variables.py +++ b/kubemarine/patches/p1_set_sysctl_variables.py @@ -12,7 +12,7 @@ def __init__(self) -> None: def run(self, res: DynamicResources) -> None: cluster = res.cluster() - node_group = cluster.make_group_from_roles(['control-plane', 'worker']) + node_group = cluster.make_group_from_roles(['all']) node_group.call(sysctl.configure) node_group.call(sysctl.reload)