-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Add support of storage pool on boot disk. #11230
Add support of storage pool on boot disk. #11230
Conversation
Hello! I am a robot. Tests will require approval from a repository maintainer to run. @trodge, a repository maintainer, has been assigned to review your changes. If you have not received review feedback within 2 business days, please leave a comment on this PR asking them to take a look. You can help make sure that review is quick by doing a self-review and by running impacted tests locally. |
Hi there, I'm the Modular magician. I've detected the following information about your changes: Diff reportYour PR generated some diffs in downstreams - here they are.
Missing test reportYour PR includes resource fields which are not covered by any test. Resource: resource "google_compute_instance" "primary" {
boot_disk {
initialize_params {
labels = # value needed
}
}
}
Resource: resource "google_compute_instance_from_machine_image" "primary" {
boot_disk {
initialize_params {
storage_pool = # value needed
}
}
}
Resource: resource "google_compute_instance_from_template" "primary" {
boot_disk {
initialize_params {
enable_confidential_compute = # value needed
image = # value needed
labels = # value needed
provisioned_iops = # value needed
provisioned_throughput = # value needed
resource_manager_tags = # value needed
size = # value needed
storage_pool = # value needed
type = # value needed
}
}
}
|
Tests analyticsTotal tests: 974 Click here to see the affected service packages
Action takenFound 3 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
|
|
56d8f78
to
d2af5fa
Compare
Hi there, I'm the Modular magician. I've detected the following information about your changes: Diff reportYour PR generated some diffs in downstreams - here they are.
Missing test reportYour PR includes resource fields which are not covered by any test. Resource: resource "google_compute_instance" "primary" {
boot_disk {
initialize_params {
labels = # value needed
}
}
}
Resource: resource "google_compute_instance_from_machine_image" "primary" {
boot_disk {
initialize_params {
storage_pool = # value needed
}
}
}
Resource: resource "google_compute_instance_from_template" "primary" {
boot_disk {
initialize_params {
enable_confidential_compute = # value needed
image = # value needed
labels = # value needed
provisioned_iops = # value needed
provisioned_throughput = # value needed
resource_manager_tags = # value needed
size = # value needed
storage_pool = # value needed
type = # value needed
}
}
}
|
Tests analyticsTotal tests: 974 Click here to see the affected service packages
Action takenFound 1 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
|
|
Hi @trodge, we already have different test cases for the fields it mentioned, and the one I added I also added a test for it and made sure it passes, please review, thanks! |
Add
storage_pool
to the boot_disk ofgoogle_compute_instance
resource to support creating boot disk with the storage pool specified.Since the storage pool is not a resource in the terraform provider (due to some security concern, please reference #10793), it's only a URL string.
Release Note Template for Downstream PRs (will be copied)