io.k8s.api.core.v1.PodOS 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 java.lang.String;
/**
* PodOS defines the OS parameters of a pod.
*/
public class PodOS {
public String name;
/**
* Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null
*/
public PodOS name(String name) {
this.name = name;
return this;
}
public static PodOS podOS() {
return new PodOS();
}
}