Skip to content

Commit

Permalink
Deployed f9763d5 to main 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 Apr 25, 2024
1 parent 9698019 commit 3757a4e
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 0 deletions.
58 changes: 58 additions & 0 deletions main/schema/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,45 @@
"title": "OutputTopicTypes",
"type": "string"
},
"PersistenceConfig": {
"description": "streams-bootstrap persistence configurations.\n\n:param enabled: Whether to use a persistent volume to store the state of the streams app.\n:param size: The size of the PersistentVolume to allocate to each streams pod in the StatefulSet.\n:param storage_class: Storage class to use for the persistent volume.",
"properties": {
"enabled": {
"default": false,
"description": "Whether to use a persistent volume to store the state of the streams app.\t",
"title": "Enabled",
"type": "boolean"
},
"size": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The size of the PersistentVolume to allocate to each streams pod in the StatefulSet.",
"title": "Size"
},
"storage_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Storage class to use for the persistent volume.",
"title": "Storage Class"
}
},
"title": "PersistenceConfig",
"type": "object"
},
"PipelineComponent": {
"additionalProperties": true,
"description": "Base class for all components.",
Expand Down Expand Up @@ -1248,6 +1287,25 @@
"description": "Helm chart name override, assigned automatically",
"title": "Nameoverride"
},
"persistence": {
"allOf": [
{
"$ref": "#/$defs/PersistenceConfig"
}
],
"default": {
"enabled": false,
"size": null,
"storage_class": null
},
"description": ""
},
"statefulSet": {
"default": false,
"description": "Whether to use a Statefulset instead of a Deployment to deploy the streams app.",
"title": "Statefulset",
"type": "boolean"
},
"streams": {
"allOf": [
{
Expand Down
58 changes: 58 additions & 0 deletions main/schema/pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,45 @@
"title": "OutputTopicTypes",
"type": "string"
},
"PersistenceConfig": {
"description": "streams-bootstrap persistence configurations.\n\n:param enabled: Whether to use a persistent volume to store the state of the streams app.\n:param size: The size of the PersistentVolume to allocate to each streams pod in the StatefulSet.\n:param storage_class: Storage class to use for the persistent volume.",
"properties": {
"enabled": {
"default": false,
"description": "Whether to use a persistent volume to store the state of the streams app.\t",
"title": "Enabled",
"type": "boolean"
},
"size": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The size of the PersistentVolume to allocate to each streams pod in the StatefulSet.",
"title": "Size"
},
"storage_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Storage class to use for the persistent volume.",
"title": "Storage Class"
}
},
"title": "PersistenceConfig",
"type": "object"
},
"ProducerApp": {
"additionalProperties": true,
"description": "Producer component.\nThis producer holds configuration to use as values for the streams-bootstrap producer Helm chart. Note that the producer does not support error topics.",
Expand Down Expand Up @@ -916,6 +955,25 @@
"description": "Helm chart name override, assigned automatically",
"title": "Nameoverride"
},
"persistence": {
"allOf": [
{
"$ref": "#/$defs/PersistenceConfig"
}
],
"default": {
"enabled": false,
"size": null,
"storage_class": null
},
"description": ""
},
"statefulSet": {
"default": false,
"description": "Whether to use a Statefulset instead of a Deployment to deploy the streams app.",
"title": "Statefulset",
"type": "boolean"
},
"streams": {
"allOf": [
{
Expand Down
Binary file modified main/sitemap.xml.gz
Binary file not shown.

0 comments on commit 3757a4e

Please sign in to comment.