Merge "Remove nameserver lookup dependency from Cisco ML2 CollectMacConfig."
[apex-tripleo-heat-templates.git] / puppet / hieradata / controller.yaml
1 # Hiera data here applies to all controller nodes
2 nova::api::enabled: true
3 nova::conductor::enabled: true
4 nova::consoleauth::enabled: true
5 nova::vncproxy::enabled: true
6 nova::scheduler::enabled: true
7
8 # rabbitmq
9 rabbitmq::delete_guest_user: false
10 rabbitmq::wipe_db_on_cookie_change: true
11 rabbitmq::port: '5672'
12 rabbitmq::package_source: undef
13 rabbitmq::repos_ensure: false
14 rabbitmq_environment:
15   RABBITMQ_NODENAME: "rabbit@%{::hostname}"
16   RABBITMQ_SERVER_ERL_ARGS: '"+K true +A30 +P 1048576 -kernel inet_default_connect_options [{nodelay,true},{raw,6,18,<<5000:64/native>>}] -kernel inet_default_listen_options [{raw,6,18,<<5000:64/native>>}]"'
17 rabbitmq_kernel_variables:
18   inet_dist_listen_min: '35672'
19   inet_dist_listen_max: '35672'
20 rabbitmq_config_variables:
21   tcp_listen_options: '[binary, {packet, raw}, {reuseaddr, true}, {backlog, 128}, {nodelay, true}, {exit_on_close, false}, {keepalive, true}]'
22   cluster_partition_handling: 'pause_minority'
23
24 mongodb::server::replset: tripleo
25 mongodb::server::journal: false
26
27 redis::port: 6379
28 redis::sentinel::master_name: "%{hiera('bootstrap_nodeid')}"
29 redis::sentinel::redis_host: "%{hiera('bootstrap_nodeid_ip')}"
30 redis::sentinel::notification_script: '/usr/local/bin/redis-notifications.sh'
31
32 # service tenant
33 nova::api::admin_tenant_name: 'service'
34 glance::api::keystone_tenant: 'service'
35 glance::registry::keystone_tenant: 'service'
36 neutron::server::auth_tenant: 'service'
37 neutron::agents::metadata::auth_tenant: 'service'
38 cinder::api::keystone_tenant: 'service'
39 swift::proxy::authtoken::admin_tenant_name: 'service'
40 ceilometer::api::keystone_tenant: 'service'
41 heat::keystone_tenant: 'service'
42
43 # keystone
44 keystone::cron::token_flush::maxdelay: 3600
45
46 #swift
47 swift::proxy::pipeline:
48   - 'catch_errors'
49   - 'healthcheck'
50   - 'cache'
51   - 'ratelimit'
52   - 'tempurl'
53   - 'formpost'
54   - 'authtoken'
55   - 'keystone'
56   - 'staticweb'
57   - 'proxy-logging'
58   - 'proxy-server'
59
60 swift::proxy::account_autocreate: true
61
62 # glance
63 glance::api::pipeline: 'keystone'
64 glance::registry::pipeline: 'keystone'
65 glance::backend::swift::swift_store_create_container_on_put: true
66 glance::backend::rbd::rbd_store_user: 'openstack'
67
68 # neutron
69 neutron::core_plugin: 'ml2'
70 neutron::service_plugins:
71   - 'neutron.services.l3_router.l3_router_plugin.L3RouterPlugin'
72 neutron::server::sync_db: true
73 neutron::agents::dhcp::dnsmasq_config_file: /etc/neutron/dnsmasq-neutron.conf
74
75 # nova
76 nova::notify_on_state_change: 'vm_and_task_state'
77 nova::api::default_floating_pool: 'public'
78 nova::api::osapi_v3: true
79 nova::scheduler::filter::ram_allocation_ratio: '1.0'
80
81 # cinder
82 cinder::scheduler::scheduler_driver: cinder.scheduler.filter_scheduler.FilterScheduler
83
84 # heat
85 heat::engine::configure_delegated_roles: false
86 heat::engine::trusts_delegated_roles: []
87 heat::instance_user: ''
88
89 # pacemaker
90 pacemaker::corosync::cluster_name: 'tripleo_cluster'
91 pacemaker::corosync::manage_fw: false
92 pacemaker::resource_defaults::defaults:
93   resource-stickiness: { value: INFINITY }
94
95 # horizon
96 horizon::allowed_hosts: '*'
97 horizon::django_session_engine: 'django.contrib.sessions.backends.cache'
98
99 # mysql
100 mysql::server::manage_config_file: true
101 mysql::server::remove_default_accounts: true
102
103
104 tripleo::loadbalancer::keystone_admin: true
105 tripleo::loadbalancer::keystone_public: true
106 tripleo::loadbalancer::neutron: true
107 tripleo::loadbalancer::cinder: true
108 tripleo::loadbalancer::glance_api: true
109 tripleo::loadbalancer::glance_registry: true
110 tripleo::loadbalancer::nova_ec2: true
111 tripleo::loadbalancer::nova_osapi: true
112 tripleo::loadbalancer::nova_metadata: true
113 tripleo::loadbalancer::nova_novncproxy: true
114 tripleo::loadbalancer::mysql: true
115 tripleo::loadbalancer::redis: true
116 tripleo::loadbalancer::swift_proxy_server: true
117 tripleo::loadbalancer::ceilometer: true
118 tripleo::loadbalancer::heat_api: true
119 tripleo::loadbalancer::heat_cloudwatch: true
120 tripleo::loadbalancer::heat_cfn: true
121 tripleo::loadbalancer::horizon: true
122
123 controller_classes: []