io.k8s.api.core.v1.NodeDaemonEndpoints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy