Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/lc step #24

Merged
merged 6 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
trusted lib: homogeneize naming
  • Loading branch information
Peva Blanchard committed Nov 26, 2024
commit c3b0109af4f7c60cce6137af2dd1960e550ab42e
2 changes: 1 addition & 1 deletion trusted_library/01-hardware/01-datacenter/datacenter.lca
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ datasource dc_impacts {
ENTRYPOINT
*/

process datacenter {
process datacenter_fn {
params {
id = "dc-01"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/01-hardware/02-server/server.lca
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ENTRYPOINT
*/

process server {
process server_fn {
params {
id = "srv-01"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/01-hardware/03-storage/storage.lca
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ENTRYPOINT
*/

process storage {
process storage_fn {
params {
id = "sto-01"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/01-hardware/04-network/network.lca
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ENTRYPOINT
*/

process network {
process network_fn {
params {
id = "net-01"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/02-pooling/05-compute/compute.lca
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ datasource compute_inventory {
ENTRYPOINT
*/

process compute {
process compute_fn {
params {
id = "comp-01"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/02-pooling/06-virtual-machine/vm.lca
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ datasource vm_inventory {
ENTRYPOINT
*/

process vm {
process vm_fn {
params {
id = "vm-01"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ datasource storage_space_inventory {
ENTRYPOINT
*/

process storage_space {
process storage_space_fn {
params {
id = "sto-sp-01"
}
Expand Down
6 changes: 3 additions & 3 deletions trusted_library/02-pooling/pool.lca
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Servers
*/

process pool_server {
process pool_server_fn {
params {
id = "client_vm"
}
Expand Down Expand Up @@ -56,7 +56,7 @@ process pool_server_fn {
Network
*/

process pool_network {
process pool_network_fn {
params {
id = "client_vm"
}
Expand Down Expand Up @@ -110,7 +110,7 @@ process pool_network_fn {
Storage
*/

process pool_storage {
process pool_storage_fn {
params {
id = "client_vm"
}
Expand Down
2 changes: 1 addition & 1 deletion trusted_library/03-services/service.lca
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
We model here a generic a service over a dedicated pool of equipments.
*/

process service {
process service_fn {
params {
id = "client_vm"
}
Expand Down