![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.PodTemplateSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
package io.k8s.api.core.v1;
import io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta;
/**
* PodTemplateSpec describes the data a pod should have when created from a template
*/
public class PodTemplateSpec {
public ObjectMeta metadata;
public PodSpec spec;
public PodTemplateSpec metadata(ObjectMeta metadata) {
this.metadata = metadata;
return this;
}
public PodTemplateSpec spec(PodSpec spec) {
this.spec = spec;
return this;
}
public static PodTemplateSpec podTemplateSpec() {
return new PodTemplateSpec();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy