Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / app_settings / default / plankton.py @ 0c09b1c0

History | View | Annotate | Download (655 Bytes)

1
# -*- coding: utf-8 -*-
2
#
3
# Plankton configuration
4
########################
5

    
6
# Backend settings
7
BACKEND_DB_CONNECTION = 'sqlite:////usr/share/synnefo/pithos/backend.db'
8
BACKEND_BLOCK_PATH = '/usr/share/synnefo/pithos/data/'
9
PITHOS_BACKEND_POOL_SIZE = 8
10

    
11
# The Pithos container where images will be stored by default
12
DEFAULT_PLANKTON_CONTAINER = 'images'
13

    
14
ALLOWED_DISK_FORMATS = ('diskdump', 'extdump', 'ntfsdump')
15
DEFAULT_DISK_FORMAT = 'diskdump'
16

    
17
ALLOWED_CONTAINER_FORMATS = ('aki', 'ari', 'ami', 'bare', 'ovf')
18
DEFAULT_CONTAINER_FORMAT = 'bare'
19

    
20
# The owner of the images that will be marked as "system images" by the UI
21
SYSTEM_IMAGES_OWNER = 'okeanos'