Created
January 20, 2015 15:51
-
-
Save michaeldelorenzo/0e43205a0eae9fcd40ad to your computer and use it in GitHub Desktop.
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
server: | |
type: simple | |
applicationContextPath: /singularity | |
connector: | |
type: http | |
port: 8081 | |
requestLog: | |
appenders: | |
- type: file | |
currentLogFilename: ../logs/access.log | |
archivedLogFilenamePattern: ../logs/access-%d.log.gz | |
database: | |
driverClass: com.mysql.jdbc.Driver | |
user: [**** a mysql user name *****] | |
password: [***** a mysql password *****] | |
url: jdbc:mysql://localhost:3306/singularity | |
mesos: | |
master: zk://[***** internal ip 1 *****]:2181,[***** internal ip 2 *****]:2181,[***** internal ip 3 *****]:2181/mesos | |
defaultCpus: 1 | |
defaultMemory: 128 | |
frameworkName: Singularity | |
frameworkId: Singularity | |
frameworkFailoverTimeout: 1000000 | |
zookeeper: | |
quorum: [***** internal ip 1 *****]:2181 | |
zkNamespace: singularity | |
sessionTimeoutMillis: 60000 | |
connectTimeoutMillis: 5000 | |
retryBaseSleepTimeMilliseconds: 1000 | |
retryMaxTries: 3 | |
logging: | |
loggers: | |
"com.hubspot.singularity" : DEBUG | |
ui: | |
title: CommandPost Singularity | |
baseUrl: http://[***** hostname *****]:8081/singularity | |
enableCorsFilter: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment