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
@@ -363,8 +364,10 @@ def format_pods(pods: list[V1Pod]) -> list[str]:
363364 pod_list = []
364365 formatted_commanders = format_pods (get_mission (COMMANDER_MISSION ))
365366 formatted_tanks = format_pods (get_mission (TANK_MISSION ))
367+ formatted_plugins = format_pods (get_mission (PLUGIN_MISSION ))
366368 pod_list .extend (formatted_commanders )
367369 pod_list .extend (formatted_tanks )
370+ pod_list .extend (formatted_plugins )
368371
369372 except Exception as e :
370373 print (f"Could not fetch any pods in namespace ({ namespace } ): { e } " )
You can’t perform that action at this time.
0 commit comments