use of com.chinaunicom.rundocker.service.EtcdService in project mesosFramework by zhizuqiu.
the class EtcdServiceTest method before.
@Before
public void before() {
// http://192.168.84.131:2379
Etcd etcd = EtcdClient.getInstance("http://10.124.142.127:5379");
etcdService = new EtcdService(etcd);
Config config = new Config();
config.setFrameworkName("dockerFramework");
AppDataStore.setConfig(config);
}
Aggregations