diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-09-17 15:07:23 +0200 |
---|---|---|
committer | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-09-18 12:59:54 +0000 |
commit | 591810df468a8e2c59569e701f514bff61203940 (patch) | |
tree | 9cd9b03ef59319a229bc784d66c02538c3785ec2 /catalog-be/src/main/docker/backend/chef-solo/roles | |
parent | 0e825177c8f6c5304d9b529cd9831f30d401efaa (diff) |
Introduce a new docker for be plugins
Introduce a new docker image containing the etsi plugin and potentially others + simplify the process to build backend image + cleaning of unused files
Issue-ID: SDC-3289
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I82c770b391d169bef3bcc5f5af66e2a24dffb1b4
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'catalog-be/src/main/docker/backend/chef-solo/roles')
-rw-r--r-- | catalog-be/src/main/docker/backend/chef-solo/roles/README.md | 16 | ||||
-rw-r--r-- | catalog-be/src/main/docker/backend/chef-solo/roles/catalog-be.json | 26 |
2 files changed, 42 insertions, 0 deletions
diff --git a/catalog-be/src/main/docker/backend/chef-solo/roles/README.md b/catalog-be/src/main/docker/backend/chef-solo/roles/README.md new file mode 100644 index 0000000000..b0ee0b4d21 --- /dev/null +++ b/catalog-be/src/main/docker/backend/chef-solo/roles/README.md @@ -0,0 +1,16 @@ +Create roles here, in either the Role Ruby DSL (.rb) or JSON (.json) files. To install roles on the server, use knife. + +For example, create `roles/base_example.rb`: + + name "base_example" + description "Example base role applied to all nodes." + # List of recipes and roles to apply. Requires Chef 0.8, earlier versions use 'recipes()'. + #run_list() + # Attributes applied if the node doesn't have it set already. + #default_attributes() + # Attributes applied no matter what the node has set already. + #override_attributes() + +Then upload it to the Chef Server: + + knife role from file roles/base_example.rb diff --git a/catalog-be/src/main/docker/backend/chef-solo/roles/catalog-be.json b/catalog-be/src/main/docker/backend/chef-solo/roles/catalog-be.json new file mode 100644 index 0000000000..01ce87f239 --- /dev/null +++ b/catalog-be/src/main/docker/backend/chef-solo/roles/catalog-be.json @@ -0,0 +1,26 @@ +{ + "name": "catalog-be", + "description": "Installation application - catalogBE", + "json_class": "Chef::Role", + "default_attributes": { + + }, + "override_attributes": { + + }, + "chef_type": "role", + "run_list": [ + "recipe[sdc-catalog-be::BE_1_cleanup_jettydir]", + "recipe[sdc-catalog-be::BE_2_setup_configuration]", + "recipe[sdc-catalog-be::BE_3_locate_keystore]", + "recipe[sdc-catalog-be::BE_4_jetty_Modules]", + "recipe[sdc-catalog-be::BE_6_setup_portal_and_key_properties]", + "recipe[sdc-catalog-be::BE_7_logback]", + "recipe[sdc-catalog-be::BE_8_errors_config]", + "recipe[sdc-catalog-be::BE_9_prepareProbeFile]", + "recipe[sdc-catalog-be::BE_10_setup_cadi]" + ], + "env_run_lists": { + } +} + |