diff options
Diffstat (limited to 'undercloud-source.yaml')
-rw-r--r-- | undercloud-source.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/undercloud-source.yaml b/undercloud-source.yaml index 80ca8dc6..57508fda 100644 --- a/undercloud-source.yaml +++ b/undercloud-source.yaml @@ -42,7 +42,7 @@ Parameters: Type: String NoEcho: true ImageUpdatePolicy: - Default: REPLACE + Default: REBUILD_PRESERVE_EPHEMERAL Description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt. Type: String @@ -80,6 +80,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 @@ -206,6 +210,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 |