f1c2675073
It may be that we want ways to selectively disable certain tasks, such as pre-flight validations that might fail when restarting an upgrade from a failed state. This shows a way we might do that. Depends-On: I18214f80be9f3ad6c2d385fc00f3b786d3e7dda3 Change-Id: Ibffaaf1de0baf47a0450daa5b7cbb57d38746556
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
heat_template_version: ocata
|
|
description: 'Upgrade for via ansible by applying a step related tag'
|
|
|
|
parameters:
|
|
UpgradeStepConfig:
|
|
type: json
|
|
description: Config (ansible yaml) that will be used to step through the deployment.
|
|
default: ''
|
|
|
|
step:
|
|
type: string
|
|
description: Step number of the upgrade
|
|
|
|
SkipUpgradeConfigTags:
|
|
type: comma_delimited_list
|
|
description: Ansible tags to skip during upgrade, e.g validation skips pre-upgrade validations
|
|
default: []
|
|
|
|
resources:
|
|
|
|
AnsibleConfig:
|
|
type: OS::Heat::Value
|
|
properties:
|
|
value:
|
|
str_replace:
|
|
template: CONFIG
|
|
params:
|
|
CONFIG:
|
|
- hosts: localhost
|
|
connection: local
|
|
tasks: {get_param: UpgradeStepConfig}
|
|
|
|
AnsibleUpgradeConfigImpl:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: ansible
|
|
options:
|
|
skip_tags:
|
|
list_join:
|
|
- ","
|
|
- {get_param: SkipUpgradeConfigTags}
|
|
tags:
|
|
str_replace:
|
|
template: "stepSTEP"
|
|
params:
|
|
STEP: {get_param: step}
|
|
modulepath: /usr/share/ansible-modules
|
|
inputs:
|
|
- name: role
|
|
config: {get_attr: [AnsibleConfig, value]}
|
|
|
|
outputs:
|
|
OS::stack_id:
|
|
description: The software config which runs ansible with tags
|
|
value: {get_resource: AnsibleUpgradeConfigImpl}
|
|
upgrade_config:
|
|
description: The configuration file used for upgrade
|
|
value: {get_attr: [AnsibleConfig, value]}
|