
io.fabric8.kubeflix.AggregatorProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of turbine-server Show documentation
Show all versions of turbine-server Show documentation
Turbine server with the Kubernetes discovery module pre-installed and pre-configured
package io.fabric8.kubeflix;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.List;
import java.util.Map;
@ConfigurationProperties(prefix = "turbine.aggregator")
public class AggregatorProperties {
Map> clusters;
public AggregatorProperties() {
}
public AggregatorProperties(Map> clusters) {
this.clusters = clusters;
}
public Map> getClusters() {
return clusters;
}
public void setClusters(Map> clusters) {
this.clusters = clusters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy