@@ -42,6 +42,7 @@ const (
4242 ConditionTypeTerminated ConditionType = "Terminated"
4343 // ConditionTypeAutoUpgrade indicates that the member has to be started with `--database.auto-upgrade` once.
4444 ConditionTypeAutoUpgrade ConditionType = "AutoUpgrade"
45+
4546 // ConditionTypeCleanedOut indicates that the member (dbserver) has been cleaned out.
4647 // Always check in combination with ConditionTypeTerminated.
4748 ConditionTypeCleanedOut ConditionType = "CleanedOut"
@@ -51,16 +52,9 @@ const (
5152 ConditionTypeAgentRecoveryNeeded ConditionType = "AgentRecoveryNeeded"
5253 // ConditionTypePodSchedulingFailure indicates that one or more pods belonging to the deployment cannot be schedule.
5354 ConditionTypePodSchedulingFailure ConditionType = "PodSchedulingFailure"
54- // ConditionTypeSecretsChanged indicates that the value of one of more secrets used by
55- // the deployment have changed. Once that is the case, the operator will no longer
56- // touch the deployment, until the original secrets have been restored.
57- ConditionTypeSecretsChanged ConditionType = "SecretsChanged"
5855 // ConditionTypeMemberOfCluster indicates that the member is a known member of the ArangoDB cluster.
5956 ConditionTypeMemberOfCluster ConditionType = "MemberOfCluster"
60- // ConditionTypeBootstrapCompleted indicates that the initial cluster bootstrap has been completed.
61- ConditionTypeBootstrapCompleted ConditionType = "BootstrapCompleted"
62- // ConditionTypeBootstrapSucceded indicates that the initial cluster bootstrap completed successfully.
63- ConditionTypeBootstrapSucceded ConditionType = "BootstrapSucceded"
57+
6458 // ConditionTypeTerminating indicates that the member is terminating but not yet terminated.
6559 ConditionTypeTerminating ConditionType = "Terminating"
6660 // ConditionTypeTerminating indicates that the deployment is up to date.
@@ -69,20 +63,25 @@ const (
6963 ConditionTypeMarkedToRemove ConditionType = "MarkedToRemove"
7064 // ConditionTypeUpgradeFailed indicates that upgrade failed
7165 ConditionTypeUpgradeFailed ConditionType = "UpgradeFailed"
66+
7267 // ConditionTypeMaintenanceMode indicates that Maintenance is enabled
7368 ConditionTypeMaintenanceMode ConditionType = "MaintenanceMode"
69+
7470 // ConditionTypePendingRestart indicates that restart is required
7571 ConditionTypePendingRestart ConditionType = "PendingRestart"
7672 // ConditionTypeRestart indicates that restart will be started
7773 ConditionTypeRestart ConditionType = "Restart"
74+
7875 // ConditionTypePendingTLSRotation indicates that TLS rotation is pending
7976 ConditionTypePendingTLSRotation ConditionType = "PendingTLSRotation"
77+
8078 // ConditionTypePendingUpdate indicates that runtime update is pending
8179 ConditionTypePendingUpdate ConditionType = "PendingUpdate"
8280 // ConditionTypeUpdating indicates that runtime update is in progress
8381 ConditionTypeUpdating ConditionType = "Updating"
8482 // ConditionTypeUpdateFailed indicates that runtime update failed
8583 ConditionTypeUpdateFailed ConditionType = "UpdateFailed"
84+
8685 // ConditionTypeTopologyAware indicates that the member is deployed with TopologyAwareness.
8786 ConditionTypeTopologyAware ConditionType = "TopologyAware"
8887)
0 commit comments