Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
feat: update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
robodexo2000[bot] committed Jun 28, 2024
1 parent 48b9790 commit 072cb1f
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions ceph.rook.io/cephcluster_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,23 @@
"name": {
"description": "Name is the name of the ceph manager module",
"type": "string"
},
"settings": {
"description": "Settings to further configure the module",
"properties": {
"balancerMode": {
"description": "BalancerMode sets the `balancer` module with different modes like `upmap`, `crush-compact` etc",
"enum": [
"",
"crush-compat",
"upmap",
"upmap-read"
],
"type": "string"
}
},
"type": "object",
"additionalProperties": false
}
},
"type": "object",
Expand Down Expand Up @@ -2562,6 +2579,13 @@
"description": "A spec for available storage in the cluster and how it should be used",
"nullable": true,
"properties": {
"backfillFullRatio": {
"description": "BackfillFullRatio is the ratio at which the cluster is too full for backfill. Backfill will be disabled if above this threshold. Default is 0.90.",
"maximum": 1,
"minimum": 0,
"nullable": true,
"type": "number"
},
"config": {
"additionalProperties": {
"type": "string"
Expand Down Expand Up @@ -2609,6 +2633,20 @@
"description": "FlappingRestartIntervalHours defines the time for which the OSD pods, that failed with zero exit code, will sleep before restarting.\nThis is needed for OSD flapping where OSD daemons are marked down more than 5 times in 600 seconds by Ceph.\nPreventing the OSD pods to restart immediately in such scenarios will prevent Rook from marking OSD as `up` and thus\npeering of the PGs mapped to the OSD.\nUser needs to manually restart the OSD pod if they manage to fix the underlying OSD flapping issue before the restart interval.\nThe sleep will be disabled if this interval is set to 0.",
"type": "integer"
},
"fullRatio": {
"description": "FullRatio is the ratio at which the cluster is considered full and ceph will stop accepting writes. Default is 0.95.",
"maximum": 1,
"minimum": 0,
"nullable": true,
"type": "number"
},
"nearFullRatio": {
"description": "NearFullRatio is the ratio at which the cluster is considered nearly full and will raise a ceph health warning. Default is 0.85.",
"maximum": 1,
"minimum": 0,
"nullable": true,
"type": "number"
},
"nodes": {
"items": {
"description": "Node is a storage nodes",
Expand Down
6 changes: 3 additions & 3 deletions externaldns.k8s.io/dnsendpoint_v1alpha1.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"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": {
Expand Down Expand Up @@ -52,7 +52,7 @@
"type": "integer"
},
"recordType": {
"description": "RecordType type of record, e.g. CNAME, A, SRV, TXT etc",
"description": "RecordType type of record, e.g. CNAME, A, AAAA, SRV, TXT etc",
"type": "string"
},
"setIdentifier": {
Expand Down

0 comments on commit 072cb1f

Please sign in to comment.