-
Notifications
You must be signed in to change notification settings - Fork 5.3k
add Kubernetes AI Conformance working group #8515
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
Changes from 23 commits
3ed496b
e35c899
00be35b
5c82784
65f7742
e051457
de92136
c509fa4
485c874
dc732ff
de0879b
bd87281
1337cdf
68cf397
f9bd39f
b40ac01
6f6829b
a9f7a36
f779005
63c405b
46222ad
d027965
0192d9c
f2b35f2
6ccf781
6f97c87
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3526,6 +3526,48 @@ sigs: | |
- https://raw.githubusercontent.com/kubernetes-sigs/sig-windows-dev-tools/master/OWNERS | ||
- https://raw.githubusercontent.com/kubernetes-sigs/sig-windows-tools/master/OWNERS | ||
workinggroups: | ||
- dir: wg-ai-conformance | ||
name: AI Conformance | ||
mission_statement: > | ||
The goal of this group is to define a standardized set of capabilities, APIs, | ||
and configurations that a Kubernetes cluster must offer to reliably and efficiently | ||
run AI/ML workloads. | ||
|
||
charter_link: charter.md | ||
stakeholder_sigs: | ||
- Architecture | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe this should list the same SIGs that are listed as stakeholders in your charter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, so does everybody agree to list only: SIG Architecture and SIG Testing for now? Please let me know so I can make the change and get this merged asap to start meeting There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 as SIG Testing TL. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 as SIG Arch Chair |
||
- Testing | ||
label: ai-conformance | ||
leadership: | ||
chairs: | ||
- github: janetkuo | ||
name: Janet Kuo | ||
company: Google | ||
email: chiachenk@google.com | ||
- github: mfahlandt | ||
name: Mario Fahlandt | ||
company: Kubermatic GmbH | ||
email: mfahlandt@pixel-haufen.de | ||
- github: ritazh | ||
name: Rita Zhang | ||
company: Microsoft | ||
email: ritazh@microsoft.com | ||
- github: terrytangyuan | ||
name: Yuan Tang | ||
company: Red Hat | ||
email: terrytangyuan@gmail.com | ||
meetings: | ||
- description: Regular WG Meeting | ||
day: Thursday | ||
time: "10:00" | ||
tz: PT (Pacific Time) | ||
frequency: weekly | ||
contact: | ||
slack: wg-ai-conformance | ||
mailing_list: https://groups.google.com/a/kubernetes.io/g/wg-ai-conformance | ||
mfahlandt marked this conversation as resolved.
Show resolved
Hide resolved
mfahlandt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
liaison: | ||
github: pohly | ||
name: Patrick Ohly | ||
- dir: wg-batch | ||
name: Batch | ||
mission_statement: > | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# See the OWNERS docs at https://go.k8s.io/owners | ||
|
||
reviewers: | ||
- wg-ai-conformance-leads | ||
approvers: | ||
- wg-ai-conformance-leads | ||
labels: | ||
- wg/ai-conformance |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# WG Kubernetes AI Conformance Charter | ||
|
||
This charter adheres to the conventions described in the [Kubernetes Charter README] and uses | ||
the Roles and Organization Management outlined in [sig-governance]. | ||
|
||
## Scope | ||
|
||
The goal of this group is to define a standardized set of capabilities, APIs, and configurations that a Kubernetes cluster must offer to reliably and efficiently run AI/ML workloads. This initiative aims to simplify AI/ML operations on Kubernetes, accelerate adoption, guarantee interoperability and portability for AI workloads, and enable ecosystem growth on an industry-standard foundation. | ||
|
||
### In scope | ||
|
||
#### Code, Binaries and Services | ||
|
||
- The primary artifact will be the (working title for now) "CNCF Kubernetes AI Conformance" specification and support for the creation of a suite of tests to demonstrate conformance. | ||
|
||
#### Cross-cutting and Externally Facing Processes | ||
|
||
- The Working Group will consider its primary problem-solving objective complete upon the successful definition and adoption of a stable (working title for now) "CNCF Kubernetes AI Conformance" specification. | ||
- The first Version will not include any tests in the Kubernetes Codebase and will be a self assessment questionnaire | ||
- Once the initial conformance is established and widely recognized, the ongoing maintenance and evolution of the conformance will be evaluated. Including determining a suitable SIG for Code Organization, Ownership and Architecture and support to create the initial suite of tests. | ||
After the Ownership is clarified and handed over, the WG dissolves. | ||
|
||
### Out of scope | ||
|
||
This WG is not responsible for maintenance and evolution of the conformance program, which will be run by the CNCF. Some aspects may be owned by existing SIGs (e.g. Architecture, Testing) alongside the CNCF, such as Kubernetes specific definitions, testing and tooling, and the pre-existing Kubernetes conformance definition and tests. | ||
|
||
## Roles and Organization Management | ||
|
||
This WG follows adheres to the Roles and Organization Management outlined in [sig-governance] | ||
and opts-in to updates and modifications to [sig-governance]. | ||
|
||
### Additional responsibilities of Chairs | ||
|
||
- The Working Group will have designated Chair(s) responsible for guiding discussions and ensuring progress. | ||
- A note-taker will be assigned for each meeting, and active participation from all contributors will be encouraged. | ||
- Agendas and meeting notes will be publicly accessible. | ||
|
||
### Stakeholder SIGs | ||
|
||
- SIG Architecture (Sponsoring SIG) | ||
fedebongio marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- SIG Testing | ||
|
||
|
||
[sig-governance]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md | ||
[Kubernetes Charter README]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md |
Uh oh!
There was an error while loading. Please reload this page.