File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 2020
2121TANK_MISSION = "tank"
2222COMMANDER_MISSION = "commander"
23+ PLUGIN_MISSION = "plugin"
2324
2425BITCOINCORE_CONTAINER = "bitcoincore"
2526COMMANDER_CONTAINER = "commander"
Original file line number Diff line number Diff line change 2323 COMMANDER_CHART ,
2424 COMMANDER_CONTAINER ,
2525 COMMANDER_MISSION ,
26+ PLUGIN_MISSION ,
2627 TANK_MISSION ,
2728)
2829from .hooks import api
@@ -382,8 +383,10 @@ def format_pods(pods: list[V1Pod]) -> list[str]:
382383 pod_list = []
383384 formatted_commanders = format_pods (get_mission (COMMANDER_MISSION ))
384385 formatted_tanks = format_pods (get_mission (TANK_MISSION ))
386+ formatted_plugins = format_pods (get_mission (PLUGIN_MISSION ))
385387 pod_list .extend (formatted_commanders )
386388 pod_list .extend (formatted_tanks )
389+ pod_list .extend (formatted_plugins )
387390
388391 except Exception as e :
389392 print (f"Could not fetch any pods in namespace ({ namespace } ): { e } " )
You can’t perform that action at this time.
0 commit comments