-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Support advanced_machine_features.performance_monitoring_unit
for instance and templates
#12281
base: main
Are you sure you want to change the base?
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_from_machine_image" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
Resource: resource "google_compute_instance_from_template" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
Resource: resource "google_compute_region_instance_template" "primary" {
advanced_machine_features {
performance_monitoring_unit = # value needed
}
}
|
Tests analyticsTotal tests: 1063 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
|
🟢 Tests passed during RECORDING mode: 🟢 No issues found for passed tests after REPLAYING rerun. 🔴 Tests failed during RECORDING mode: 🔴 Errors occurred during RECORDING mode. Please fix them to complete your PR. |
/gcbrun |
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_from_machine_image" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
Resource: resource "google_compute_instance_from_template" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
Resource: resource "google_compute_region_instance_template" "primary" {
advanced_machine_features {
performance_monitoring_unit = # value needed
}
}
|
Tests analyticsTotal tests: 1063 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
|
🔴 Tests failed during RECORDING mode: 🔴 Errors occurred during RECORDING mode. Please fix them to complete your PR. |
@trodge This PR has been waiting for review for 3 weekdays. Please take a look! Use the label |
/gcbrun |
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_from_machine_image" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
Resource: resource "google_compute_instance_from_template" "primary" {
advanced_machine_features {
enable_nested_virtualization = # value needed
performance_monitoring_unit = # value needed
threads_per_core = # value needed
turbo_mode = # value needed
visible_core_count = # value needed
}
}
|
Tests analyticsTotal tests: 1063 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
|
related to b/319565227
advanced_machine_features.performance_monitoring_unit
togoogle_compute_region_instance_template
google_compute_instance_template
google_compute_instance
There is a problem with the API on this field because it only works on C4 instances but the API errors are not reflecting that when the machine type is wrong. Pending to be fixed. Other than that this works and here is a terraform implementation
Release Note Template for Downstream PRs (will be copied)
See Write release notes for guidance.