Skip to content

Releases: crossplane-contrib/provider-upjet-gcp

v0.40.0

13 Dec 16:30
643628c
Compare
Choose a tag to compare

This release brings a change with how we interact with the underlying Terraform GCP provider. Instead of interfacing with Terraform via the TF CLI, the new implementation consumes the Terraform provider's Go provider schema and invokes the CRUD functions registered in that schema, and we no longer fork the underlying Terraform provider process.
For this reason, we removed the Terraform CLI from the provider package, and accordingly we also deprecated all the process-forking related command-line flags. The full list of the deprecated command-line flags is as follows:

  • --terraform-version
  • --terraform-provider-version
  • --terraform-native-provider-path
  • --terraform-provider-source
  • --provider-ttl

Using these flags will be non-functional and you will receive log messages similar to the following, if you pass any of these deprecated command-line flags to the provider.

warning: Command-line flag "terraform-version" is deprecated and no longer used. It will be removed in a future release. Please remove it from all of your configurations (ControllerConfigs, etc.).
warning: Command-line flag "terraform-provider-source" is deprecated and no longer used. It will be removed in a future release. Please remove it from all of your configurations (ControllerConfigs, etc.).
warning: Command-line flag "terraform-provider-version" is deprecated and no longer used. It will be removed in a future release. Please remove it from all of your configurations (ControllerConfigs, etc.).
warning: Command-line flag "provider-ttl" is deprecated and no longer used. It will be removed in a future release. Please remove it from all of your configurations (ControllerConfigs, etc.).

Our users are advised to remove any of these deprecated command-line flags from their configurations (ControllerConfigs, etc.) because the deprecated command-line flags will be removed in a future release of the provider.

What's Changed

  • Update alpine Docker tag to v3.18.5 by @renovate in #428
  • Update actions/setup-go action to v5 by @renovate in #430
  • Update alpine Docker tag to v3.19.0 by @renovate in #431
  • Use Terraform Plugin SDK to Reconcile MRs by @ulucinar in #424
  • Remove the Terraform CLI from the provider package and deprecate the relevant provider command-line flags by @ulucinar in #434

Full Changelog: v0.39.0...v0.40.0

v0.39.0

30 Nov 15:50
8c62362
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.38.1...v0.39.0

v0.38.1

02 Nov 17:45
96650c5
Compare
Choose a tag to compare

This release updates Crossplane Runtime to v1.14.1 which includes a fix in the retry mechanism while persisting the critical annotations.

What's Changed

  • [Backport release-0.38] Bump crossplane-runtime to v1.14.1 by @github-actions in #419

Full Changelog: v0.38.0...v0.38.1

v0.38.0

26 Oct 18:13
24e3a3f
Compare
Choose a tag to compare

What's Changed

  • Update alpine Docker tag to v3.18.4 by @renovate in #401
  • Bump build submodule to 2672eeb by @jastang in #408
  • Update actions/checkout digest to b4ffde6 by @renovate in #412
  • Add addons_config.gcs_fuse_csi_driver_config to ignore list for late-… by @djeremiah in #404
  • Add IP address(host) to secret for Instance.redis by @turkenf in #405
  • Update kubernetes patches by @renovate in #400
  • Replace upbound/upjet to crossplane/upjet by @turkenf in #415
  • Bump crossplane-runtime, upjet dependency and GMP promote to BETA by @turkenf in #414

Full Changelog: v0.37.0...v0.38.0

v0.37.0

29 Sep 09:28
cd2fe25
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.36.0...v0.37.0

v0.36.0

23 Aug 11:30
893f827
Compare
Choose a tag to compare

What's Changed

  • Fix the external-name configuration for the ProjectSink.logging resource by @ulucinar in #350
  • Change spec.owner in catalog-info.yaml by @Piotr1215 in #354
  • Add warning for monolithic provider to the docs by @turkenf in #356
  • Use spec.forProvider.project if it exists instead of the ProviderConfig's spec.projectID by @ulucinar in #352
  • Inherit golangci-lint version from build submodule by @ytsarev in #358
  • Fix panic on DatabaseInstance failing to create by @dzoeteman in #357
  • ci: scheduled trivy scan workflow by @phisco in #363
  • Bump upjet to commit bd528e443b6f by @ulucinar in #367
  • Bump upjet to commit e620c6228964 by @ulucinar in #368
  • Bump upjet to v0.10.0 by @ulucinar in #370

New Contributors

Full Changelog: v0.35.1...v0.36.0

v0.35.1

15 Aug 12:58
8a87ba6
Compare
Choose a tag to compare

This is a bugfix release addressing #275 and #351.

What's Changed

  • Use spec.forProvider.project if it exists instead of the ProviderConfig's spec.projectID by @ulucinar in #360

Full Changelog: v0.35.0...v0.35.1

v0.35.0

01 Aug 17:53
244c0ab
Compare
Choose a tag to compare

This release adds support for the spec.initProvider API and for the granular management policies alpha feature detailed here.

The generated example manifests from Terraform registry no longer contain the trailing YAML document separator (---).

The external client for Terraformed resources now explicitly requeue, up to 20 retries, a reconciliation request if a shared provider has expired. And only after 20 retries it propagates the error down to the managed reconciler. The ttl-expired error message has also been improved to hint at the --provider-ttl command-line option.

Also status updates and updates to certain annotations (crossplane.io/external-create-failed & crossplane.io/external-create-pending) no longer queue reconciliation requests, which decreases the resource utilization of upjet-based providers. This is especially important when errors happen during the external connecter's Create call, or in general, when an MR is failing to sync successfully.

Breaking API Changes

The API for the management policies alpha feature has a breaking change:

The old API of

spec:
  managmentPolicy: FullControl/ObserveOnly/OrphanOnDelete

is replaced by:

spec: 
  managementPolicies: ["*", "Observe", "Create", "Update", "LateInitialize", "Delete"]

After applying the updated provider, the spec.managementPolicy field will be removed automatically, and the spec.managementPolicies: ["*"] will be defaulted. This is equivalent to FullControl but for resources using ObserveOnly and OrphanOnDelete the it means that the behavior changes.

The suggested migration steps from spec.managementPolicy to spec.managementPolicies (if the alpha feature is being used) are:

  • Pause your resources using non-default management policies before upgrading the provider version
  • Noting down which ones those are (could be by adding labels managementPolicy: x )
  • Upgrading the provider version
  • Setting the desired management policies on the marked ones (those with label managementPolicy)

What's Changed

New Contributors

Full Changelog: v0.34.0...v0.35.0

v0.34.0

28 Jun 11:24
fcef583
Compare
Choose a tag to compare

What's Changed

  • Revert "Remove family label from the config provider for proper search indexing" by @ulucinar in #317
  • Add dependency to Crossplane min version of v1.12.1-0 by @ulucinar in #319
  • Adds the required field spec.projectID for ProviderConfig creation … by @jastang in #320
  • Scoped leader election by @stevendborrelli in #321
  • Remove version input from publish-service-artifacts.yml by @turkenf in #323

New Contributors

Full Changelog: v0.33.1...v0.34.0

v0.33.1

16 Jun 11:36
fcbf9f6
Compare
Choose a tag to compare

What's Changed

  • [Backport release-0.33] Revert "Remove family label from the config provider for proper search indexing" by @github-actions in #318
  • [Backport release-0.33] Adds the required field spec.projectID for ProviderConfig creation … by @github-actions in #322

Full Changelog: v0.33.0...v0.33.1