You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The _neo4j/neo4j-admin_ Helm chart installs a cronjob that launches a pod based on the job schedule. This pod performs a backup of the database, a consistency check of the backup file, and uploads both to the cloud provider bucket.
199
+
The _neo4j/neo4j-admin_ Helm chart installs a cronjob that launches a pod based on the job schedule. This pod performs a backup of one or multiple databases, a consistency check of the backup file(s), and uploads them to the cloud provider bucket.
199
200
200
201
. Monitor the backup pod logs using `kubectl logs pod/<neo4j-backup-pod-name>` to check the progress of the backup.
201
-
. Check that the backup file and the consistency check report have been uploaded to the cloud provider bucket.
202
+
. Check that the backup files and the consistency check reports have been uploaded to the cloud provider bucket.
202
203
203
204
[[kubernetes-neo4j-backup-parameters]]
204
205
=== Backup parameters
@@ -224,7 +225,7 @@ disableLookups: false
224
225
225
226
neo4j:
226
227
image: "neo4j/helm-charts-backup"
227
-
imageTag: "5.8.0"
228
+
imageTag: "5.10.0"
228
229
podLabels: {}
229
230
# app: "demo"
230
231
# acac: "dcdddc"
@@ -237,7 +238,7 @@ neo4j:
237
238
successfulJobsHistoryLimit:
238
239
# default is 1
239
240
failedJobsHistoryLimit:
240
-
# default is 1
241
+
# default is 3
241
242
backoffLimit:
242
243
#add labels if required
243
244
labels: {}
@@ -269,7 +270,8 @@ backup:
269
270
#default value is cluster.local
270
271
databaseClusterDomain: ""
271
272
272
-
#name of the database to backup ex: neo4j (command separated databases names WILL NOT WORK)
273
+
#name of the database to backup ex: neo4j or neo4j,system (You can provide command separated database names)
274
+
# In case of comma separated databases failure of any single database will lead to failure of complete operation
273
275
database: ""
274
276
# cloudProvider can be either gcp, aws, or azure
275
277
cloudProvider: ""
@@ -320,6 +322,10 @@ consistencyCheck:
320
322
checkGraph: true
321
323
checkCounts: true
322
324
checkPropertyOwners: true
325
+
#The database name for which consistency check needs to be done.
326
+
#Defaults to the backup.database values if left empty
327
+
#The database name here should match with one of the database names present in backup.database. If not , the consistency check will be ignored
0 commit comments