-
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
dcl upgrade #5994
dcl upgrade #5994
Conversation
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 14 files changed, 545 insertions(+), 135 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccContainerAzureNodePool_BasicHandWritten|TestAccContainerAwsNodePool_BasicHandWritten |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 14 files changed, 950 insertions(+), 137 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccContainerAzureCluster_BetaBasicHandWritten|TestAccContainerAzureNodePool_BasicHandWritten|TestAccContainerAzureCluster_BasicHandWritten|TestAccContainerAwsNodePool_BetaBasicHandWritten|TestAccContainerAwsCluster_BetaBasicHandWritten|TestAccContainerAzureNodePool_BetaBasicHandWritten|TestAccBigQueryDataTable_bigtable |
Tests passed during RECORDING mode: Tests failed during RECORDING mode: Please fix these to complete your PR |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 14 files changed, 829 insertions(+), 89 deletions(-)) |
Tests analyticsTotal tests: Errors occurred during REPLAYING mode. Please fix them to complete your PR |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 14 files changed, 829 insertions(+), 89 deletions(-)) |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 14 files changed, 829 insertions(+), 89 deletions(-)) |
@@ -123,3 +123,6 @@ | |||
- type: EXCLUDE | |||
field: location | |||
location: global | |||
- type: EXCLUDE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is why we prefer having split out resources for different locations, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, absolutely.
|
||
poolName := fmt.Sprintf("tf-%s", randString(t, 10)) | ||
ruleName := fmt.Sprintf("tf-%s", randString(t, 10)) | ||
svcDirNamespace := fmt.Sprintf("tf-svcdirns-%s", randString(t, 10)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these be tf-test-
to work with sweepers?
@@ -80,7 +85,7 @@ resource "google_container_azure_node_pool" "primary" { | |||
|
|||
name = "{{node-pool-name}}" | |||
subnet_id = "/subscriptions/{{azure_subscription}}/resourceGroups/{{byo_multicloud_prefix}}-dev-byo/providers/Microsoft.Network/virtualNetworks/{{byo_multicloud_prefix}}-dev-vnet/subnets/default" | |||
version = "1.21.6-gke.1500" | |||
version = "${data.google_container_azure_versions.versions.valid_versions[0]}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these handwritten? This will make it significantly more difficult to change this to be based off the samples in the DCL repo.
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccFirebaserulesRelease_BasicRelease|TestAccContainerAzureCluster_BetaBasicHandWritten|TestAccContainerAzureCluster_BasicHandWritten|TestAccComputeForwardingRule_serviceDirectoryRegistrations |
Tests passed during RECORDING mode: All tests passed |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 13 files changed, 355 insertions(+), 89 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccFirebaserulesRelease_BasicRelease|TestAccComputeForwardingRule_serviceDirectoryRegistrations|TestAccServiceNetworkingPeeredDNSDomain_basic |
…trations from global_forwarding_rule
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 17 files changed, 448 insertions(+), 93 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccContainerAwsNodePool_BetaBasicHandWritten|TestAccContainerAwsNodePool_BasicHandWritten |
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 17 files changed, 448 insertions(+), 93 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccFirebaserulesRelease_BasicRelease|TestAccContainerAwsNodePool_BetaBasicHandWritten |
mmv1/products/compute/api.yaml
Outdated
name: 'namespace' | ||
description: | | ||
Service Directory namespace to register the forwarding rule under. | ||
required: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These two are listed as "Required" but aren't actually required according to the produced schema.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed it! Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One note on required in the docs for forwarding rule, other than that LGTM!
Hi! I'm the modular magician. Your PR generated some diffs in downstreams - here they are. Diff report:Terraform GA: Diff ( 17 files changed, 448 insertions(+), 93 deletions(-)) |
Tests analyticsTotal tests: Action takenTriggering VCR tests in RECORDING mode for the following tests that failed during VCR: TestAccFirebaserulesRelease_BasicRelease |
This PR includes the changes in:
#5936
#5902
Fixes hashicorp/terraform-provider-google#10873
Fixes hashicorp/terraform-provider-google#10297
Fixes hashicorp/terraform-provider-google#11487
If this PR is for Terraform, I acknowledge that I have:
make test
andmake lint
to ensure it passes unit and linter tests.Release Note Template for Downstream PRs (will be copied)