File tree Expand file tree Collapse file tree
crates/openshell-server/src/compute Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1624,6 +1624,7 @@ fn is_terminal_failure_reason(reason: &str) -> bool {
16241624 "dependenciesnotready" ,
16251625 "starting" ,
16261626 "containerstarting" ,
1627+ "containercreated" ,
16271628 "healthcheckstarting" ,
16281629 "inspectfailed" ,
16291630 ] ;
@@ -2006,6 +2007,10 @@ mod tests {
20062007 ) ,
20072008 ( "dependenciesnotready" , "lowercase also works" ) ,
20082009 ( "Starting" , "VM is starting" ) ,
2010+ (
2011+ "ContainerCreated" ,
2012+ "Podman created the container before starting it" ,
2013+ ) ,
20092014 ] ;
20102015
20112016 for ( reason, message) in transient_cases {
@@ -2043,6 +2048,10 @@ mod tests {
20432048 "Pod exists with phase: Pending; Service Exists" ,
20442049 ) ,
20452050 ( "Starting" , "VM is starting" ) ,
2051+ (
2052+ "ContainerCreated" ,
2053+ "Container exists but has not started yet" ,
2054+ ) ,
20462055 ] ;
20472056
20482057 for ( reason, message) in transient_conditions {
You can’t perform that action at this time.
0 commit comments