com.pulumi.kubernetes.policy.v1.kotlin.outputs.PodDisruptionBudgetStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.policy.v1.kotlin.outputs
import com.pulumi.kubernetes.meta.v1.kotlin.outputs.Condition
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.
* @property conditions Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute
* the number of allowed disruptions. Therefore no disruptions are
* allowed and the status of the condition will be False.
* - InsufficientPods: The number of pods are either at or below the number
* required by the PodDisruptionBudget. No disruptions are
* allowed and the status of the condition will be False.
* - SufficientPods: There are more pods than required by the PodDisruptionBudget.
* The condition will be True, and the number of allowed
* disruptions are provided by the disruptionsAllowed property.
* @property currentHealthy current number of healthy pods
* @property desiredHealthy minimum desired number of healthy pods
* @property disruptedPods DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.
* @property disruptionsAllowed Number of pod disruptions that are currently allowed.
* @property expectedPods total number of pods counted by this disruption budget
* @property observedGeneration Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.
*/
public data class PodDisruptionBudgetStatus(
public val conditions: List? = null,
public val currentHealthy: Int,
public val desiredHealthy: Int,
public val disruptedPods: Map? = null,
public val disruptionsAllowed: Int,
public val expectedPods: Int,
public val observedGeneration: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.policy.v1.outputs.PodDisruptionBudgetStatus): PodDisruptionBudgetStatus = PodDisruptionBudgetStatus(
conditions = javaType.conditions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.meta.v1.kotlin.outputs.Condition.Companion.toKotlin(args0)
})
}),
currentHealthy = javaType.currentHealthy(),
desiredHealthy = javaType.desiredHealthy(),
disruptedPods = javaType.disruptedPods().map({ args0 -> args0.key.to(args0.value) }).toMap(),
disruptionsAllowed = javaType.disruptionsAllowed(),
expectedPods = javaType.expectedPods(),
observedGeneration = javaType.observedGeneration().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy