argparser.add_argument('--gelf-address',help='Enable Docker GELF log output to this destination (ex. udp://1.2.3.4:1234)',default='')
argparser.add_argument('--workspace-base-path',help='Path where user workspaces will be created by Zoe. Must be visible at this path on all Swarm hosts.',default='/mnt/zoe-workspaces')
argparser.add_argument('--overlay-network-name',help='Name of the Swarm overlay network Zoe should use',default='zoe')
# API options
argparser.add_argument('--listen-address',type=str,help='Address to listen to for incoming connections',default="0.0.0.0")
argparser.add_argument('--listen-port',type=int,help='Port to listen to for incoming connections',default=5001)
argparser.add_argument('--master-url',help='URL of the Zoe master process',default='tcp://127.0.0.1:4850')
# API auth options
argparser.add_argument('--auth-type',help='Authentication type (text or ldap)',default='text')
argparser.add_argument('--auth-file',help='Path to the CSV file containing user,pass,role lines for text authentication',default='zoepass.csv')
argparser.add_argument('--ldap-server-uri',help='LDAP server to use for authentication',default='ldap://localhost')
argparser.add_argument('--ldap-base-dn',help='LDAP base DN for users',default='ou=something,dc=any,dc=local')
argparser.add_argument('--ldap-admin-gid',type=int,help='LDAP group ID for admins',default=5000)
argparser.add_argument('--ldap-user-gid',type=int,help='LDAP group ID for users',default=5001)
argparser.add_argument('--ldap-guest-gid',type=int,help='LDAP group ID for guests',default=5002)