io.k8s.api.core.v1.PodReadinessGate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.core.v1;
import java.lang.String;
/**
* PodReadinessGate contains the reference to a pod condition
*/
public class PodReadinessGate {
public String conditionType;
/**
* ConditionType refers to a condition in the pod's condition list with matching type.
*/
public PodReadinessGate conditionType(String conditionType) {
this.conditionType = conditionType;
return this;
}
public static PodReadinessGate podReadinessGate() {
return new PodReadinessGate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy