Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (674 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

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

    
13
ALLOWED_DISK_FORMATS = ('diskdump', 'dump', 'extdump', 'lvm', 'ntfsclone',
14
                        'ntfsdump')
15
ALLOWED_CONTAINER_FORMATS = ('aki', 'ari', 'ami', 'bare', 'ovf')
16

    
17
DEFAULT_DISK_FORMAT = 'dump'
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'