argparser.add_argument('--max-core-limit',help='Maximum amount of cores users are able to reserve',type=int,default=16)
argparser.add_argument('--max-memory-limit',help='Maximum amount of memory services can use (in GiB)',type=int,default=64)
argparser.add_argument('--no-user-edit-limits-web',action='store_true',help='Disable editing ZApp resource limits from the web interface (only admins will able to)')
argparser.add_argument('--aml-ttl',help='TimeToLive in hours for AML executions',type=int,default=4)
argparser.add_argument('--additional-volumes',help='Additional volumes to mount in services filesystems. (ex: /mnt/data:data,/mnt/data_n:data_n)',default='')