diff options
author | Jenkins <jenkins@review.openstack.org> | 2014-04-08 14:33:25 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-04-08 14:33:25 +0000 |
commit | 101e7e9be48e62f31b876a0d657b2c2ea27a565b (patch) | |
tree | 87fce62ed15c864c90f8ec97d2083b16e1f89ad7 | |
parent | 15bbf5cc26400c0012d4cc9a89dba92c0e50415a (diff) | |
parent | 0acac15f4ead9e5c6bec98411bbdda21f876d582 (diff) |
Merge "Add mysql innodb buffer pool size"
-rw-r--r-- | overcloud-source.yaml | 6 | ||||
-rw-r--r-- | undercloud-source.yaml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml index 50eeed48..6b7be9ad 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -170,6 +170,10 @@ Parameters: Type: String Description: The image ID for live-updates to the overcloud compute nodes. Default: '' + MysqlInnodbBufferPoolSize: + Description: Specifies the size of the buffer pool in megabytes. + Type: Number + Default: 100 Resources: RabbitCookie: Type: OS::Heat::RandomString @@ -416,6 +420,8 @@ Resources: - Fn::GetAtt: - notCompute0 - networks + mysql: + innodb_buffer_pool_size: {Ref: MysqlInnodbBufferPoolSize} neutron: flat-networks: {Ref: NeutronFlatNetworks} host: diff --git a/undercloud-source.yaml b/undercloud-source.yaml index cb83f91c..39cc4252 100644 --- a/undercloud-source.yaml +++ b/undercloud-source.yaml @@ -77,6 +77,10 @@ Parameters: Type: String Default: '' NoEcho: true + MysqlInnodbBufferPoolSize: + Description: Specifies the size of the buffer pool in megabytes. + Type: Number + Default: 100 Resources: RabbitCookie: Type: OS::Heat::RandomString @@ -203,6 +207,8 @@ Resources: keystone: db: mysql://keystone:unset@localhost/keystone host: 127.0.0.1 + mysql: + innodb_buffer_pool_size: {Ref: MysqlInnodbBufferPoolSize} neutron: host: 127.0.0.1 ovs_db: mysql://neutron:unset@localhost/ovs_neutron?charset=utf8 |