io.k8s.api.core.v1.VolumeNodeAffinity 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;
/**
* VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.
*/
public class VolumeNodeAffinity {
public NodeSelector required;
public VolumeNodeAffinity required(NodeSelector required) {
this.required = required;
return this;
}
public static VolumeNodeAffinity volumeNodeAffinity() {
return new VolumeNodeAffinity();
}
}