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 20
20
21
21
TANK_MISSION = "tank"
22
22
COMMANDER_MISSION = "commander"
23
+ PLUGIN_MISSION = "plugin"
23
24
24
25
BITCOINCORE_CONTAINER = "bitcoincore"
25
26
COMMANDER_CONTAINER = "commander"
Original file line number Diff line number Diff line change 23
23
COMMANDER_CHART ,
24
24
COMMANDER_CONTAINER ,
25
25
COMMANDER_MISSION ,
26
+ PLUGIN_MISSION ,
26
27
TANK_MISSION ,
27
28
)
28
29
from .hooks import api
@@ -363,8 +364,10 @@ def format_pods(pods: list[V1Pod]) -> list[str]:
363
364
pod_list = []
364
365
formatted_commanders = format_pods (get_mission (COMMANDER_MISSION ))
365
366
formatted_tanks = format_pods (get_mission (TANK_MISSION ))
367
+ formatted_plugins = format_pods (get_mission (PLUGIN_MISSION ))
366
368
pod_list .extend (formatted_commanders )
367
369
pod_list .extend (formatted_tanks )
370
+ pod_list .extend (formatted_plugins )
368
371
369
372
except Exception as e :
370
373
print (f"Could not fetch any pods in namespace ({ namespace } ): { e } " )
You can’t perform that action at this time.
0 commit comments