Documentation
¶
Overview ¶
Package status contains all the function needed to interact properly with the resources status
Index ¶
- func FlagBackupAsFailed(ctx context.Context, cli client.Client, backup *apiv1.Backup, ...) error
- func PatchConditionsWithOptimisticLock(ctx context.Context, c client.Client, cluster *apiv1.Cluster, ...) error
- func PatchWithOptimisticLock(ctx context.Context, c client.Client, cluster *apiv1.Cluster, ...) error
- func SetClusterReadyCondition(cluster *apiv1.Cluster)
- type BackupTransaction
- type Transaction
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FlagBackupAsFailed ¶ added in v1.25.3
func FlagBackupAsFailed( ctx context.Context, cli client.Client, backup *apiv1.Backup, cluster *apiv1.Cluster, err error, transactions ...BackupTransaction, ) error
FlagBackupAsFailed updates the status of a Backup object to indicate that it has failed.
func PatchConditionsWithOptimisticLock ¶ added in v1.23.6
func PatchConditionsWithOptimisticLock( ctx context.Context, c client.Client, cluster *apiv1.Cluster, conditions ...metav1.Condition, ) error
PatchConditionsWithOptimisticLock will update a particular condition in cluster status. This function may update the conditions in the passed cluster with the latest ones that were found from the API server. This function is needed because Kubernetes still doesn't support strategic merge for CRDs (see https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/).
func PatchWithOptimisticLock ¶ added in v1.23.6
func PatchWithOptimisticLock( ctx context.Context, c client.Client, cluster *apiv1.Cluster, txs ...Transaction, ) error
PatchWithOptimisticLock updates the status of the cluster using the passed transaction functions (in the given order). Important: after successfully updating the status, this function refreshes it into the passed cluster
func SetClusterReadyCondition ¶ added in v1.26.0
SetClusterReadyCondition updates the cluster's readiness condition according to the cluster phase
Types ¶
type BackupTransaction ¶ added in v1.25.3
BackupTransaction is a function that modifies a Backup object.
type Transaction ¶ added in v1.26.0
Transaction is a function that modifies a cluster
func SetImage ¶ added in v1.26.0
func SetImage(image string) Transaction
SetImage is a transaction that sets the cluster image
func SetPGDataImageInfo ¶ added in v1.26.0
func SetPGDataImageInfo(imageInfo *apiv1.ImageInfo) Transaction
SetPGDataImageInfo is a transaction that sets the PGDataImageInfo
func SetPhase ¶ added in v1.26.0
func SetPhase(phase string, reason string) Transaction
SetPhase is a transaction that sets the cluster phase and reason