Package io.quarkus.kubernetes.deployment
Class RollingUpdateConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.RollingUpdateConfig
-
public class RollingUpdateConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) StringmaxSurgeSpecifies the maximum number of Pods that can be created over the desired number of Pods.(package private) StringmaxUnavailableSpecifies the maximum number of Pods that can be unavailable during the update process.
-
Constructor Summary
Constructors Constructor Description RollingUpdateConfig()
-
-
-
Field Detail
-
maxUnavailable
@ConfigItem(defaultValue="25%") String maxUnavailable
Specifies the maximum number of Pods that can be unavailable during the update process.
-
maxSurge
@ConfigItem(defaultValue="25%") String maxSurge
Specifies the maximum number of Pods that can be created over the desired number of Pods.
-
-