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

io.fabric8.kubeflix.AggregatorProperties Maven / Gradle / Ivy

Go to download

Turbine server with the Kubernetes discovery module pre-installed and pre-configured

There is a newer version: 1.0.28
Show newest version
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