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

io.k8s.api.node.v1.Overhead Maven / Gradle / Ivy

package io.k8s.api.node.v1;

import io.k8s.api.node.v1.overhead.PodFixed;

/**
 * Overhead structure represents the resource overhead associated with running a pod.
 */
public class Overhead {
  public PodFixed podFixed;

  /**
   * podFixed represents the fixed resource overhead associated with running a pod.
   */
  public Overhead podFixed(PodFixed podFixed) {
    this.podFixed = podFixed;
    return this;
  }

  public static Overhead overhead() {
    return new Overhead();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy