@@ -6,13 +6,20 @@ xmpp_port=5347
66rendezvous_jid=rendezvous.test.com
77greensitter_jid=greensitter.test.com
88
9+ # That flavor specification will be transformed into requirements.
10+ flavor_fogbow_small={mem=512, cpu=1}
11+ flavor_fogbow_medium={mem=1024, cpu=2}
12+ flavor_fogbow_large={mem=2048, cpu=4}
13+
14+ # Compute Opennebula
915compute_class=org.fogbowcloud.manager.core.plugins.opennebula.OpenNebulaComputePlugin
1016compute_one_url=http://localhost:2633/RPC2
11- compute_one_flavor_small={mem=128, cpu=1}
12- compute_one_flavor_medium={mem=256, cpu=2}
13- compute_one_flavor_large={mem=512, cpu=4}
1417compute_one_network_id=1
1518
19+ # Setting used to find the correct flavor according to informed templates.
20+ # types :all or specific templates(template1,template2)
21+ compute_one_templates=all
22+
1623# Settings used by ONE compute plugin to register new images in the cloud
1724# ID of datastore to register the image
1825compute_one_datastore_id=1
@@ -27,17 +34,25 @@ compute_one_ssh_key_file=/home/fogbow/.ssh/id_rsa
2734# Set the directory to copy images in remote host
2835compute_one_ssh_target_temp_folder=/tmp/images
2936
37+ # Compute Openstack OCCI
3038compute_class=org.fogbowcloud.manager.core.plugins.openstack.OpenStackOCCIComputePlugin
3139compute_openstack_v2api_url=http://localhost:8182
3240compute_occi_url=http://localhost:8182
33- compute_occi_flavor_small=m1-small
34- compute_occi_flavor_medium=m1-medium
35- compute_occi_flavor_large=m1-large
3641compute_occi_os_scheme=http://schemas.openstack.org/template/os#
3742compute_occi_instance_scheme=http://schemas.openstack.org/compute/instance#
3843compute_occi_resource_scheme=http://schemas.openstack.org/template/resource#
3944compute_occi_network_id=ea51ed0c-0e8a-448d-8202-c79777109ffe
4045
46+ # Compute Opennebula OCCI
47+ compute_class=org.fogbowcloud.manager.core.plugins.opennebula.OpenNebulaOCCIComputePlugin
48+ compute_one_url=http://localhost:2633/RPC2
49+ compute_occi_url=http://localhost:3000
50+ compute_occi_template_scheme=http://occi.localhost/occi/infrastructure/os_tpl#
51+ compute_occi_resource_scheme=http://schema.fedcloud.egi.eu/occi/infrastructure/resource_tpl#
52+ compute_occi_flavors_small={cpu=1,mem=512}
53+ compute_occi_flavors_medium={cpu=2,mem=1024}
54+ compute_occi_flavors_large={cpu=4,mem=2048}
55+
4156# If you are using the EgiImageStoragePlugin
4257image_storage_class=org.fogbowcloud.manager.core.plugins.imagestorage.egi.EgiImageStoragePlugin
4358image_storage_egi_base_url=http://lsd.ufcg.edu.br/~user/vm/
@@ -61,21 +76,22 @@ image_storage_static_fogbow-ubuntu-1204=81765250-a4e4-440d-a215-43c9c0849120
6176member_picker_class=org.fogbowcloud.manager.core.RoundRobinMemberPicker
6277#If you are using NoFMemberPicker or NoFPrioritizationPlugin classes
6378nof_trustworthy=false
79+ nof_prioritize_local=true
6480
6581local_prioritization_plugin_class=org.fogbowcloud.manager.core.plugins.prioritization.FCFSPrioritizationPlugin
6682remote_prioritization_plugin_class=org.fogbowcloud.manager.core.plugins.prioritization.nof.NoFPrioritizationPlugin
6783
84+ # Compute Openstack
6885compute_class=org.fogbowcloud.manager.core.plugins.openstack.OpenStackNovaV2ComputePlugin
6986compute_novav2_url=http://localhost:8774
7087compute_glancev2_url=http://localhost:9292
71- compute_novav2_flavor_small=1
72- compute_novav2_flavor_medium=2
73- compute_novav2_flavor_large=3
7488compute_novav2_network_id=ea51ed0c-0e8a-448d-8202-c79777109ffe
7589
90+ # Local identity
7691local_identity_class=org.fogbowcloud.manager.core.plugins.openstack.KeystoneIdentityPlugin
7792local_identity_url=http://localhost:5000
7893
94+ # Federation identity
7995federation_authorization_class=org.fogbowcloud.manager.core.plugins.common.AllowAllAuthorizationPlugin
8096federation_identity_class=org.fogbowcloud.manager.core.plugins.openstack.KeystoneIdentityPlugin
8197federation_identity_url=http://localhost:5000
0 commit comments