Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (626 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', 'extdump', 'ntfsdump')
14
DEFAULT_DISK_FORMAT = 'diskdump'
15

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

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