bugfix: MAX_POD_LIFETIME is in hours

This commit is contained in:
Andrei Vereha 2021-08-02 23:42:44 +02:00
parent 64160d24c2
commit 0c401a84c8

View file

@ -4,6 +4,6 @@ import java.time.Duration
class PodConstants {
companion object {
val MAX_POD_LIFETIME = Duration.ofMinutes(80)
val MAX_POD_LIFETIME = Duration.ofHours(80)
}
}