Bob Haddleton
Bob Haddleton
### What problem are you facing? When deleting a Crossplane Claim, the "--cascade=foreground" option to kubectl delete has no impact on the delete process. All Composite Resources get deleted immediately...
Signed-off-by: Bob Haddleton ### Description of your changes Modified composed.Render() to add the controller reference to the existing list of ownerReferences rather than replacing the existing references with the controller...
### What happened? The metadata.ownerReferences attribute of all composed objects is restricted to contain a single entry for the crossplane controlling resource: https://github.com/crossplane/crossplane/blob/master/internal/controller/apiextensions/composite/composed.go#L366 This eliminates the ability to represent multiple...
Signed-off-by: Bob Haddleton ### Description of your changes Add support for lifecycle hooks to the ControllerConfig resource Fixes #3084 I have: - [X] Read and followed Crossplane's [contribution process]. -...
### What problem are you facing? provider-terraform needs to be able to gracefully shutdown any running terraform commands when before the pod is terminated. This is needed to avoid locks...
I'm working on a VCRpy TransportAdapter plugin for HTTPie (https://httpie.org/) which will allow users to record REST API interactions using the http command line client. The work is basically done...
**Describe the bug** If a Consumer has no partitions assigned, it will eventually timeout and leave the consumer group, which means that it will not be available for assignment on...
This patch adds support for nested date and datetime objects when the schema only defines type: object with no further specification. The lack of anyOf support in Swagger2.0 and the...
The latest version of ctypesgen installs the executable as "ctypesgen" instead of "ctypesgen.py", so the cmake command fails to find it. This PR adds a check to see if ctypesgen.py...
Since ctypesgen 0.1.1 (now 1.0.0) it has installed as "ctypesgen" instead of "ctypesgen.py" so CMakeLists.txt can't find the executable. The fix is trivial: ``` FIND_PROGRAM(CTYPESGEN_FOUND ctypesgen.py) IF (NOT CTYPESGEN_FOUND) FIND_PROGRAM(CTYPESGEN_FOUND...