Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: regenerated missing field in event model #5027

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 20 additions & 18 deletions api/v1/testkube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5883,10 +5883,10 @@ components:
type: string
format: date-time
description: Timestamp of log
example: "2018-03-20T09:12:28Z"
example: "2018-03-20T09:12:28Z"
content:
type: string
description: Message/event data passed from executor (like log lines etc)
description: Message/event data passed from executor (like log lines etc)
type:
type: string
description: One of possible log types
Expand All @@ -5900,7 +5900,7 @@ components:
- job-executor
error:
type: boolean
description: indicates a log error
description: indicates a log error
version:
type: string
description: One of possible log versions
Expand All @@ -5917,7 +5917,7 @@ components:
v1:
$ref: "#/components/schemas/LogV1"
description: Old output - for backwards compatibility - will be removed for non-structured logs

LogV1:
description: Log format version 1
type: object
Expand Down Expand Up @@ -6213,7 +6213,7 @@ components:
properties:
logsV2:
type: boolean
description: Log processing version 2
description: Log processing version 2

TestTrigger:
type: object
Expand Down Expand Up @@ -7256,9 +7256,10 @@ components:
description: The key to select.
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
description:
"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind,
uid?'
uid?"
type: string
optional:
description: Specify whether the ConfigMap or its
Expand All @@ -7268,11 +7269,11 @@ components:
type: object
required:
- fieldPath
description: 'Selects a field of the pod: supports metadata.name,
metadata.namespace, `metadata.labels[''<KEY>'']`,
`metadata.annotations[''<KEY>'']`, spec.nodeName,
description: "Selects a field of the pod: supports metadata.name,
metadata.namespace, `metadata.labels['<KEY>']`,
`metadata.annotations['<KEY>']`, spec.nodeName,
spec.serviceAccountName, status.hostIP, status.podIP,
status.podIPs.'
status.podIPs."
properties:
apiVersion:
description: Version of the schema the FieldPath
Expand All @@ -7286,20 +7287,20 @@ components:
type: object
required:
- resource
description: 'Selects a resource of the container: only
description: "Selects a resource of the container: only
resources limits and requests (limits.cpu, limits.memory,
limits.ephemeral-storage, requests.cpu, requests.memory
and requests.ephemeral-storage) are currently supported.'
and requests.ephemeral-storage) are currently supported."
properties:
containerName:
description: 'Container name: required for volumes,
optional for env vars'
description: "Container name: required for volumes,
optional for env vars"
type: string
divisor:
type: string
pattern: "^[0-9]+(m|[GMK]i)$"
resource:
description: 'Required: resource to select'
description: "Required: resource to select"
type: string
secretKeyRef:
type: object
Expand All @@ -7313,9 +7314,10 @@ components:
be a valid secret key.
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
description:
"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind,
uid?'
uid?"
type: string
optional:
description: Specify whether the Secret or its key
Expand Down
Loading