Skip to content

Commit

Permalink
allow plugins without installation procedures
Browse files Browse the repository at this point in the history
  • Loading branch information
theboringstuff committed Jan 23, 2024
1 parent 01330c0 commit 1ae6544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubemarine/thirdparties.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def install_all_thirparties(group: NodeGroup) -> None:
if cluster.context.get("initial_procedure") in ("install", "upgrade"):
managing_plugin = next((plugin_name
for plugin_name, plugin_configs in cluster.inventory['plugins'].items()
for plugin_procedure in plugin_configs['installation']['procedures']
for plugin_procedure in plugin_configs.get('installation', {}).get('procedures', [])
if plugin_procedure.get('thirdparty') == destination),
None)

Expand Down

0 comments on commit 1ae6544

Please sign in to comment.