This repository has been archived by the owner on Jun 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced Consul and Registrator with Mesos DNS.
- Loading branch information
1 parent
6e28f9d
commit 21f4672
Showing
24 changed files
with
115 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
minimesos/src/main/groovy/com/containersol/minimesos/config/ConsulConfig.groovy
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
minimesos/src/main/groovy/com/containersol/minimesos/config/MesosDNSConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.containersol.minimesos.config; | ||
|
||
public class MesosDNSConfig extends ContainerConfigBlock implements ContainerConfig { | ||
|
||
public static final String MESOS_DNS_IMAGE_NAME = "xebia/mesos-dns" | ||
public static final String MESOS_DNS_TAG_NAME = "0.0.5" | ||
|
||
public MesosDNSConfig() { | ||
imageName = MESOS_DNS_IMAGE_NAME | ||
imageTag = MESOS_DNS_TAG_NAME | ||
} | ||
|
||
} |
13 changes: 0 additions & 13 deletions
13
minimesos/src/main/groovy/com/containersol/minimesos/config/RegistratorConfig.groovy
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
minimesos/src/main/java/com/containersol/minimesos/cluster/Consul.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
minimesos/src/main/java/com/containersol/minimesos/cluster/MesosDNS.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.containersol.minimesos.cluster; | ||
|
||
/** | ||
* Mesos DNS | ||
*/ | ||
public interface MesosDNS extends ClusterProcess { | ||
|
||
} |
9 changes: 0 additions & 9 deletions
9
minimesos/src/main/java/com/containersol/minimesos/cluster/Registrator.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.