aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/deploy-artifacts.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-27 00:20:48 +0000
committerGerrit Code Review <review@openstack.org>2016-02-27 00:20:48 +0000
commitfe0b757bd454f26dd2f2a3423ba5a684899bae61 (patch)
tree149aeb68abcd50f6ec9fe4fd8791e81379c8bde2 /puppet/deploy-artifacts.yaml
parente23f8e34e1e91f7a46ba3eafb0f0b33b359e7cdd (diff)
parent55054f02d77ebbca63b6fbd3eab285873452933e (diff)
Merge "Add support for DeployArtifactURLs"
Diffstat (limited to 'puppet/deploy-artifacts.yaml')
-rw-r--r--puppet/deploy-artifacts.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/puppet/deploy-artifacts.yaml b/puppet/deploy-artifacts.yaml
new file mode 100644
index 00000000..17f84163
--- /dev/null
+++ b/puppet/deploy-artifacts.yaml
@@ -0,0 +1,32 @@
+heat_template_version: 2015-04-30
+
+description: >
+ Software Config to install deployment artifacts (tarball's and/or
+ distribution packages) via HTTP URLs. The contents of the URL's can
+ be tarballs or distribution packages (RPMs). If a tarball URL is supplied
+ it is extracted onto the target node during deployment. If a package is
+ deployed it is installed from the supplied URL. Note, you need the
+ heat-config-script element built into your images, due to the script group
+ below.
+
+parameters:
+ DeployArtifactURLs:
+ default: []
+ description: A list of HTTP URLs containing deployment artifacts.
+ Currently supports tarballs and RPM packages.
+ type: comma_delimited_list
+
+resources:
+ DeployArtifacts:
+ type: OS::Heat::SoftwareConfig
+ properties:
+ group: script
+ inputs:
+ - name: artifact_urls
+ default: {list_join: [' ', {get_param: DeployArtifactURLs}]}
+ config: {get_file: ./deploy-artifacts.sh}
+
+outputs:
+ OS::stack_id:
+ description: The ID of the DeployArtifacts resource.
+ value: {get_resource: DeployArtifacts}