diff options
author | Tony Hansen <tony@att.com> | 2017-10-06 03:04:34 +0000 |
---|---|---|
committer | Tony Hansen <tony@att.com> | 2017-10-06 03:04:52 +0000 |
commit | bbcb612e8b48e63789f5f2930a03c7bfcd751479 (patch) | |
tree | 35d54eaec150d7eba33986137bbfee9cedc9025c /bootstrap | |
parent | 4b1ca714d7ed5a4de4d3d03391e4882b506de35e (diff) |
add pgaas_plugin install
install pgaas_plugin types file and wagon file appropriately
Change-Id: If95abe273d2044d74e7985308bc116d911bdb227
Signed-off-by: Tony Hansen <tony@att.com>
Issue-ID: DCAEGEN2-128
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/installer-docker.sh-template | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstrap/installer-docker.sh-template b/bootstrap/installer-docker.sh-template index 455561b..c5523eb 100755 --- a/bootstrap/installer-docker.sh-template +++ b/bootstrap/installer-docker.sh-template @@ -26,6 +26,8 @@ DESIGTYPES={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases } DESIGPLUG={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/dnsdesig-1.0.0-py27-none-any.wgn SSHKEYTYPES={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/type_files/sshkeyshare/sshkey_types.yaml SSHKEYPLUG={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/sshkeyshare-1.0.0-py27-none-any.wgn +PGAASTYPES={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/type_files/pgaas_plugin/1.0.0/pgaas_types.yaml +PGAASPLUG={{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/pgaas_plugin-1.0.0-py27-none-any.wgn OSPLUGINZIP=https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/1.4.zip OSPLUGINWGN=https://github.com/cloudify-cosmo/cloudify-openstack-plugin/releases/download/2.2.0/cloudify_openstack_plugin-2.2.0-py27-none-linux_x86_64-centos-Core.wgn @@ -74,12 +76,15 @@ pip install openstack.zip mkdir types wget -qO- ${DESIGTYPES} > types/dns_types.yaml wget -qO- ${SSHKEYTYPES} > types/sshkey_types.yaml +wget -qO- ${PGAASTYPES} > types/pgaas_types.yaml wget -O dnsdesig.wgn ${DESIGPLUG} wget -O sshkeyshare.wgn ${SSHKEYPLUG} +wget -O pgaas.wgn ${PGAASPLUG} wagon install -s dnsdesig.wgn wagon install -s sshkeyshare.wgn +wagon install -s pgaas.wgn ## Fix up the inputs file to get the private key locally sed -e "s#key_filename:.*#key_filename: $PVTKEY#" < ${INPUTS} > /tmp/local_inputs @@ -237,6 +242,7 @@ plugin_resources: - 'http://repository.cloudifysource.org/org/cloudify3/wagons/cloudify-fabric-plugin/1.4.1/cloudify_fabric_plugin-1.4.1-py27-none-linux_x86_64-centos-Core.wgn' - '{{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/dnsdesig-1.0.0-py27-none-any.wgn' - '{{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/sshkeyshare-1.0.0-py27-none-any.wgn' + - '{{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/plugins/pgaas_plugin-1.0.0-py27-none-any.wgn' !EOF # # And away we go |