[Puppet] Scripts moved to a separate folders

* install - scripts to install puppet itself
 * core - scripts related to puppet related
functions binded to MuranoPL
 * server (future) - scripts related to puppet
server installation and configuration

Change-Id: I4b2be96721958b0847967f72d7cf83ecc9c1f5b8
This commit is contained in:
Alexey Khivin 2016-06-25 17:13:12 +03:00
parent 1cd3e3d7c8
commit 48d9d205ca
15 changed files with 14 additions and 14 deletions

View File

@ -19,7 +19,7 @@ Body: |
applyManifest()
Files:
manifest:
destinationFile:
BodyType: Base64
Name: site.pp
Body: $manifestContent
@ -28,7 +28,7 @@ Scripts:
applyManifest:
Type: Application
Version: 1.0.0
EntryPoint: apply_manifest.sh
EntryPoint: core/apply_manifest.sh
Files:
- site.pp
Options:

View File

@ -12,7 +12,7 @@ Scripts:
get_value:
Type: Application
Version: 1.0.0
EntryPoint: get_hiera_data.sh
EntryPoint: core/get_hiera_data.sh
Files: []
Options:
captureStdout: true

View File

@ -11,8 +11,10 @@ Scripts:
installHiera:
Type: Application
Version: 1.0.0
EntryPoint: install_hiera.sh
Files: ['hiera.yaml', 'murano.yaml']
EntryPoint: install/install_hiera.sh
Files:
- install/hiera.yaml
- install/murano.yaml
Options:
captureStdout: true
captureStderr: true

View File

@ -11,7 +11,7 @@ Scripts:
installPuppet:
Type: Application
Version: 1.0.0
EntryPoint: install_puppet.sh
EntryPoint: install/install_puppet.sh
Files: []
Options:
captureStdout: true

View File

@ -12,7 +12,7 @@ Scripts:
installPuppetModule:
Type: Application
Version: 1.0.0
EntryPoint: install_puppet_module.sh
EntryPoint: core/install_puppet_module.sh
Files: []
Options:
captureStdout: true

View File

@ -26,7 +26,7 @@ Scripts:
runPuppet:
Type: Application
Version: 1.0.0
EntryPoint: exec_puppet_inline.sh
EntryPoint: core/exec_puppet_inline.sh
Files: []
Options:
captureStdout: true

View File

@ -15,8 +15,6 @@ cp murano.yaml /etc/puppet/hieradata/murano.yaml
mkdir /etc/system-config/
#cp murano.yaml /opt/system-config/murano.yaml
puppet config set environment production
exit

View File

@ -10,7 +10,7 @@ Description: |
Author: 'Mirantis, Inc'
Tags: [Server, Puppet]
Classes:
org.openstack.ci_cd_pipeline_murano_app.puppet.PuppetInstance: PuppetInstance.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.Hiera: Hiera.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.YamlTool: YamlTool.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.YamlFile: YamlFile.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.PuppetInstance: PuppetInstance.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.Hiera: Hiera.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.YamlTool: YamlTool.yaml
org.openstack.ci_cd_pipeline_murano_app.puppet.YamlFile: YamlFile.yaml