Skip to content

Commit

Permalink
Minor fix in check_paas
Browse files Browse the repository at this point in the history
  • Loading branch information
ilia1243 committed Nov 15, 2022
1 parent 9d14ece commit 6644e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubemarine/procedures/check_paas.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def services_status(cluster: KubernetesCluster, service_type: str):
default_results='active (running)'):
service_name = service_type

if cluster.get_os_family() != 'multiple':
if cluster.get_os_family() != 'multiple' and service_type != 'kubelet':
service_name = cluster.get_package_association(service_type, 'service_name')

group = cluster.nodes['all']
Expand Down

0 comments on commit 6644e14

Please sign in to comment.