Nic Cope
Nic Cope
### What problem are you facing? Currently this provider calls `terraform plan` during the observe phase, then `terraform apply` during the following phase (i.e. create, update, or delete). This means...
### What problem are you facing? Terraform behaves differently from Crossplane in that when asked to change an immutable field Terraform will do so by first deleting then recreating the...
I just updated to the latest commit (919e70103f7a7068ebccb991e24836f2933529fd) because I wanted to use the new `type:"filecontent"` feature (thank you!). It works as expected, but I notice in the help output...
I'd like to have a log.zig logFn that I could use to emit debug logs over USB, rather than UART. Currently Microzig has support for acting as a USB HID...
### What problem are you facing? In a CEL or Python function you'd write for example today: * `observed.composite.resource` * `desired.resources['name'].resource` * `observed.resources['name'].resource` * `extra_resources['group-name'][0].resource` I think `observed.composite.resource` reads really...
### Description of your changes Fixes https://github.com/crossplane/crossplane/issues/5424 Also, jitter the poll interval +/- 10%. Realtime compositions will eliminate the need for this, but it should help XRs become ready sooner...
### What problem are you facing? Many Crossplane concepts involve layers of API abstractions. For example: * Claim -> XR -> MRs * Provider - > ProviderRevision When Crossplane encounters...
### What problem are you facing? Most core Crossplane reconcilers use an [`Applicator`](https://pkg.go.dev/github.com/crossplane/[email protected]/pkg/resource#Applicator) to create and update resources in the API server. For example, we use an `Applicator` to keep...
### What problem are you facing? Crossplane has three kinds of packages: Providers, Functions and Configurations. Packages serve the following purposes: * Installing software that extends Crossplane (i.e. provider and...
### What problem are you facing? Crossplane has three kinds of package: Providers, Functions, and Configurations. The common theme is that these packages extend Crossplane with new capabilities: * A...