Migrating to 5.5
-
backupType
field is removed:
hazelcast:
persistence:
backupType:
If you are using this field in the version 5.4, you should not set it anymore in 5.5.
-
bucketURI
andsecret
fields are wrapped underbucketConfig
field.
After:
hazelcast:
persistence:
restore:
bucketConfig:
bucketURI:
secret:
-
schedule
field is removed fromHotBackup
.CronHotBackup
must be used instead.
Before:
apiVersion: hazelcast.com/v1alpha1
kind: HotBackup
metadata:
name: hot-backup
spec:
hazelcastResourceName: hazelcast
schedule: "* * * * *"
After:
apiVersion: hazelcast.com/v1alpha1
kind: CronHotBackup
metadata:
name: cronhotbackup
spec:
schedule: "* * * * *"
hotBackupTemplate:
metadata:
labels:
cron-hotbackup: "true"
spec:
hazelcastResourceName: hazelcast
-
mapResourceName
field is removed andresources
field is added to make it possible to specify multiple WAN Replication resources.