All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.core.v1.VolumeNodeAffinity Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy