9929cfa679e198010e70c8bc67369edf2f7e37a8
[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   - 'staticweb'
55   - 'authtoken'
56   - 'keystone'
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::osapi_v3: true
78 nova::scheduler::filter::ram_allocation_ratio: '1.0'
79
80 nova::config::nova_config:
81   DEFAULT/default_floating_pool:
82     value: 'public'
83
84 # cinder
85 cinder::scheduler::scheduler_driver: cinder.scheduler.filter_scheduler.FilterScheduler
86
87 # heat
88 heat::engine::configure_delegated_roles: false
89 heat::engine::trusts_delegated_roles: []
90 heat::instance_user: ''
91
92 # pacemaker
93 pacemaker::corosync::cluster_name: 'tripleo_cluster'
94 pacemaker::corosync::manage_fw: false
95 pacemaker::resource_defaults::defaults:
96   resource-stickiness: { value: INFINITY }
97
98 # horizon
99 horizon::allowed_hosts: '*'
100 horizon::django_session_engine: 'django.contrib.sessions.backends.cache'
101
102 # mysql
103 mysql::server::manage_config_file: true
104 mysql::server::remove_default_accounts: true
105
106
107 tripleo::loadbalancer::keystone_admin: true
108 tripleo::loadbalancer::keystone_public: true
109 tripleo::loadbalancer::neutron: true
110 tripleo::loadbalancer::cinder: true
111 tripleo::loadbalancer::glance_api: true
112 tripleo::loadbalancer::glance_registry: true
113 tripleo::loadbalancer::nova_ec2: true
114 tripleo::loadbalancer::nova_osapi: true
115 tripleo::loadbalancer::nova_metadata: true
116 tripleo::loadbalancer::nova_novncproxy: true
117 tripleo::loadbalancer::mysql: true
118 tripleo::loadbalancer::redis: true
119 tripleo::loadbalancer::swift_proxy_server: true
120 tripleo::loadbalancer::ceilometer: true
121 tripleo::loadbalancer::heat_api: true
122 tripleo::loadbalancer::heat_cloudwatch: true
123 tripleo::loadbalancer::heat_cfn: true
124 tripleo::loadbalancer::horizon: true
125
126 controller_classes: []