Skip to content
This repository has been archived by the owner on Jun 22, 2018. It is now read-only.

Commit

Permalink
#436 Upgraded to Mesos 0.28.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frankscholten committed Jul 6, 2016
1 parent a47e6c5 commit 94d40c3
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cli/src/test/resources/configFiles/complete-minimesosFile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
2 changes: 1 addition & 1 deletion cli/src/test/resources/configFiles/minimal-minimesosFile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

marathon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ abstract class MesosContainerConfig extends ContainerConfigBlock implements Cont
public static final String MESOS_IMAGE_TAG = "# derive from mesos version"
public static final String MESOS_LOGGING_LEVEL_INHERIT = "# INHERIT FROM CLUSTER"

private String loggingLevel = MESOS_LOGGING_LEVEL_INHERIT

public static final HashMap<String, String> MESOS_IMAGE_TAGS = [
"0.25": "0.25.0-0.2.70.ubuntu1404",
"0.26": "0.26.0-0.2.145.ubuntu1404",
"0.27": "0.27.1-2.0.226.ubuntu1404"
"0.25": "0.25.0-0.2.70.ubuntu1404",
"0.26": "0.26.0-0.2.145.ubuntu1404",
"0.27": "0.27.1-2.0.226.ubuntu1404",
"0.28.0": "0.28.0-2.0.16.ubuntu1404",
"0.28.1": "0.28.1-2.0.20.ubuntu1404",
"0.28": "0.28.1-2.0.20.ubuntu1404"
]

private String loggingLevel = MESOS_LOGGING_LEVEL_INHERIT

public String getLoggingLevel() {
return loggingLevel
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

master {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = true
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = true
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = true
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
2 changes: 1 addition & 1 deletion test-framework-docker/executor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM containersol/mesos-agent:0.25.0-0.2.70.ubuntu1404
FROM containersol/mesos-agent:0.28.1-2.0.20.ubuntu1404

ADD ./build/docker/mesos-hello-world-executor.jar /tmp/mesos-hello-world-executor.jar
ADD ./build/docker/start-executor.sh /tmp/start-executor.sh
Expand Down
2 changes: 1 addition & 1 deletion test-framework-docker/scheduler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM containersol/mesos-master:0.25.0-0.2.70.ubuntu1404
FROM containersol/mesos-master:0.28.1-2.0.20.ubuntu1404

ADD ./build/docker/mesos-hello-world-scheduler.jar /tmp/mesos-hello-world-scheduler.jar
ADD ./build/docker/start-scheduler.sh /tmp/start-scheduler.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minimesos {
mapPortsToHost = false
loggingLevel = "INFO"
mapAgentSandboxVolume = false
mesosVersion = "0.25"
mesosVersion = "0.28"
timeout = 60

agent {
Expand Down

0 comments on commit 94d40c3

Please sign in to comment.