Open alexvanolst opened 6 months ago
Please check these behaviors: https://github.com/Altinity/clickhouse-operator/blob/bbbf66a8e0fbbcf36b787a63eceeaca37e0ec272/config/config.yaml#L256
Try to modify
update:
onFailure: rollback
to
update:
onFailure: abort
rollback needs to be checked
@sunsingerus
I checked this with
update:
onFailure: abort
and I still get the exact same behavior. After ~15mins it continues.
Operator version: 0.23.5
Adding an invalid label to a
podtemplate
, eventually causes the operator to delete all statefulsets during reconciliation, regardless of settings.I have the following settings:
After adding an invalid label to
spec.templates.podTemplates[0].metadata.label
e.g.some_bad_label: '/metrics'
the operator tries to recreate the statefulsets but encounters the following error:My expected behavior is: After failing to create the statefulset the operator either aborts or rolls back
Actual behavior: After some time period, the operator moves to the next statefulset until all are deleted (and not recreated due to error)