diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32d1ba9c2e..945ce00cb4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -149,7 +149,7 @@ repo to quickly set up a local dev environment. ```shell ./gcp-setup.sh ``` -1. _(Optional)_ Verify that worload identity federation is [setup correctly](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity#verify_the_setup). +1. _(Optional)_ Verify that workload identity federation is [setup correctly](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity#verify_the_setup). 1. Now that you have everything set up, you can build your own images and then deploy the Config Connector CRDs and workloads (including controller diff --git a/config/tests/samples/create/harness.go b/config/tests/samples/create/harness.go index 581b4ca36c..770182ed23 100644 --- a/config/tests/samples/create/harness.go +++ b/config/tests/samples/create/harness.go @@ -164,7 +164,7 @@ func NewHarness(ctx context.Context, t *testing.T, opts ...HarnessOption) *Harne if targetKube := os.Getenv("E2E_KUBE_TARGET"); targetKube == "envtest" { whCfgs, err := testwebhook.GetTestCommonWebhookConfigs() if err != nil { - h.Fatalf("error getting common wehbook configs: %v", err) + h.Fatalf("error getting common webhook configs: %v", err) } webhooks = append(webhooks, whCfgs...) diff --git a/crds/dns_v1beta1_dnsrecordset.yaml b/crds/dns_v1beta1_dnsrecordset.yaml index 9187343e53..0eb96c435b 100644 --- a/crds/dns_v1beta1_dnsrecordset.yaml +++ b/crds/dns_v1beta1_dnsrecordset.yaml @@ -110,7 +110,7 @@ spec: type: string routingPolicy: description: The configuration for steering traffic based on query. - You can specify either Weighted Round Robin(WRR) type or Geolocation (GEO) + You can specify either Weighted Round Robin (WRR) type or Geolocation (GEO) type. properties: enableGeoFencing: diff --git a/operator/tests/e2e/e2e_test.go b/operator/tests/e2e/e2e_test.go index af9dcf5f69..05018b979f 100644 --- a/operator/tests/e2e/e2e_test.go +++ b/operator/tests/e2e/e2e_test.go @@ -617,7 +617,7 @@ func TestUpgrade(t *testing.T) { } time.Sleep(120 * time.Second) // Some buffer time for the operator to reconcile on the existing ConfigConnector if err := cluster.waitForConfigConnectorToBeHealthy(k8s.ConfigConnectorAllowedName); err != nil { - t.Fatal(fmt.Errorf("error waitting for ConfigConnector to be healthy: %w", err)) + t.Fatal(fmt.Errorf("error waiting for ConfigConnector to be healthy: %w", err)) } checkIfKCCHasUpgradedToTheLatestVersion(t, cluster, log) log.Info("Re-applying ArtifactRegistryRepository") diff --git a/pkg/controller/direct/logging/utils.go b/pkg/controller/direct/logging/utils.go index 39bbb345e8..f391d2049c 100644 --- a/pkg/controller/direct/logging/utils.go +++ b/pkg/controller/direct/logging/utils.go @@ -276,11 +276,11 @@ func compareLinearBuckets(kccObj *krm.LogmetricLinearBuckets, apiObj *api.Linear apiLinearBuckets := struct { numFiniteBuckets int64 offset float64 - witdh float64 + width float64 }{ numFiniteBuckets: apiObj.NumFiniteBuckets, offset: apiObj.Offset, - witdh: apiObj.Width, + width: apiObj.Width, } return reflect.DeepEqual(kccObj, apiLinearBuckets) diff --git a/pkg/test/main/testmain.go b/pkg/test/main/testmain.go index beb902902e..d53accc4b8 100644 --- a/pkg/test/main/testmain.go +++ b/pkg/test/main/testmain.go @@ -72,7 +72,7 @@ func SetupMultipleEnvironments(m *testing.M, testType test.Type, crds []*apiexte if testType == test.IntegrationTestType { whCfgs, err = webhook.GetTestCommonWebhookConfigs() if err != nil { - log.Fatalf("error getting common wehbook configs: %v", err) + log.Fatalf("error getting common webhook configs: %v", err) } } env := testenvironment.StartTestEnvironmentOrLogFatal(testType, crds, whCfgs) diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/create.yaml index 88273f92df..b5b2c86752 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/create.yaml @@ -24,7 +24,7 @@ spec: settings: activationPolicy: ALWAYS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/update.yaml index 2b8d7ad1bd..2328458288 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy-direct/update.yaml @@ -24,7 +24,7 @@ spec: settings: activationPolicy: NEVER # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/create.yaml index 911ffff1eb..b0363cd2d7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/create.yaml @@ -22,7 +22,7 @@ spec: settings: activationPolicy: ALWAYS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/update.yaml index b7f7cb701b..e1d7b16a42 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-activationpolicy/update.yaml @@ -22,7 +22,7 @@ spec: settings: activationPolicy: NEVER # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/create.yaml index 0e84059508..ee4d3eefd7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/create.yaml @@ -29,7 +29,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/update.yaml index 4731681272..7102a1492e 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig-direct/update.yaml @@ -29,7 +29,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/create.yaml index 106a143510..18dd4719dc 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/create.yaml @@ -27,7 +27,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/update.yaml index afe2d43f71..7282268d08 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-auditconfig/update.yaml @@ -27,7 +27,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/create.yaml index bc8344cae1..ab1b497ab8 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/create.yaml @@ -28,7 +28,7 @@ spec: value: 0.0.0.0/0 expirationTime: 2099-01-01T00:00:00Z # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/update.yaml index 643372b414..049ffd0110 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks-direct/update.yaml @@ -31,7 +31,7 @@ spec: value: 1.2.3.0/24 expirationTime: 2100-01-01T00:00:00Z # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/create.yaml index 6abce19e51..9ae7556b36 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/create.yaml @@ -26,7 +26,7 @@ spec: value: 0.0.0.0/0 expirationTime: 2099-01-01T00:00:00Z # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/update.yaml index 3e72356b84..78bc23a171 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-authorizednetworks/update.yaml @@ -29,7 +29,7 @@ spec: value: 1.2.3.0/24 expirationTime: 2100-01-01T00:00:00Z # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/create.yaml index f7c2bf8032..636e07f0b1 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/create.yaml @@ -33,7 +33,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/update.yaml index 24983f9eca..149722bc60 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog-direct/update.yaml @@ -35,7 +35,7 @@ spec: startTime: 01:00 transactionLogRetentionDays: 3 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/create.yaml index 65ef8be627..fe2f12d4fb 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/create.yaml @@ -31,7 +31,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/update.yaml index 2670751c00..87f36c2a7e 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-binarylog/update.yaml @@ -33,7 +33,7 @@ spec: startTime: 01:00 transactionLogRetentionDays: 3 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/create.yaml index 146a963844..5ed99515fb 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/create.yaml @@ -33,7 +33,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/update.yaml index 1c2fcb0c96..8475940d6d 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr-direct/update.yaml @@ -35,7 +35,7 @@ spec: startTime: 01:00 transactionLogRetentionDays: 3 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/create.yaml index 5ef0f29692..0f15b7bc15 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/create.yaml @@ -31,7 +31,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/update.yaml index 46384e37b9..119374765a 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-backupconfiguration-pitr/update.yaml @@ -33,7 +33,7 @@ spec: startTime: 01:00 transactionLogRetentionDays: 3 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/create.yaml index 583ae73e28..450077f587 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/create.yaml @@ -35,7 +35,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/dependencies.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/dependencies.yaml index 0bb99083d8..32930408a2 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/dependencies.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-clone-minimal-direct/dependencies.yaml @@ -32,7 +32,7 @@ spec: startTime: 00:00 transactionLogRetentionDays: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/create.yaml index 024fd9f87e..58afa08ab7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/create.yaml @@ -24,7 +24,7 @@ spec: settings: connectorEnforcement: NOT_REQUIRED # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/update.yaml index 496c0284ba..ce3d3c0ff6 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement-direct/update.yaml @@ -24,7 +24,7 @@ spec: settings: connectorEnforcement: REQUIRED # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/create.yaml index ab85644c45..270f55277c 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/create.yaml @@ -22,7 +22,7 @@ spec: settings: connectorEnforcement: NOT_REQUIRED # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/update.yaml index 3d7ec0a6e7..1d0a273f0e 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-connectorenforcement/update.yaml @@ -22,7 +22,7 @@ spec: settings: connectorEnforcement: REQUIRED # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/create.yaml index 871cbed56f..9c7b5e3a1a 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/create.yaml @@ -26,7 +26,7 @@ spec: - name: log_connections value: "on" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/update.yaml index 5584619236..51198ef4ca 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags-direct/update.yaml @@ -28,7 +28,7 @@ spec: - name: log_timezone value: "America/Los_Angeles" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/create.yaml index 477e96b02f..56a209d62b 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/create.yaml @@ -24,7 +24,7 @@ spec: - name: log_connections value: "on" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/update.yaml index 50059be5a7..dff68d2211 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-databaseflags/update.yaml @@ -26,7 +26,7 @@ spec: - name: log_timezone value: "America/Los_Angeles" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/create.yaml index 4256db3636..647f86b879 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/create.yaml @@ -30,7 +30,7 @@ spec: # test case, we will specify `edition: ENTERPRISE` here. edition: ENTERPRISE # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/update.yaml index da1fa91817..3cb8d01f6b 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig-direct/update.yaml @@ -27,7 +27,7 @@ spec: # Data cache requires ENTERPRISE_PLUS edition. edition: ENTERPRISE_PLUS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/create.yaml index 14863a6a35..1deb901a86 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/create.yaml @@ -27,7 +27,7 @@ spec: # we must set `edition: ENTERPRISE_PLUS` here. edition: ENTERPRISE_PLUS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/update.yaml index 9a55587d48..b8d57b827f 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-datacacheconfig/update.yaml @@ -25,7 +25,7 @@ spec: # Data cache requires ENTERPRISE_PLUS edition. edition: ENTERPRISE_PLUS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/create.yaml index ab76666497..2be0d2adf6 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/create.yaml @@ -24,7 +24,7 @@ spec: settings: deletionProtectionEnabled: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/update.yaml index f98da0a80d..9e0de0cc28 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection-direct/update.yaml @@ -24,7 +24,7 @@ spec: settings: deletionProtectionEnabled: false # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/create.yaml index 5af3378a92..c271d893b7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/create.yaml @@ -22,7 +22,7 @@ spec: settings: deletionProtectionEnabled: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/update.yaml index ba253c4c57..74a6dfa969 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-deletionprotection/update.yaml @@ -22,7 +22,7 @@ spec: settings: deletionProtectionEnabled: false # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/create.yaml index 201a6898b0..956fcd4194 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/create.yaml @@ -27,7 +27,7 @@ spec: startDate: 0-12-1 time: 00:00:00 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/update.yaml index 2c90fc6827..71b3509fa9 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod-direct/update.yaml @@ -27,7 +27,7 @@ spec: startDate: 0-11-1 time: 01:00:00 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/create.yaml index 5c7cd0d0f4..d2b44de089 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/create.yaml @@ -25,7 +25,7 @@ spec: startDate: 0-12-1 time: 00:00:00 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/update.yaml index 2be0196047..d0fd22c9f2 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-denymaintenanceperiod/update.yaml @@ -25,7 +25,7 @@ spec: startDate: 0-11-1 time: 01:00:00 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/create.yaml index 5b01f8aa29..e76eea90b8 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/create.yaml @@ -29,7 +29,7 @@ spec: recordApplicationTags: false recordClientAddress: false # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/update.yaml index 998608cbde..85182f50ca 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig-direct/update.yaml @@ -29,7 +29,7 @@ spec: recordApplicationTags: true recordClientAddress: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/create.yaml index 01e39d8ce2..d96ebe73e7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/create.yaml @@ -27,7 +27,7 @@ spec: recordApplicationTags: false recordClientAddress: false # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/update.yaml index fa2abcffcf..ef33236356 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-insightsconfig/update.yaml @@ -27,7 +27,7 @@ spec: recordApplicationTags: true recordClientAddress: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/create.yaml index 919c50ae30..05efdf14ec 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/create.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/update.yaml index a216a0f115..378c5a4bb3 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow-direct/update.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/create.yaml index 2c3e2f2d9f..742343c5b7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/create.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/update.yaml index b23dcfbbaf..e3feb75d32 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-maintenancewindow/update.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/create.yaml index 0f32be1b7d..a44bf2dcb1 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/create.yaml @@ -32,7 +32,7 @@ spec: # Configuring threadsPerCore requires sql server and >= 6 CPU cores. threadsPerCore: 1 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/update.yaml index 45e0e6a83f..c134698d85 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading-direct/update.yaml @@ -32,7 +32,7 @@ spec: # Configuring threadsPerCore requires sql server and >= 6 CPU cores. threadsPerCore: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/create.yaml index 41f7434971..6d82f02dbf 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/create.yaml @@ -30,7 +30,7 @@ spec: # Configuring threadsPerCore requires sql server and >= 6 CPU cores. threadsPerCore: 1 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/update.yaml index 958dcaca9b..f00b346296 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-multithreading/update.yaml @@ -30,7 +30,7 @@ spec: # Configuring threadsPerCore requires sql server and >= 6 CPU cores. threadsPerCore: 2 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/create.yaml index 43e1669734..9a3dfb14f7 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/create.yaml @@ -28,7 +28,7 @@ spec: diskAutoresize: false diskSize: 10 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/update.yaml index e41c34adeb..6fd7a6c119 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-direct/update.yaml @@ -28,7 +28,7 @@ spec: diskAutoresize: false diskSize: 20 # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/create.yaml index 05c7d7c1f1..cc34c0cf11 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/create.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/update.yaml index 18a1cced85..4b373b2830 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal-direct/update.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/create.yaml index d69611d1d2..025d6d1cc1 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/create.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/update.yaml index 0dad8827e8..13c82411b5 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-mysql-minimal/update.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/create.yaml index 33e9de2ffd..01c7c3cbff 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/create.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/update.yaml index 49a6a452d2..b7fd370591 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy-direct/update.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/create.yaml index c17ced039c..50ed5f0589 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/create.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/update.yaml index 855570c132..34b686c503 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-passwordvalidationpolicy/update.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/create.yaml index 011d316195..9b5db3927d 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/create.yaml @@ -55,7 +55,7 @@ spec: requireSsl: false sslMode: ENCRYPTED_ONLY # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/update.yaml index 75b5427e3b..3fe823dc19 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-direct/update.yaml @@ -55,7 +55,7 @@ spec: requireSsl: false sslMode: ENCRYPTED_ONLY # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/create.yaml index cec6784416..dbb164d52c 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/create.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/update.yaml index f9ebd875e6..fd00678b49 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal-direct/update.yaml @@ -23,7 +23,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/create.yaml index e13c15dd61..afe8468be5 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/create.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/update.yaml index aa93418ca3..32bb469bd5 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-postgres-minimal/update.yaml @@ -21,7 +21,7 @@ spec: region: us-central1 settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/create.yaml index 70cda5a903..32212f38e0 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/create.yaml @@ -29,7 +29,7 @@ spec: privateNetworkRef: name: computenetwork-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/update.yaml index 045bfd47a1..24c5b06247 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-direct/update.yaml @@ -29,7 +29,7 @@ spec: privateNetworkRef: name: computenetwork2-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/create.yaml index 4e7d330469..ada94a6f20 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/create.yaml @@ -30,7 +30,7 @@ spec: # Compute allows using selfLink as external external: https://www.googleapis.com/compute/v1/projects/${projectId}/global/networks/computenetwork-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/update.yaml index 1871adbb81..053fe0bd22 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref-direct/update.yaml @@ -30,7 +30,7 @@ spec: # Compute allows using selfLink as external external: https://www.googleapis.com/compute/v1/projects/${projectId}/global/networks/computenetwork2-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/create.yaml index 5f205a6da8..6d29376e07 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/create.yaml @@ -28,7 +28,7 @@ spec: # Compute allows using selfLink as external external: https://www.googleapis.com/compute/v1/projects/${projectId}/global/networks/computenetwork-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/update.yaml index 0e65daebcf..6fdbf1966b 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork-legacyref/update.yaml @@ -28,7 +28,7 @@ spec: # Compute allows using selfLink as external external: https://www.googleapis.com/compute/v1/projects/${projectId}/global/networks/computenetwork2-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/create.yaml index 5daba59302..6f767f3c77 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/create.yaml @@ -27,7 +27,7 @@ spec: privateNetworkRef: name: computenetwork-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/update.yaml index 911b7e96a4..6c09c3804c 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-privatenetwork/update.yaml @@ -27,7 +27,7 @@ spec: privateNetworkRef: name: computenetwork2-${uniqueId} # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/create.yaml index 5f7f240318..a454f181dd 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/create.yaml @@ -28,7 +28,7 @@ spec: failoverTarget: true settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/dependencies.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/dependencies.yaml index 8294b165d7..36751c7a5e 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/dependencies.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica-direct/dependencies.yaml @@ -26,7 +26,7 @@ spec: binaryLogEnabled: true enabled: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/create.yaml index 2c9f07b02b..456b0a0ae9 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/create.yaml @@ -26,7 +26,7 @@ spec: failoverTarget: true settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/dependencies.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/dependencies.yaml index 89d1b061eb..38c06c6fd2 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/dependencies.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-replica/dependencies.yaml @@ -24,7 +24,7 @@ spec: binaryLogEnabled: true enabled: true # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-direct/create.yaml index caf787a6e5..ee6d6db249 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-direct/create.yaml @@ -30,7 +30,7 @@ spec: settings: collation: SQL_Latin1_General_CP1_CI_AS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/create.yaml index 18ce2a63ec..6b70b3b1db 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/create.yaml @@ -29,7 +29,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/update.yaml index c4071cd17b..343052e7fe 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal-direct/update.yaml @@ -29,7 +29,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/create.yaml index 3d29046b45..8c04ecac9c 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/create.yaml @@ -27,7 +27,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/update.yaml index 0e1b08814a..e0f04980d1 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver-minimal/update.yaml @@ -27,7 +27,7 @@ spec: name: secret-${uniqueId} settings: # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver/create.yaml index 5b5f44424d..c9675e1921 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-sqlserver/create.yaml @@ -28,7 +28,7 @@ spec: settings: collation: SQL_Latin1_General_CP1_CI_AS # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/create.yaml index 5ad0f2da80..c6056d0afd 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/create.yaml @@ -29,7 +29,7 @@ spec: requireSsl: true sslMode: "TRUSTED_CLIENT_CERTIFICATE_REQUIRED" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/update.yaml index 76990da555..101ac6248b 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl-direct/update.yaml @@ -29,7 +29,7 @@ spec: requireSsl: false sslMode: ENCRYPTED_ONLY # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/create.yaml index 14c5643c9d..1603de0f80 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/create.yaml @@ -27,7 +27,7 @@ spec: requireSsl: true sslMode: "TRUSTED_CLIENT_CERTIFICATE_REQUIRED" # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/update.yaml index 8c8d47eef6..5cf30c3a03 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-ssl/update.yaml @@ -27,7 +27,7 @@ spec: requireSsl: false sslMode: ENCRYPTED_ONLY # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/create.yaml index 4e803865a6..d1ad2b8563 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/create.yaml @@ -26,7 +26,7 @@ spec: diskSize: 10 diskType: PD_SSD # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/update.yaml index 50fa5d0268..c05aab2fd2 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage-direct/update.yaml @@ -28,7 +28,7 @@ spec: # Disk type is immutable. diskType: PD_SSD # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/create.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/create.yaml index 08a261bc87..b01942982c 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/create.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/create.yaml @@ -24,7 +24,7 @@ spec: diskSize: 10 diskType: PD_SSD # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/update.yaml b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/update.yaml index b54cd8a0df..4f14a62b5d 100644 --- a/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/update.yaml +++ b/pkg/test/resourcefixture/testdata/basic/sql/v1beta1/sqlinstance/sqlinstance-storage/update.yaml @@ -26,7 +26,7 @@ spec: # Disk type is immutable. diskType: PD_SSD # Location preference is not actually a required field. However, setting it for tests - # helps with with normalizing the GCP responses, because otherwise GCP chooses a zone + # helps with normalizing the GCP responses, because otherwise GCP chooses a zone # preference based on availability. Therefore it could potentially vary if not # explicitly specified. locationPreference: diff --git a/pkg/test/webhook/configs.go b/pkg/test/webhook/configs.go index 3e56c83d9a..8d32d9ce0a 100644 --- a/pkg/test/webhook/configs.go +++ b/pkg/test/webhook/configs.go @@ -23,7 +23,7 @@ import ( func GetTestCommonWebhookConfigs() ([]webhook.Config, error) { whCfgs, err := webhook.GetCommonWebhookConfigs() if err != nil { - return nil, fmt.Errorf("error getting common wehbook configs: %w", err) + return nil, fmt.Errorf("error getting common webhook configs: %w", err) } res := make([]webhook.Config, 0) for _, config := range whCfgs { diff --git a/pkg/webhook/register.go b/pkg/webhook/register.go index 9892fb84c2..42fdee82bb 100644 --- a/pkg/webhook/register.go +++ b/pkg/webhook/register.go @@ -55,7 +55,7 @@ func RegisterCommonWebhooks(mgr manager.Manager, nocacheClient client.Client) er fmt.Println("starting up webhooks") whCfgs, err := GetCommonWebhookConfigs() if err != nil { - return fmt.Errorf("error getting common wehbook configs: %w", err) + return fmt.Errorf("error getting common webhook configs: %w", err) } return register( ValidatingWebhookConfigurationName,