@@ -19,14 +19,14 @@ package v1beta2
1919const SourceFinalizer = "finalizers.fluxcd.io"
2020
2121const (
22- // ArtifactUnavailableCondition indicates there is no Artifact available for the Source.
23- // This is a "negative polarity" or "abnormal-true" type, and is only present on the resource if it is True.
24- ArtifactUnavailableCondition string = "ArtifactUnavailable"
25-
2622 // ArtifactOutdatedCondition indicates the current Artifact of the Source is outdated.
2723 // This is a "negative polarity" or "abnormal-true" type, and is only present on the resource if it is True.
2824 ArtifactOutdatedCondition string = "ArtifactOutdated"
2925
26+ // SourceVerifiedCondition indicates the integrity of the Source has been verified. If True, the integrity check
27+ // succeeded. If False, it failed. The Condition is only present on the resource if the integrity has been verified.
28+ SourceVerifiedCondition string = "SourceVerified"
29+
3030 // FetchFailedCondition indicates a transient or persistent fetch failure of an upstream Source.
3131 // If True, observations on the upstream Source revision may be impossible, and the Artifact available for the
3232 // Source may be outdated.
@@ -48,8 +48,4 @@ const (
4848 // AuthenticationFailedReason represents the fact that a given secret does not
4949 // have the required fields or the provided credentials do not match.
5050 AuthenticationFailedReason string = "AuthenticationFailed"
51-
52- // VerificationFailedReason represents the fact that the cryptographic
53- // provenance verification for the source failed.
54- VerificationFailedReason string = "VerificationFailed"
5551)
0 commit comments