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

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

package io.k8s.api.core.v1;

/**
 * NodeDaemonEndpoints lists ports opened by daemons running on the Node.
 */
public class NodeDaemonEndpoints {
  public DaemonEndpoint kubeletEndpoint;

  public NodeDaemonEndpoints kubeletEndpoint(DaemonEndpoint kubeletEndpoint) {
    this.kubeletEndpoint = kubeletEndpoint;
    return this;
  }

  public static NodeDaemonEndpoints nodeDaemonEndpoints() {
    return new NodeDaemonEndpoints();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy