Skip to content

Commit

Permalink
Running 'make schema-generate'
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
  • Loading branch information
matzew committed Nov 2, 2023
1 parent 2b18aae commit 1f685de
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions schema/func_yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@
"serviceAccountName": {
"type": "string",
"description": "ServiceAccountName is the name of the service account used for the\nfunction pod. The service account must exist in the namespace to\nsucceed.\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/"
},
"subscriptions": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/KnativeSubscription"
},
"type": "array"
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -219,6 +226,27 @@
"type": "object",
"description": "HealthEndpoints specify the liveness and readiness endpoints for a Runtime"
},
"KnativeSubscription": {
"required": [
"source"
],
"properties": {
"source": {
"type": "string"
},
"filters": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object",
"description": "KnativeSubscription"
},
"Label": {
"required": [
"key"
Expand Down

0 comments on commit 1f685de

Please sign in to comment.