Skip to content

Commit

Permalink
/data/data/azure/main.tf: Change blob type from block to page.
Browse files Browse the repository at this point in the history
It seems to be necessary for VHD image files that they have the Azure blob container type 'page' instead of 'block'. That's required for the Azure OKD installer to work.
  • Loading branch information
jomeier committed Jun 9, 2020
1 parent 145e5cc commit d50cdbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/data/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ resource "azurerm_storage_blob" "rhcos_image" {
name = "rhcos${random_string.storage_suffix.result}.vhd"
storage_account_name = azurerm_storage_account.cluster.name
storage_container_name = azurerm_storage_container.vhd.name
type = "Block"
type = "Page"
source_uri = var.azure_image_url
metadata = map("source_uri", var.azure_image_url)
}
Expand Down

0 comments on commit d50cdbc

Please sign in to comment.