Merge pull request #363 from jeanduplessis/fix_362

This commit is contained in:
Jean du Plessis 2023-02-19 09:12:48 +02:00 committed by GitHub
commit 27b83f8bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -652,7 +652,7 @@ apiVersion: test.com/v1alpha1
kind: MyResource
metadata:
annotations:
crossplane.io/paused: true
crossplane.io/paused: "true"
namespace: upbound-system
name: my-resource
spec:
@ -671,7 +671,7 @@ the status `False`, and the reason `ReconcilePaused` is emitted
on the resource.
Please also note that annotations on a Composite Resource Claim are propagated
to the associated Composite Resource but when the
`crossplane.io/paused: true` annotation is added to a Claim, because
`crossplane.io/paused: "true"` annotation is added to a Claim, because
reconciliations on the Claim are now paused, this newly added annotation
will not be propagated. However, whenever the annotation's value is set to a
non-`true` value, reconciliations on the Claim will now resume, and thus the

View File

@ -394,7 +394,7 @@ apiVersion: test.com/v1alpha1
kind: MyResource
metadata:
annotations:
crossplane.io/paused: true
crossplane.io/paused: "true"
namespace: upbound-system
name: my-resource
spec:
@ -413,7 +413,7 @@ the status `False`, and the reason `ReconcilePaused` is emitted
on the resource.
Please also note that annotations on a Composite Resource Claim are propagated
to the associated Composite Resource but when the
`crossplane.io/paused: true` annotation is added to a Claim, because
`crossplane.io/paused: "true"` annotation is added to a Claim, because
reconciliations on the Claim are now paused, this newly added annotation
will not be propagated. However, whenever the annotation's value is set to a
non-`true` value, reconciliations on the Claim will now resume, and thus the

View File

@ -653,7 +653,7 @@ apiVersion: test.com/v1alpha1
kind: MyResource
metadata:
annotations:
crossplane.io/paused: true
crossplane.io/paused: "true"
namespace: upbound-system
name: my-resource
spec:
@ -672,7 +672,7 @@ the status `False`, and the reason `ReconcilePaused` is emitted
on the resource.
Please also note that annotations on a Composite Resource Claim are propagated
to the associated Composite Resource but when the
`crossplane.io/paused: true` annotation is added to a Claim, because
`crossplane.io/paused: "true"` annotation is added to a Claim, because
reconciliations on the Claim are now paused, this newly added annotation
will not be propagated. However, whenever the annotation's value is set to a
non-`true` value, reconciliations on the Claim will now resume, and thus the