Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / app_settings / default / api.py @ bda47e03

History | View | Annotate | Download (6 kB)

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

    
6

    
7
DEBUG = False
8

    
9
# Top-level URL for deployment. Numerous other URLs depend on this.
10
CYCLADES_BASE_URL = "https://compute.example.synnefo.org/compute/"
11

    
12
# The API will return HTTP Bad Request if the ?changes-since
13
# parameter refers to a point in time more than POLL_LIMIT seconds ago.
14
POLL_LIMIT = 3600
15

    
16
# Astakos groups that have access to '/admin' views.
17
ADMIN_STATS_PERMITTED_GROUPS = ["admin-stats"]
18

    
19
#
20
# Network Configuration
21
#
22

    
23
# CYCLADES_DEFAULT_SERVER_NETWORKS setting contains a list of networks to
24
# connect a newly created server to, *if the user has not* specified them
25
# explicitly in the POST /server API call.
26
# Each member of the list may be a network UUID, a tuple of network UUIDs,
27
# "SNF:ANY_PUBLIC_IPV4" [any public network with an IPv4 subnet defined],
28
# "SNF:ANY_PUBLIC_IPV6 [any public network with only an IPV6 subnet defined],
29
#  or "SNF:ANY_PUBLIC" [any public network].
30
#
31
# Access control and quota policy are enforced, just as if the user had
32
# specified the value of CYCLADES_DEFAULT_SERVER_NETWORKS in the content
33
# of the POST /call, after processing of "SNF:*" directives."
34
CYCLADES_DEFAULT_SERVER_NETWORKS = ["SNF:ANY_PUBLIC"]
35

    
36
# This setting contains a list of networks which every new server
37
# will be forced to connect to, regardless of the contents of the POST
38
# /servers call, or the value of CYCLADES_DEFAULT_SERVER_NETWORKS.
39
# Its format is identical to that of CYCLADES_DEFAULT_SERVER_NETWORKS.
40

    
41
# WARNING: No access control or quota policy are enforced.
42
# The server will get all IPv4/IPv6 addresses needed to connect to the
43
# networks specified in CYCLADES_FORCED_SERVER_NETWORKS, regardless
44
# of the state of the floating IP pool of the user, and without
45
# allocating any floating IPs."
46
CYCLADES_FORCED_SERVER_NETWORKS = ["SNF:ANY_PUBLIC_IPV6"]
47

    
48
# Maximum allowed network size for private networks.
49
MAX_CIDR_BLOCK = 22
50

    
51
# Default settings used by network flavors
52
DEFAULT_MAC_PREFIX = 'aa:00:0'
53
DEFAULT_BRIDGE = 'br0'
54

    
55
# Network flavors that users are allowed to create through API requests
56
API_ENABLED_NETWORK_FLAVORS = ['MAC_FILTERED']
57

    
58
# Settings for IP_LESS_ROUTED network:
59
# -----------------------------------
60
# In this case VMCs act as routers that forward the traffic to/from VMs, based
61
# on the defined routing table($DEFAULT_ROUTING_TABLE) and ip rules, that
62
# exist in every node, implenting an IP-less routed and proxy-arp setup.
63
DEFAULT_ROUTING_TABLE = 'snf_public'
64

    
65
# Settings for MAC_FILTERED network:
66
# ------------------------------------------
67
# All networks of this type are bridged to the same bridge. Isolation between
68
# networks is achieved by assigning a unique MAC-prefix to each network and
69
# filtering packets via ebtables.
70
DEFAULT_MAC_FILTERED_BRIDGE = 'prv0'
71

    
72

    
73
# Firewalling. Firewall tags should contain '%d' to be filled with the NIC
74
# ID.
75
GANETI_FIREWALL_ENABLED_TAG = 'synnefo:network:%s:protected'
76
GANETI_FIREWALL_DISABLED_TAG = 'synnefo:network:%s:unprotected'
77
GANETI_FIREWALL_PROTECTED_TAG = 'synnefo:network:%s:limited'
78

    
79
# The default firewall profile that will be in effect if no tags are defined
80
DEFAULT_FIREWALL_PROFILE = 'DISABLED'
81

    
82
# Fixed mapping of user VMs to a specific backend.
83
# e.g. BACKEND_PER_USER = {'example@synnefo.org': 2}
84
BACKEND_PER_USER = {}
85

    
86

    
87
# URL templates for the stat graphs.
88
# The API implementation replaces '%s' with the encrypted backend id.
89
# FIXME: For now we do not encrypt the backend id.
90
CPU_BAR_GRAPH_URL = 'http://stats.synnefo.org/%s/cpu-bar.png'
91
CPU_TIMESERIES_GRAPH_URL = 'http://stats.synnefo.org/%s/cpu-ts.png'
92
NET_BAR_GRAPH_URL = 'http://stats.synnefo.org/%s/net-bar.png'
93
NET_TIMESERIES_GRAPH_URL = 'http://stats.synnefo.org/%s/net-ts.png'
94

    
95
# Recommended refresh period for server stats
96
STATS_REFRESH_PERIOD = 60
97

    
98
# The maximum number of file path/content pairs that can be supplied on server
99
# build
100
MAX_PERSONALITY = 5
101

    
102
# The maximum size, in bytes, for each personality file
103
MAX_PERSONALITY_SIZE = 10240
104

    
105

    
106
# Authentication URL of the astakos instance to be used for user management
107
ASTAKOS_AUTH_URL = 'https://accounts.example.synnefo.org/identity/v2.0'
108

    
109
# Tune the size of the Astakos http client connection pool
110
# This limit the number of concurrent requests to Astakos.
111
CYCLADES_ASTAKOSCLIENT_POOLSIZE = 50
112

    
113
# Key for password encryption-decryption. After changing this setting, synnefo
114
# will be unable to decrypt all existing Backend passwords. You will need to
115
# store again the new password by using 'snf-manage backend-modify'.
116
# SECRET_ENCRYPTION_KEY may up to 32 bytes. Keys bigger than 32 bytes are not
117
# supported.
118
SECRET_ENCRYPTION_KEY = "Password Encryption Key"
119

    
120
# Astakos service token
121
# The token used for astakos service api calls (e.g. api to retrieve user email
122
# using a user uuid)
123
CYCLADES_SERVICE_TOKEN = ''
124

    
125
# Template to use to build the FQDN of VMs. The setting will be formated with
126
# the id of the VM. If set to 'None' the first public IPv4 or IPv6 address
127
# of the VM will be used.
128
CYCLADES_SERVERS_FQDN = 'snf-%(id)s.vm.example.synnefo.org'
129

    
130
# Description of applied port forwarding rules (DNAT) for Cyclades VMs. This
131
# setting contains a mapping from the port of each VM to a tuple contaning the
132
# destination IP/hostname and the new port: (host, port). Instead of a tuple a
133
# python callable object may be used which must return such a tuple. The caller
134
# will pass to the callable the following positional arguments, in the
135
# following order:
136
# * server_id: The ID of the VM in the DB
137
# * ip_address: The IPv4 address of the public VM NIC
138
# * fqdn: The FQDN of the VM
139
# * user: The UUID of the owner of the VM
140
#
141
# Here is an example describing the mapping of the SSH port of all VMs to
142
# the external address 'gate.example.synnefo.org' and port 60000+server_id.
143
# e.g. iptables -t nat -A prerouting -d gate.example.synnefo.org \
144
# --dport (61000 + $(VM_ID)) -j DNAT --to-destination $(VM_IP):22
145
#CYCLADES_PORT_FORWARDING = {
146
#    22: lambda ip_address, server_id, fqdn, user:
147
#               ("gate.example.synnefo.org", 61000 + server_id),
148
#}
149
CYCLADES_PORT_FORWARDING = {}