Skip to content

Commit

Permalink
Adding k8up CRD (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdinten authored Aug 2, 2024
1 parent 5fbed05 commit bd0ce09
Show file tree
Hide file tree
Showing 9 changed files with 23,013 additions and 0 deletions.
1,026 changes: 1,026 additions & 0 deletions k8up.io/archive_v1.json

Large diffs are not rendered by default.

893 changes: 893 additions & 0 deletions k8up.io/backup_v1.json

Large diffs are not rendered by default.

882 changes: 882 additions & 0 deletions k8up.io/check_v1.json

Large diffs are not rendered by default.

6,563 changes: 6,563 additions & 0 deletions k8up.io/podconfig_v1.json

Large diffs are not rendered by default.

6,566 changes: 6,566 additions & 0 deletions k8up.io/prebackuppod_v1.json

Large diffs are not rendered by default.

923 changes: 923 additions & 0 deletions k8up.io/prune_v1.json

Large diffs are not rendered by default.

1,026 changes: 1,026 additions & 0 deletions k8up.io/restore_v1.json

Large diffs are not rendered by default.

5,090 changes: 5,090 additions & 0 deletions k8up.io/schedule_v1.json

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions k8up.io/snapshot_v1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"description": "Snapshot is the Schema for the snapshots API",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"description": "SnapshotSpec contains all information needed about a restic snapshot so it\ncan be restored.",
"properties": {
"date": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"paths": {
"items": {
"type": "string"
},
"type": "array"
},
"repository": {
"type": "string"
}
},
"type": "object",
"additionalProperties": false
},
"status": {
"description": "SnapshotStatus defines the observed state of Snapshot",
"type": "object"
}
},
"type": "object"
}

0 comments on commit bd0ce09

Please sign in to comment.