diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-07 08:47:20 +0100 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-07 18:27:52 +0100 |
commit | 55ef51bceadfdc99f53e42992d7bc742395761ab (patch) | |
tree | aea842b67d82b31fe68711a9b8a828069dc5668b /jjb/opnfv/installer-params.yml | |
parent | 0b27c3e7e7ada718ba16a8ec78edfed52ae0bf15 (diff) |
Add installer and pod parameter files and create example jobs
This change proposes
- Move installer params to common file
- Move pod params to common file
- Configure POD slaves in pod file and set slave to run using node label plugin
- Create one daily parent job per installer per controller
- Create common deploy job, taking controller name from parent job
- Change build display name to show installer + controller name
Please note that this is an example and things will evolve based on
how things work.
Change-Id: I4bc1d35e43c44d9401f4000090818e8e7b426e70
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/opnfv/installer-params.yml')
-rw-r--r-- | jjb/opnfv/installer-params.yml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/jjb/opnfv/installer-params.yml b/jjb/opnfv/installer-params.yml new file mode 100644 index 000000000..dc11fbd53 --- /dev/null +++ b/jjb/opnfv/installer-params.yml @@ -0,0 +1,79 @@ +- parameter: + name: 'apex-defaults' + parameters: + - string: + name: INSTALLER_IP + default: '192.168.X.X' + description: 'IP of the installer' + - string: + name: INSTALLER_NAME + default: apex + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: INSTALLER_TYPE + default: $INSTALLER_NAME + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: CONTROLLER + default: '{controller}' + description: 'Controller name' + +- parameter: + name: 'compass4nfv-defaults' + parameters: + - string: + name: INSTALLER_IP + default: '192.168.200.2' + description: 'IP of the installer' + - string: + name: INSTALLER_NAME + default: compass4nfv + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: INSTALLER_TYPE + default: $INSTALLER_NAME + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: CONTROLLER + default: '{controller}' + description: 'Controller name' + +- parameter: + name: 'fuel-defaults' + parameters: + - string: + name: INSTALLER_IP + default: '10.20.0.2' + description: 'IP of the installer' + - string: + name: INSTALLER_NAME + default: fuel + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: INSTALLER_TYPE + default: $INSTALLER_NAME + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: CONTROLLER + default: '{controller}' + description: 'Controller name' + +- parameter: + name: 'joid-defaults' + parameters: + - string: + name: INSTALLER_IP + default: '192.168.Y.Y' + description: 'IP of the installer' + - string: + name: INSTALLER_NAME + default: joid + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: INSTALLER_TYPE + default: $INSTALLER_NAME + description: 'Installer used for deploying OPNFV on this POD' + - string: + name: CONTROLLER + default: '{controller}' + description: 'Controller name' |