io.k8s.api.core.v1.DownwardAPIProjection 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.util.List;
/**
* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
*/
public class DownwardAPIProjection {
public List items;
/**
* Items is a list of DownwardAPIVolume file
*/
public DownwardAPIProjection items(List items) {
this.items = items;
return this;
}
public static DownwardAPIProjection downwardAPIProjection() {
return new DownwardAPIProjection();
}
}