Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / conf / 20-snf-cyclades-app-api.conf @ 2522e489

History | View | Annotate | Download (5.1 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://host:port/cyclades"
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
##
17
## Network Configuration
18
##
19
#
20
## List of network IDs. All created instances will get a NIC connected to each
21
## network of this list. If the special network ID "SNF:ANY_PUBLIC" is used,
22
## Cyclades will automatically choose a public network and connect the server to
23
## it.
24
#DEFAULT_INSTANCE_NETWORKS=["SNF:ANY_PUBLIC"]
25
#
26
#
27
## Maximum allowed network size for private networks.
28
#MAX_CIDR_BLOCK = 22
29
#
30
## Default settings used by network flavors
31
#DEFAULT_MAC_PREFIX = 'aa:00:0'
32
#DEFAULT_BRIDGE = 'br0'
33
#
34
## Network flavors that users are allowed to create through API requests
35
#API_ENABLED_NETWORK_FLAVORS = ['MAC_FILTERED']
36
#
37
## Settings for IP_LESS_ROUTED network:
38
## -----------------------------------
39
## In this case VMCs act as routers that forward the traffic to/from VMs, based
40
## on the defined routing table($DEFAULT_ROUTING_TABLE) and ip rules, that
41
## exist in every node, implenting an IP-less routed and proxy-arp setup.
42
#DEFAULT_ROUTING_TABLE = 'snf_public'
43
#
44
## Settings for MAC_FILTERED network:
45
## ------------------------------------------
46
## All networks of this type are bridged to the same bridge. Isolation between
47
## networks is achieved by assigning a unique MAC-prefix to each network and
48
## filtering packets via ebtables.
49
#DEFAULT_MAC_FILTERED_BRIDGE = 'prv0'
50
#
51
#
52
## Firewall tags should contain '%d' to be filled with the NIC
53
## index.
54
#GANETI_FIREWALL_ENABLED_TAG = 'synnefo:network:0:protected'
55
#GANETI_FIREWALL_DISABLED_TAG = 'synnefo:network:0:unprotected'
56
#GANETI_FIREWALL_PROTECTED_TAG = 'synnefo:network:0:limited'
57
#
58
## The default firewall profile that will be in effect if no tags are defined
59
#DEFAULT_FIREWALL_PROFILE = 'DISABLED'
60
#
61
## Fixed mapping of user VMs to a specific backend.
62
## e.g. BACKEND_PER_USER = {'example@synnefo.org': 2}
63
#BACKEND_PER_USER = {}
64
#
65
## List of backend IDs used *only* for archipelago.
66
#ARCHIPELAGO_BACKENDS = []
67
#
68
#
69
## URL templates for the stat graphs.
70
## The API implementation replaces '%s' with the encrypted backend id.
71
## FIXME: For now we do not encrypt the backend id.
72
#CPU_BAR_GRAPH_URL = 'http://stats.synnefo.org/%s/cpu-bar.png'
73
#CPU_TIMESERIES_GRAPH_URL = 'http://stats.synnefo.org/%s/cpu-ts.png'
74
#NET_BAR_GRAPH_URL = 'http://stats.synnefo.org/%s/net-bar.png'
75
#NET_TIMESERIES_GRAPH_URL = 'http://stats.synnefo.org/%s/net-ts.png'
76
#
77
## Recommended refresh period for server stats
78
#STATS_REFRESH_PERIOD = 60
79
#
80
## The maximum number of file path/content pairs that can be supplied on server
81
## build
82
#MAX_PERSONALITY = 5
83
#
84
## The maximum size, in bytes, for each personality file
85
#MAX_PERSONALITY_SIZE = 10240
86
#
87
#
88
## Top-level URL of the astakos instance to be used for user management
89
#ASTAKOS_BASE_URL = 'https://accounts.example.synnefo.org/'
90
#
91
## Key for password encryption-decryption. After changing this setting, synnefo
92
## will be unable to decrypt all existing Backend passwords. You will need to
93
## store again the new password by using 'snf-manage backend-modify'.
94
## SECRET_ENCRYPTION_KEY may up to 32 bytes. Keys bigger than 32 bytes are not
95
## supported.
96
#SECRET_ENCRYPTION_KEY= "Password Encryption Key"
97
#
98
## Astakos service token
99
## The token used for astakos service api calls (e.g. api to retrieve user email
100
## using a user uuid)
101
#CYCLADES_SERVICE_TOKEN = ''
102

    
103
# Let cyclades proxy user specific api calls to astakos, via self served
104
# endpoints. Set this to False if you deploy cyclades-app/astakos-app on the
105
# same machine.
106
#CYCLADES_PROXY_USER_SERVICES = True
107

    
108
# Tune the size of the http connection pool to astakos.
109
#CYCLADES_ASTAKOSCLIENT_POOLSIZE = 50
110
#
111
## Template to use to build the FQDN of VMs. The setting will be formated with
112
## the id of the VM. If set to 'None' the first public IPv4 or IPv6 address
113
## of the VM will be used.
114
#CYCLADES_SERVERS_FQDN = 'snf-%(id)s.vm.example.synnefo.org'
115
#
116
## Description of applied port forwarding rules (DNAT) for Cyclades VMs. This
117
## setting contains a mapping from the port of each VM to a tuple contaning the
118
## destination IP/hostname and the new port: (host, port). Instead of a tuple a
119
## python callable object may be used which must return such a tuple. The caller
120
## will pass to the callable the following positional arguments, in the
121
## following order:
122
## * server_id: The ID of the VM in the DB
123
## * ip_address: The IPv4 address of the public VM NIC
124
## * fqdn: The FQDN of the VM
125
## * user: The UUID of the owner of the VM
126
##
127
## Here is an example describing the mapping of the SSH port of all VMs to
128
## the external address 'gate.example.synnefo.org' and port 60000+server_id.
129
## e.g. iptables -t nat -A prerouting -d gate.example.synnefo.org \
130
## --dport (61000 # $(VM_ID)) -j DNAT --to-destination $(VM_IP):22
131
##CYCLADES_PORT_FORWARDING = {
132
##    22: lambda ip_address, server_id, fqdn, user:
133
##               ("gate.example.synnefo.org", 61000 + server_id),
134
##}
135
#CYCLADES_PORT_FORWARDING = {}