34 lines
804 B
Plaintext
34 lines
804 B
Plaintext
common: &common
|
|
username: "<username>"
|
|
password: "<password>"
|
|
type: "<service_type>"
|
|
service_name: "<service_name>"
|
|
git: &git_config
|
|
repo_url: "<git_repo_url>"
|
|
branch: "<branch_name>"
|
|
local_path: "<local_git_path>"
|
|
ssh: &ssh_config
|
|
user: <ssh_user>
|
|
key_path: "<ssh_key_path>"
|
|
|
|
odoo_instances:
|
|
- name: "<instance_name_1>"
|
|
host: "<instance_host_1>"
|
|
port: <instance_port_1>
|
|
database: "<instance_database_1>"
|
|
modules:
|
|
- "<module_1>"
|
|
- "<module_2>"
|
|
- "<module_3>"
|
|
<<: *common # Inherit common settings
|
|
|
|
- name: "<instance_name_2>"
|
|
host: "<instance_host_2>"
|
|
port: <instance_port_2>
|
|
database: "<instance_database_2>"
|
|
modules:
|
|
- "<module_4>"
|
|
- "<module_5>"
|
|
- "<module_6>"
|
|
<<: *common # Inherit common settings
|