@@ -652,6 +652,12 @@ func IsTerminatedDeployment(deployment runtime.Object) bool {
652
652
return IsCompleteDeployment (deployment ) || IsFailedDeployment (deployment )
653
653
}
654
654
655
+ // IsNewDeployment returns true if the passed deployment is in new state.
656
+ func IsNewDeployment (deployment runtime.Object ) bool {
657
+ current := DeploymentStatusFor (deployment )
658
+ return current == deployapi .DeploymentStatusNew
659
+ }
660
+
655
661
// IsCompleteDeployment returns true if the passed deployment is in state complete.
656
662
func IsCompleteDeployment (deployment runtime.Object ) bool {
657
663
current := DeploymentStatusFor (deployment )
@@ -782,6 +788,33 @@ func DeploymentsForCleanup(configuration *deployapi.DeploymentConfig, deployment
782
788
return relevantDeployments
783
789
}
784
790
791
+ // RolloutExceededTimeoutSeconds returns true if the current deployment exceeded
792
+ // the timeoutSeconds defined for its strategy.
793
+ // Note that this is different than activeDeadlineSeconds which is the timeout
794
+ // set for the deployer pod. In some cases, the deployer pod cannot be created
795
+ // (like quota, etc...). In that case deployer controller use this function to
796
+ // measure if the created deployment (RC) exceeded the timeout.
797
+ func RolloutExceededTimeoutSeconds (config * deployapi.DeploymentConfig , latestRC * v1.ReplicationController ) bool {
798
+ var timeoutSeconds int64
799
+ if params := config .Spec .Strategy .RollingParams ; params != nil {
800
+ timeoutSeconds = deployapi .DefaultRollingTimeoutSeconds
801
+ if params .TimeoutSeconds != nil {
802
+ timeoutSeconds = * params .TimeoutSeconds
803
+ }
804
+ }
805
+ if params := config .Spec .Strategy .RecreateParams ; params != nil {
806
+ timeoutSeconds = deployapi .DefaultRecreateTimeoutSeconds
807
+ if params .TimeoutSeconds != nil {
808
+ timeoutSeconds = * params .TimeoutSeconds
809
+ }
810
+ }
811
+ // For "custom" strategy use the default for recreate strategy.
812
+ if timeoutSeconds == 0 {
813
+ timeoutSeconds = deployapi .DefaultRecreateTimeoutSeconds
814
+ }
815
+ return int64 (time .Since (latestRC .CreationTimestamp .Time ).Seconds ()) > timeoutSeconds
816
+ }
817
+
785
818
// WaitForRunningDeployerPod waits a given period of time until the deployer pod
786
819
// for given replication controller is not running.
787
820
func WaitForRunningDeployerPod (podClient kcoreclient.PodsGetter , rc * api.ReplicationController , timeout time.Duration ) error {
0 commit comments