Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions postgresql.cnpg.io/backup_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@
],
"type": "object",
"additionalProperties": false
},
"useDefaultAzureCredentials": {
"description": "Use the default Azure authentication flow, which includes DefaultAzureCredential.\nThis allows authentication using environment variables and managed identities.",
"type": "boolean"
}
},
"type": "object",
Expand Down Expand Up @@ -303,6 +307,10 @@
"podName": {
"description": "The pod name",
"type": "string"
},
"sessionID": {
"description": "The instance manager session ID. This is a unique identifier generated at instance manager\nstartup and changes on every restart (including container reboots). Used to detect if\nthe instance manager was restarted during long-running operations like backups, which\nwould terminate any running backup process.",
"type": "string"
}
},
"type": "object",
Expand Down Expand Up @@ -331,6 +339,16 @@
"description": "A map containing the plugin metadata",
"type": "object"
},
"reconciliationStartedAt": {
"description": "When the backup process was started by the operator",
"format": "date-time",
"type": "string"
},
"reconciliationTerminatedAt": {
"description": "When the reconciliation was terminated by the operator (either successfully or not)",
"format": "date-time",
"type": "string"
},
"s3Credentials": {
"description": "The credentials to use to upload data to S3",
"properties": {
Expand Down Expand Up @@ -457,12 +475,12 @@
"additionalProperties": false
},
"startedAt": {
"description": "When the backup was started",
"description": "When the backup execution was started by the backup tool",
"format": "date-time",
"type": "string"
},
"stoppedAt": {
"description": "When the backup was terminated",
"description": "When the backup execution was terminated by the backup tool",
"format": "date-time",
"type": "string"
},
Expand Down
Loading