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

Add confidential nodes support to node pools #8758

Merged
merged 2 commits into from
Aug 29, 2023

Conversation

rnicoll
Copy link
Contributor

@rnicoll rnicoll commented Aug 24, 2023

This adds support for the "confidential_nodes" configuration at the node pool level, where previously they were only available at cluster level.

As part of this, code required for the confidential nodes configuration is migrated from the cluster file to the node_config.go.erb file.

fixes {https://github.com/hashicorp/terraform-provider-google/issues/13127}

If this PR is for Terraform, I acknowledge that I have:

  • Searched through the issue tracker for an open issue that this either resolves or contributes to, commented on it to claim it, and written "fixes {url}" or "part of {url}" in this PR description. If there were no relevant open issues, I opened one and commented that I would like to work on it (not necessary for very small changes).
  • Ensured that all new fields I added that can be set by a user appear in at least one example (for generated resources) or third_party test (for handwritten resources or update tests).
  • Generated Terraform providers, and ran make test and make lint in the generated providers to ensure it passes unit and linter tests.
  • Ran relevant acceptance tests using my own Google Cloud project and credentials (If the acceptance tests do not yet pass or you are unable to run them, please let your reviewer know).
  • Read Write release notes before writing my release note below.

Release Note Template for Downstream PRs (will be copied)

container: added `node_config.confidential_compute` field to `google_container_node_pool` resource

@modular-magician
Copy link
Collaborator

Oops! It looks like you're using an unknown release-note type in your changelog entries:

  • REPLACEME

Please only use the types listed in https://github.com/GoogleCloudPlatform/magic-modules/blob/master/.ci/RELEASE_NOTES_GUIDE.md.

@modular-magician
Copy link
Collaborator

Hello! I am a robot. It looks like you are a: Community Contributor Googler Core Contributor. Tests will run automatically.

@ScottSuarez, 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.

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

Terraform GA: Diff ( 2 files changed, 44 insertions(+), 21 deletions(-))
Terraform Beta: Diff ( 2 files changed, 45 insertions(+), 21 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_container_cluster (229 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_cluster" "primary" {
  node_config {
    confidential_nodes {
      enabled = # value needed
    }
  }
  node_pool {
    node_config {
      confidential_nodes {
        enabled = # value needed
      }
    }
  }
}

Resource: google_container_node_pool (51 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_node_pool" "primary" {
  node_config {
    confidential_nodes {
      enabled = # value needed
    }
  }
}

@ScottSuarez
Copy link
Contributor

Hi, I notice this PR is in draft, let me know when it's ready for review.

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

Terraform GA: Diff ( 2 files changed, 44 insertions(+), 21 deletions(-))
Terraform Beta: Diff ( 3 files changed, 142 insertions(+), 21 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_container_cluster (232 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_cluster" "primary" {
  node_config {
    confidential_nodes {
      enabled = # value needed
    }
  }
  node_pool {
    node_config {
      confidential_nodes {
        enabled = # value needed
      }
    }
  }
}

@rnicoll
Copy link
Contributor Author

rnicoll commented Aug 24, 2023

Thanks Scott, will do! It should be ready for review this week or early next.

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

Terraform GA: Diff ( 2 files changed, 44 insertions(+), 21 deletions(-))
Terraform Beta: Diff ( 3 files changed, 142 insertions(+), 21 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_container_cluster (232 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_cluster" "primary" {
  node_config {
    confidential_nodes {
      enabled = # value needed
    }
  }
  node_pool {
    node_config {
      confidential_nodes {
        enabled = # value needed
      }
    }
  }
}

@rnicoll rnicoll force-pushed the confidential_nodes branch from fd0ab23 to 4c0956f Compare August 24, 2023 21:24
@rnicoll rnicoll force-pushed the confidential_nodes branch from 4c0956f to ad456fa Compare August 24, 2023 21:26
@rnicoll rnicoll marked this pull request as ready for review August 24, 2023 21:29
@rnicoll
Copy link
Contributor Author

rnicoll commented Aug 24, 2023

@ScottSuarez this is ready for review now

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

Terraform GA: Diff ( 3 files changed, 141 insertions(+), 21 deletions(-))
Terraform Beta: Diff ( 3 files changed, 142 insertions(+), 21 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_container_cluster (232 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_cluster" "primary" {
  node_config {
    confidential_nodes {
      enabled = # value needed
    }
  }
  node_pool {
    node_config {
      confidential_nodes {
        enabled = # value needed
      }
    }
  }
}

@modular-magician
Copy link
Collaborator

Hi there, I'm the Modular magician. I've detected the following information about your changes:

Diff report

Your PR generated some diffs in downstreams - here they are.

Terraform GA: Diff ( 3 files changed, 141 insertions(+), 21 deletions(-))
Terraform Beta: Diff ( 3 files changed, 142 insertions(+), 21 deletions(-))

Missing test report

Your PR includes resource fields which are not covered by any test.

Resource: google_container_cluster (232 total tests)
Please add an acceptance test which includes these fields. The test should include the following:

resource "google_container_cluster" "primary" {
  node_pool {
    node_config {
      confidential_nodes {
        enabled = # value needed
      }
    }
  }
}

@rnicoll
Copy link
Contributor Author

rnicoll commented Aug 24, 2023

Unclear why this continues to show as lacking an acceptance test, but if I've missed something do let me know.

@modular-magician
Copy link
Collaborator

Tests analytics

Total tests: 2988
Passed tests 2688
Skipped tests: 296
Affected tests: 4

Action taken

Found 4 affected test(s) by replaying old test recordings. Starting RECORDING based on the most recent commit. Click here to see the affected tests
TestAccBigtableAppProfile_bigtableAppProfileSingleclusterExample|TestAccBigtableAppProfile_bigtableAppProfileAnyclusterExample|TestAccContainerNodePool_withConfidentialNodes|TestAccDataprocClusterIamPolicy

Get to know how VCR tests work

@modular-magician
Copy link
Collaborator

$\textcolor{green}{\textsf{Tests passed during RECORDING mode:}}$
TestAccBigtableAppProfile_bigtableAppProfileSingleclusterExample[Debug log]
TestAccBigtableAppProfile_bigtableAppProfileAnyclusterExample[Debug log]
TestAccContainerNodePool_withConfidentialNodes[Debug log]
TestAccDataprocClusterIamPolicy[Debug log]

Rerun these tests in REPLAYING mode to catch issues

$\textcolor{green}{\textsf{No issues found for passed tests after REPLAYING rerun.}}$


$\textcolor{green}{\textsf{All tests passed!}}$
View the build log or the debug log for each test

@rnicoll
Copy link
Contributor Author

rnicoll commented Aug 29, 2023

@ScottSuarez Quick nudge on this. Although if there's something I've missed which is causing the Modular Magician to think there isn't an acceptance test, do let me know. I have presumed it's the tool, not me, but was wondering if I've missed something subtle.

@ScottSuarez
Copy link
Contributor

Ah thanks for the nudge ! This looks good at a glance. Let me see

@ScottSuarez ScottSuarez merged commit ef30371 into GoogleCloudPlatform:main Aug 29, 2023
@rnicoll rnicoll deleted the confidential_nodes branch August 29, 2023 19:02
@ScottSuarez
Copy link
Contributor

Tag me on the change and I can review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants