diff options
author | Clint Byrum <clint@fewbar.com> | 2014-05-08 08:33:01 -0700 |
---|---|---|
committer | Clint Byrum <clint@fewbar.com> | 2014-05-08 08:33:01 -0700 |
commit | 5e5d633451474417217c4b2c87f6d817a98dd15b (patch) | |
tree | aaa9e9d3d112aa08f1b7b207c33a77ae671c0a2c | |
parent | 716b190be8843f46b5c3023298d3f31672854057 (diff) |
Defer to element mysql.innodb_buffer_pool_size
Choosing 100MB here is not a production default. We also don't need two
places with the default value set. The closer a default is to the actual
usage of it, the better, so we'll set 0 here, which will defer to the
default in the element.
Change-Id: I1b41b604286245c2fb83249778db835253c02fc5
-rw-r--r-- | overcloud-source.yaml | 7 | ||||
-rw-r--r-- | undercloud-source.yaml | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml index 931646f3..8dc5351d 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -221,9 +221,12 @@ Parameters: Description: The image ID for live-updates to the overcloud compute nodes. Default: '' MysqlInnodbBufferPoolSize: - Description: Specifies the size of the buffer pool in megabytes. + Description: > + Specifies the size of the buffer pool in megabytes. Setting to + zero should be interpreted as "no value" and will defer to the + lower level default. Type: Number - Default: 100 + Default: 0 Resources: RabbitCookie: Type: OS::Heat::RandomString diff --git a/undercloud-source.yaml b/undercloud-source.yaml index 53567ba9..c64a6ad3 100644 --- a/undercloud-source.yaml +++ b/undercloud-source.yaml @@ -95,9 +95,12 @@ Parameters: Default: '' NoEcho: true MysqlInnodbBufferPoolSize: - Description: Specifies the size of the buffer pool in megabytes. + Description: > + Specifies the size of the buffer pool in megabytes. Setting to + zero should be interpreted as "no value" and will defer to the + lower level default. Type: Number - Default: 100 + Default: 0 Resources: RabbitCookie: Type: OS::Heat::RandomString |