Skip to content

Commit

Permalink
Deployed d37e5e6 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 22, 2024
1 parent ef07eea commit 77b73b6
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 2 deletions.
130 changes: 129 additions & 1 deletion dev/schema/defaults.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"$defs": {
"Effects": {
"enum": [
"NoExecute",
"NoSchedule",
"PreferNoSchedule"
],
"title": "Effects",
"type": "string"
},
"FromSection": {
"additionalProperties": false,
"description": "Holds multiple input topics.",
Expand Down Expand Up @@ -210,7 +219,7 @@
"type": "object"
},
"ImagePullPolicy": {
"description": "Represents the different Kubernetes image pull policies.",
"description": "Represents the different Kubernetes image pull policies.\n\nhttps://kubernetes.io/docs/concepts/containers/images/#image-pull-policy",
"enum": [
"Always",
"IfNotPresent",
Expand Down Expand Up @@ -792,6 +801,14 @@
"title": "KubernetesAppValues",
"type": "object"
},
"Operation": {
"enum": [
"Exists",
"Equal"
],
"title": "Operation",
"type": "string"
},
"OutputTopicTypes": {
"description": "Types of output topic.\n\n- OUTPUT: output topic\n- ERROR: error topic",
"enum": [
Expand Down Expand Up @@ -1223,6 +1240,17 @@
"default": "Always",
"description": "Docker image pull policy."
},
"imagePullSecret": {
"description": "Secrets to be used for private registries.",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Imagepullsecret",
"type": "array"
},
"imageTag": {
"default": "latest",
"description": "Docker image tag of the streams-bootstrap app.",
Expand Down Expand Up @@ -1375,6 +1403,14 @@
"title": "Suspend",
"type": "boolean"
},
"tolerations": {
"description": "Array containing taint references. When defined, pods can run on nodes, which would otherwise deny scheduling.",
"items": {
"$ref": "#/$defs/Tolerations"
},
"title": "Tolerations",
"type": "array"
},
"ttlSecondsAfterFinished": {
"default": 100,
"description": "See https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/#ttl-after-finished-controller",
Expand Down Expand Up @@ -2087,6 +2123,17 @@
"default": "Always",
"description": "Docker image pull policy."
},
"imagePullSecret": {
"description": "Secrets to be used for private registries.",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Imagepullsecret",
"type": "array"
},
"imageTag": {
"default": "latest",
"description": "Docker image tag of the streams-bootstrap app.",
Expand Down Expand Up @@ -2245,6 +2292,14 @@
"description": "Delay for graceful application shutdown in seconds: https://pracucci.com/graceful-shutdown-of-kubernetes-pods.html",
"title": "Terminationgraceperiodseconds",
"type": "integer"
},
"tolerations": {
"description": "Array containing taint references. When defined, pods can run on nodes, which would otherwise deny scheduling.",
"items": {
"$ref": "#/$defs/Tolerations"
},
"title": "Tolerations",
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -2526,6 +2581,17 @@
"default": "Always",
"description": "Docker image pull policy."
},
"imagePullSecret": {
"description": "Secrets to be used for private registries.",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Imagepullsecret",
"type": "array"
},
"imageTag": {
"default": "latest",
"description": "Docker image tag of the streams-bootstrap app.",
Expand Down Expand Up @@ -2643,6 +2709,14 @@
}
],
"description": ""
},
"tolerations": {
"description": "Array containing taint references. When defined, pods can run on nodes, which would otherwise deny scheduling.",
"items": {
"$ref": "#/$defs/Tolerations"
},
"title": "Tolerations",
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -2678,6 +2752,60 @@
"title": "ToSection",
"type": "object"
},
"Tolerations": {
"description": "Represents the different Kubernetes tolerations.\n\nhttps://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/\n\n:param key: The key that the toleration applies to.\n:param operator: The operator ('Exists' or 'Equal').\n:param value: The value to match for the key.\n:param effect: The effect to tolerate.\n:param toleration_seconds: The duration for which the toleration is valid.",
"properties": {
"effect": {
"$ref": "#/$defs/Effects"
},
"key": {
"description": "The key that the toleration applies to.",
"title": "Key",
"type": "string"
},
"operator": {
"allOf": [
{
"$ref": "#/$defs/Operation"
}
],
"default": "Equal",
"description": "The operator ('Exists' or 'Equal')."
},
"toleration_seconds": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "The duration for which the toleration is valid.",
"title": "Toleration Seconds"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The value to match for the key.",
"title": "Value"
}
},
"required": [
"key",
"effect"
],
"title": "Tolerations",
"type": "object"
},
"TopicConfig": {
"additionalProperties": false,
"description": "Configure an output topic.",
Expand Down
111 changes: 110 additions & 1 deletion dev/schema/pipeline.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"$defs": {
"Effects": {
"enum": [
"NoExecute",
"NoSchedule",
"PreferNoSchedule"
],
"title": "Effects",
"type": "string"
},
"FromSection": {
"additionalProperties": false,
"description": "Holds multiple input topics.",
Expand Down Expand Up @@ -210,7 +219,7 @@
"type": "object"
},
"ImagePullPolicy": {
"description": "Represents the different Kubernetes image pull policies.",
"description": "Represents the different Kubernetes image pull policies.\n\nhttps://kubernetes.io/docs/concepts/containers/images/#image-pull-policy",
"enum": [
"Always",
"IfNotPresent",
Expand Down Expand Up @@ -499,6 +508,14 @@
"title": "KafkaSourceConnector",
"type": "object"
},
"Operation": {
"enum": [
"Exists",
"Equal"
],
"title": "Operation",
"type": "string"
},
"OutputTopicTypes": {
"description": "Types of output topic.\n\n- OUTPUT: output topic\n- ERROR: error topic",
"enum": [
Expand Down Expand Up @@ -883,6 +900,17 @@
"default": "Always",
"description": "Docker image pull policy."
},
"imagePullSecret": {
"description": "Secrets to be used for private registries.",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Imagepullsecret",
"type": "array"
},
"imageTag": {
"default": "latest",
"description": "Docker image tag of the streams-bootstrap app.",
Expand Down Expand Up @@ -1035,6 +1063,14 @@
"title": "Suspend",
"type": "boolean"
},
"tolerations": {
"description": "Array containing taint references. When defined, pods can run on nodes, which would otherwise deny scheduling.",
"items": {
"$ref": "#/$defs/Tolerations"
},
"title": "Tolerations",
"type": "array"
},
"ttlSecondsAfterFinished": {
"default": 100,
"description": "See https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/#ttl-after-finished-controller",
Expand Down Expand Up @@ -1747,6 +1783,17 @@
"default": "Always",
"description": "Docker image pull policy."
},
"imagePullSecret": {
"description": "Secrets to be used for private registries.",
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Imagepullsecret",
"type": "array"
},
"imageTag": {
"default": "latest",
"description": "Docker image tag of the streams-bootstrap app.",
Expand Down Expand Up @@ -1905,6 +1952,14 @@
"description": "Delay for graceful application shutdown in seconds: https://pracucci.com/graceful-shutdown-of-kubernetes-pods.html",
"title": "Terminationgraceperiodseconds",
"type": "integer"
},
"tolerations": {
"description": "Array containing taint references. When defined, pods can run on nodes, which would otherwise deny scheduling.",
"items": {
"$ref": "#/$defs/Tolerations"
},
"title": "Tolerations",
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -1940,6 +1995,60 @@
"title": "ToSection",
"type": "object"
},
"Tolerations": {
"description": "Represents the different Kubernetes tolerations.\n\nhttps://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/\n\n:param key: The key that the toleration applies to.\n:param operator: The operator ('Exists' or 'Equal').\n:param value: The value to match for the key.\n:param effect: The effect to tolerate.\n:param toleration_seconds: The duration for which the toleration is valid.",
"properties": {
"effect": {
"$ref": "#/$defs/Effects"
},
"key": {
"description": "The key that the toleration applies to.",
"title": "Key",
"type": "string"
},
"operator": {
"allOf": [
{
"$ref": "#/$defs/Operation"
}
],
"default": "Equal",
"description": "The operator ('Exists' or 'Equal')."
},
"toleration_seconds": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "The duration for which the toleration is valid.",
"title": "Toleration Seconds"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The value to match for the key.",
"title": "Value"
}
},
"required": [
"key",
"effect"
],
"title": "Tolerations",
"type": "object"
},
"TopicConfig": {
"additionalProperties": false,
"description": "Configure an output topic.",
Expand Down
Binary file modified dev/sitemap.xml.gz
Binary file not shown.

0 comments on commit 77b73b6

Please sign in to comment.