DeploymentStrategy

data class DeploymentStrategy(val rollingUpdate: RollingUpdateDeployment? = null, val type: String? = null)

DeploymentStrategy describes how to replace existing pods with new ones.

Constructors

Link copied to clipboard
constructor(rollingUpdate: RollingUpdateDeployment? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

Link copied to clipboard
val type: String? = null

Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.