summaryrefslogtreecommitdiffstats
path: root/fuel-plugin/deployment_tasks.yaml
diff options
context:
space:
mode:
authorJiang, Yunhong <yunhong.jiang@intel.com>2017-02-17 06:18:42 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-17 06:18:42 +0000
commitf156e825018f6cdd996406aede3f821fc1f9fcb1 (patch)
treef1671ebfd92021f4e72b21995a67862ea96bf9b5 /fuel-plugin/deployment_tasks.yaml
parent48f1b1f5298bc4960f261df412315d6e15897c43 (diff)
parent4a69d386c55f01ef3645ad500d232f27fc7c2444 (diff)
Merge "[fuel-plugin] Employ dedicated reboot task"
Diffstat (limited to 'fuel-plugin/deployment_tasks.yaml')
-rw-r--r--fuel-plugin/deployment_tasks.yaml19
1 files changed, 15 insertions, 4 deletions
diff --git a/fuel-plugin/deployment_tasks.yaml b/fuel-plugin/deployment_tasks.yaml
index 55f91ff21..ab63a9b1f 100644
--- a/fuel-plugin/deployment_tasks.yaml
+++ b/fuel-plugin/deployment_tasks.yaml
@@ -2,11 +2,22 @@
type: puppet
version: 2.1.0
role: [compute]
- required_for: [post_deployment_end]
- requires: [post_deployment_start]
+ requires: [pre_deployment_start]
+ required_for: [pre_deployment_end]
condition:
- yaql_exp: changed($.get('fuel-plugin-kvm'))
+ yaql_exp: &kvm changed($.get('fuel-plugin-kvm'))
parameters:
puppet_manifest: puppet/manifests/kvm-install.pp
puppet_modules: puppet/modules:/etc/puppet/modules
- timeout: 1200
+ timeout: 300
+
+- id: node_reboot
+ type: reboot
+ version: 2.1.0
+ role: [compute]
+ requires: [kvm_install]
+ required_for: [pre_deployment_end]
+ condition:
+ yaql_exp: *kvm
+ parameters:
+ timeout: 900