Open rzetelskik opened 2 months ago
The Scylla Operator project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
/lifecycle stale
The Scylla Operator project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
/lifecycle rotten
/remove-lifecycle rotten /triage accepted
AggregateStatusConditions
helper func can produce invalid conditions. There are two reasons:condition.Reason
is constructed by concatenating Type and Reason of aggregated conditions: https://github.com/scylladb/scylla-operator/blob/fe5d18cafb48ec111add7d30df99103f63ce20f3/pkg/controllerhelpers/core.go#L64 Validcondition.Type
needs to match(dns1123SubdomainFmt/)?(qualifiedNameFmt)
. Validcondition.Reason
must be a CamelCase string. A valid Type does not always pass Reason's validation, e.g.Node_gke-so-331fe2c9-c118-489f-890-default-dfaf2fab-vb36_Progressing
is a valid Type, but not a valid Reason./kind bug