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

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

package io.k8s.api.core.v1;

/**
 * Represents an ephemeral volume that is handled by a normal storage driver.
 */
public class EphemeralVolumeSource {
  public PersistentVolumeClaimTemplate volumeClaimTemplate;

  public EphemeralVolumeSource volumeClaimTemplate(
      PersistentVolumeClaimTemplate volumeClaimTemplate) {
    this.volumeClaimTemplate = volumeClaimTemplate;
    return this;
  }

  public static EphemeralVolumeSource ephemeralVolumeSource() {
    return new EphemeralVolumeSource();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy