Skip to content

Commit

Permalink
Deployed 67f17fa to dev with MkDocs 1.5.3 and mike 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bakdata-bot committed Oct 24, 2024
1 parent 1a47a30 commit 235472b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 56 deletions.
33 changes: 5 additions & 28 deletions dev/schema/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -1688,8 +1688,8 @@
"title": "RepoAuthFlags",
"type": "object"
},
"ResourceLimits": {
"description": "Model representing the 'limits' section of Kubernetes resource specifications.",
"ResourceDefinition": {
"description": "Model representing the 'limits' or `request` section of Kubernetes resource specifications.",
"properties": {
"cpu": {
"anyOf": [
Expand All @@ -1714,30 +1714,7 @@
"cpu",
"memory"
],
"title": "ResourceLimits",
"type": "object"
},
"ResourceRequests": {
"description": "Model representing the 'requests' section of Kubernetes resource specifications.",
"properties": {
"cpu": {
"description": "The minimum amount of CPU requested for the container, expressed in milli CPUs (e.g., '100m').",
"pattern": "^\\d+m$",
"title": "Cpu",
"type": "string"
},
"memory": {
"description": "The minimum amount of memory requested for the container, with valid units such as 'Mi' or 'Gi' (e.g., '500Mi').",
"pattern": "^\\d+[KMGi]+$",
"title": "Memory",
"type": "string"
}
},
"required": [
"cpu",
"memory"
],
"title": "ResourceRequests",
"title": "ResourceDefinition",
"type": "object"
},
"Resources": {
Expand All @@ -1746,15 +1723,15 @@
"limits": {
"allOf": [
{
"$ref": "#/$defs/ResourceLimits"
"$ref": "#/$defs/ResourceDefinition"
}
],
"description": "The maximum resource limits for the container."
},
"requests": {
"allOf": [
{
"$ref": "#/$defs/ResourceRequests"
"$ref": "#/$defs/ResourceDefinition"
}
],
"description": "The minimum resource requirements for the container."
Expand Down
33 changes: 5 additions & 28 deletions dev/schema/pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -1348,8 +1348,8 @@
"title": "RepoAuthFlags",
"type": "object"
},
"ResourceLimits": {
"description": "Model representing the 'limits' section of Kubernetes resource specifications.",
"ResourceDefinition": {
"description": "Model representing the 'limits' or `request` section of Kubernetes resource specifications.",
"properties": {
"cpu": {
"anyOf": [
Expand All @@ -1374,30 +1374,7 @@
"cpu",
"memory"
],
"title": "ResourceLimits",
"type": "object"
},
"ResourceRequests": {
"description": "Model representing the 'requests' section of Kubernetes resource specifications.",
"properties": {
"cpu": {
"description": "The minimum amount of CPU requested for the container, expressed in milli CPUs (e.g., '100m').",
"pattern": "^\\d+m$",
"title": "Cpu",
"type": "string"
},
"memory": {
"description": "The minimum amount of memory requested for the container, with valid units such as 'Mi' or 'Gi' (e.g., '500Mi').",
"pattern": "^\\d+[KMGi]+$",
"title": "Memory",
"type": "string"
}
},
"required": [
"cpu",
"memory"
],
"title": "ResourceRequests",
"title": "ResourceDefinition",
"type": "object"
},
"Resources": {
Expand All @@ -1406,15 +1383,15 @@
"limits": {
"allOf": [
{
"$ref": "#/$defs/ResourceLimits"
"$ref": "#/$defs/ResourceDefinition"
}
],
"description": "The maximum resource limits for the container."
},
"requests": {
"allOf": [
{
"$ref": "#/$defs/ResourceRequests"
"$ref": "#/$defs/ResourceDefinition"
}
],
"description": "The minimum resource requirements for the container."
Expand Down
Binary file modified dev/sitemap.xml.gz
Binary file not shown.

0 comments on commit 235472b

Please sign in to comment.