@@ -551,7 +551,9 @@ spec:
551
551
- name
552
552
type: object
553
553
summary:
554
- description: Summary holds a short description of the impact and affected cluster.
554
+ description: |-
555
+ Summary holds a short description of the impact and affected cluster.
556
+ Deprecated: Use EventMetadata instead.
555
557
maxLength: 255
556
558
type: string
557
559
suspend:
@@ -1640,11 +1642,12 @@ spec:
1640
1642
type: string
1641
1643
provider:
1642
1644
description: |-
1643
- Provider used for authentication, can be 'azure', 'generic'.
1645
+ Provider used for authentication, can be 'azure', 'github', ' generic'.
1644
1646
When not specified, defaults to 'generic'.
1645
1647
enum:
1646
1648
- generic
1647
1649
- azure
1650
+ - github
1648
1651
type: string
1649
1652
proxySecretRef:
1650
1653
description: |-
@@ -4093,6 +4096,11 @@ spec:
4093
4096
DisableSchemaValidation prevents the Helm install action from validating
4094
4097
the values against the JSON Schema.
4095
4098
type: boolean
4099
+ disableTakeOwnership:
4100
+ description: |-
4101
+ DisableTakeOwnership disables taking ownership of existing resources
4102
+ during the Helm install action. Defaults to false.
4103
+ type: boolean
4096
4104
disableWait:
4097
4105
description: |-
4098
4106
DisableWait disables the waiting for resources to be ready after a Helm
@@ -4489,6 +4497,11 @@ spec:
4489
4497
DisableSchemaValidation prevents the Helm upgrade action from validating
4490
4498
the values against the JSON Schema.
4491
4499
type: boolean
4500
+ disableTakeOwnership:
4501
+ description: |-
4502
+ DisableTakeOwnership disables taking ownership of existing resources
4503
+ during the Helm upgrade action. Defaults to false.
4504
+ type: boolean
4492
4505
disableWait:
4493
4506
description: |-
4494
4507
DisableWait disables the waiting for resources to be ready after a Helm
@@ -9461,6 +9474,13 @@ spec:
9461
9474
MessageTemplate provides a template for the commit message,
9462
9475
into which will be interpolated the details of the change made.
9463
9476
type: string
9477
+ messageTemplateValues:
9478
+ additionalProperties:
9479
+ type: string
9480
+ description: |-
9481
+ MessageTemplateValues provides additional values to be available to the
9482
+ templating rendering.
9483
+ type: object
9464
9484
signingKey:
9465
9485
description: SigningKey provides the option to sign commits with a GPG key
9466
9486
properties:
@@ -9839,6 +9859,17 @@ spec:
9839
9859
required:
9840
9860
- provider
9841
9861
type: object
9862
+ deletionPolicy:
9863
+ description: |-
9864
+ DeletionPolicy can be used to control garbage collection when this
9865
+ Kustomization is deleted. Valid values are ('MirrorPrune', 'Delete',
9866
+ 'Orphan'). 'MirrorPrune' mirrors the Prune field (orphan if false,
9867
+ delete if true). Defaults to 'MirrorPrune'.
9868
+ enum:
9869
+ - MirrorPrune
9870
+ - Delete
9871
+ - Orphan
9872
+ type: string
9842
9873
dependsOn:
9843
9874
description: |-
9844
9875
DependsOn may contain a meta.NamespacedObjectReference slice
@@ -9865,6 +9896,41 @@ spec:
9865
9896
Force instructs the controller to recreate resources
9866
9897
when patching fails due to an immutable field change.
9867
9898
type: boolean
9899
+ healthCheckExprs:
9900
+ description: |-
9901
+ HealthCheckExprs is a list of healthcheck expressions for evaluating the
9902
+ health of custom resources using Common Expression Language (CEL).
9903
+ The expressions are evaluated only when Wait or HealthChecks are specified.
9904
+ items:
9905
+ description: CustomHealthCheck defines the health check for custom resources.
9906
+ properties:
9907
+ apiVersion:
9908
+ description: APIVersion of the custom resource under evaluation.
9909
+ type: string
9910
+ current:
9911
+ description: |-
9912
+ Current is the CEL expression that determines if the status
9913
+ of the custom resource has reached the desired state.
9914
+ type: string
9915
+ failed:
9916
+ description: |-
9917
+ Failed is the CEL expression that determines if the status
9918
+ of the custom resource has failed to reach the desired state.
9919
+ type: string
9920
+ inProgress:
9921
+ description: |-
9922
+ InProgress is the CEL expression that determines if the status
9923
+ of the custom resource has not yet reached the desired state.
9924
+ type: string
9925
+ kind:
9926
+ description: Kind of the custom resource under evaluation.
9927
+ type: string
9928
+ required:
9929
+ - apiVersion
9930
+ - current
9931
+ - kind
9932
+ type: object
9933
+ type: array
9868
9934
healthChecks:
9869
9935
description: A list of resources to be included in the health assessment.
9870
9936
items:
@@ -10237,6 +10303,14 @@ spec:
10237
10303
required:
10238
10304
- entries
10239
10305
type: object
10306
+ lastAppliedOriginRevision:
10307
+ description: |-
10308
+ The last successfully applied origin revision.
10309
+ Equals the origin revision of the applied Artifact from the referenced Source.
10310
+ Usually present on the Metadata of the applied Artifact and depends on the
10311
+ Source type, e.g. for OCI it's the value associated with the key
10312
+ "org.opencontainers.image.revision".
10313
+ type: string
10240
10314
lastAppliedRevision:
10241
10315
description: |-
10242
10316
The last successfully applied revision.
@@ -12426,6 +12500,16 @@ spec:
12426
12500
description: Interval at which to reconcile the Receiver with its Secret references.
12427
12501
pattern: ^([0-9]+(\.[0-9]+)?(ms|s|m|h))+$
12428
12502
type: string
12503
+ resourceFilter:
12504
+ description: |-
12505
+ ResourceFilter is a CEL expression expected to return a boolean that is
12506
+ evaluated for each resource referenced in the Resources field when a
12507
+ webhook is received. If the expression returns false then the controller
12508
+ will not request a reconciliation for the resource.
12509
+ When the expression is specified the controller will parse it and mark
12510
+ the object as terminally failed if the expression is invalid or does not
12511
+ return a boolean.
12512
+ type: string
12429
12513
resources:
12430
12514
description: A list of resources to be notified about changes.
12431
12515
items:
0 commit comments