(image_identity: &str)
| 4367 | } |
| 4368 | |
| 4369 | fn prepared_image_cache_identity(image_identity: &str) -> String { |
| 4370 | format!( |
| 4371 | "{PREPARED_IMAGE_CACHE_LAYOUT_VERSION}:openshell-{}:{image_identity}", |
| 4372 | openshell_core::VERSION |
| 4373 | ) |
| 4374 | } |
| 4375 | |
| 4376 | fn registry_layer_download_concurrency() -> usize { |
| 4377 | let value = std::env::var("OPENSHELL_VM_IMAGE_PULL_CONCURRENCY").ok(); |
no outgoing calls