Skip to content

feat: Remove time offset from kube events api #846

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11137,20 +11137,20 @@ paths:
- in: query
name: from_date_time
description: |
The start date time to fetch events from, following ISO-8601 format.
The `+` character must be escaped (`%2B`)
The start date time to fetch events from in UTC, following ISO-8601 format.
The microseconds part can be ignored.
required: true
example: '2025-03-03T09:00:00+00:00'
example: '2025-03-03T09:00:00Z'
schema:
type: string
nullable: false
- in: query
name: to_date_time
description: |
The end date time to fetch events from, following ISO-8601 format.
The `+` character must be escaped (`%2B`)
The end date time to fetch events from in UTC, following ISO-8601 format.
The microseconds part can be ignored.
required: true
example: '2025-03-03T03:00:00+00:00'
example: '2025-03-03T03:00:00Z'
schema:
type: string
nullable: false
Expand Down
Loading