Revision 5f62b4d4

b/snf-cyclades-app/synnefo/app_settings/default/api.py
21 21
# Network Configuration
22 22
#
23 23

  
24
# Synnefo assigns this link id to NICs connected on the public network.
25
# An IP pool should be associated with this link by the Ganeti administrator.
24
# Name of the public network in Ganeti. An IP pool should be associated with
25
# this network by the Ganeti administrator.
26 26
GANETI_PUBLIC_NETWORK = 'snf_public'
27 27
# This link id is assigned to NICs that should be isolated from anything else
28 28
# (e.g., right before the NIC gets deleted).
b/snf-cyclades-app/synnefo/app_settings/default/queues.py
3 3
# Queues, exchanges and bindings for AMQP
4 4
###########################################
5 5

  
6
# Rabbit work queue endpoint
7
RABBIT_HOST = "10.0.0.1:5672"
8
RABBIT_USERNAME = "rabbit-username"
9
RABBIT_PASSWORD = "rabbit-password"
10
RABBIT_VHOST = "/"
11
AMQP_HOSTS=["amqp://username:password@host:port"]
12
# AMQP Backend Client. One of: 'puka', 'haigha'
13
AMQP_BACKEND='puka'
6
# List of RabbitMQ endpoints
7
AMQP_HOSTS = ["amqp://username:password@host:port"]
8
# AMQP Backend Client. Currently only puka
9
AMQP_BACKEND = 'puka'
14 10

  
15 11
EXCHANGE_GANETI = "ganeti"  # Messages from Ganeti
16 12
EXCHANGE_CRON = "cron"      # Messages from periodically triggered tasks
b/snf-cyclades-gtools/synnefo/ganeti/settings.py
1 1
# snf-cyclades-gtools settings
2 2

  
3
RABBIT_HOST = "127.0.0.1:5672"
4
RABBIT_USERNAME = "rabbit-username"
5
RABBIT_PASSWORD = "rabbit-password"
6
RABBIT_VHOST = "/"
7
AMQP_HOSTS=["amqp://username:password@host:port"]
8 3
BACKEND_PREFIX_ID = "snf-"
9 4
EXCHANGE_GANETI = "ganeti"
10 5
PUBLIC_IPV6_PREFIX = "2001:db8::/64"
6

  
7
# List of RabbitMQ endpoints
8
AMQP_HOSTS = ["amqp://username:password@host:port"]
9
# AMQP Backend Client. Currently only puka
10
AMQP_BACKEND = 'puka'

Also available in: Unified diff