aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/compute.yaml
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2016-07-05 11:31:39 +1200
committerSteve Baker <sbaker@redhat.com>2016-07-05 11:31:39 +1200
commit072b0670cce6d33cc402185731437df63d1782d6 (patch)
treefff8aa8e9ffe8bc3979c7f2088ad7a5763730534 /puppet/compute.yaml
parent794fece5cc25d74ca0d874174e2c837a15750fbf (diff)
Template param for what command occ runs
The ConfigCommand parameter overrides the server resource metadata to specify what command os-collect-config runs whenever any configuration data changes. The default is already 'os-refresh-config' so this change has no effect but it allows a future change to specify an os-refresh-config --timeout argument to fix bug #1595722. Change-Id: I8dd35b6724d8c00e5495faca84ee8fee77641b82 Partial-Bug: #1595722
Diffstat (limited to 'puppet/compute.yaml')
-rw-r--r--puppet/compute.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/puppet/compute.yaml b/puppet/compute.yaml
index f800cca6..db398f17 100644
--- a/puppet/compute.yaml
+++ b/puppet/compute.yaml
@@ -316,11 +316,18 @@ parameters:
ServiceConfigSettings:
type: json
default: {}
+ ConfigCommand:
+ type: string
+ description: Command which will be run whenever configuration data changes
+ default: os-refresh-config
resources:
NovaCompute:
type: OS::Nova::Server
+ metadata:
+ os-collect-config:
+ command: {get_param: ConfigCommand}
properties:
image:
{get_param: Image}