From 3821b98e2c2036e09fcd985ccf8e35ebd3fc89ce Mon Sep 17 00:00:00 2001
From: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
Date: Wed, 24 Jan 2024 11:58:00 -0800
Subject: [PATCH] Clean up inactive working groups
---
OWNERS_ALIASES | 6 --
generator/app.go | 1 +
generator/list.tmpl | 8 +-
generator/sig_readme.tmpl | 9 ++
generator/ug_readme.tmpl | 9 ++
generator/wg_readme.tmpl | 9 ++
sig-feature-store/README.md | 9 +-
sig-onprem/README.md | 9 +-
wg-deployment/README.md | 9 +-
wg-list.md | 12 +--
wg-manifests/README.md | 8 +-
wg-notebooks/README.md | 11 +--
wg-pipelines/README.md | 4 +-
wg-serving/README.md | 9 +-
wg-training/README.md | 6 +-
wgs.yaml | 171 +++++-------------------------------
16 files changed, 93 insertions(+), 197 deletions(-)
diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES
index a8d22ae4e..8dede75ca 100644
--- a/OWNERS_ALIASES
+++ b/OWNERS_ALIASES
@@ -17,17 +17,11 @@ aliases:
- vpavlin
- yanniszark
wg-manifests-leads:
- - PatrickXYS
- StefanoFioravanzo
- - elikatsis
- kimwnasptd
- - yanniszark
wg-notebooks-leads:
- - StefanoFioravanzo
- - elikatsis
- kimwnasptd
- thesuperzapper
- - yanniszark
wg-pipelines-leads:
- animeshsingh
- chensun
diff --git a/generator/app.go b/generator/app.go
index e973f3098..31d8a5ed3 100644
--- a/generator/app.go
+++ b/generator/app.go
@@ -149,6 +149,7 @@ func (g *LeadershipGroup) Owners() []Person {
type Group struct {
Dir string
Name string
+ Inactive bool `yaml:"inactive,omitempty"`
MissionStatement FoldedString `yaml:"mission_statement,omitempty"`
CharterLink string `yaml:"charter_link,omitempty"`
StakeholderSIGs []string `yaml:"stakeholder_sigs,omitempty"`
diff --git a/generator/list.tmpl b/generator/list.tmpl
index 3c2e57a76..992005792 100644
--- a/generator/list.tmpl
+++ b/generator/list.tmpl
@@ -15,7 +15,8 @@ When the need arises, a [new WG can be created](wgs/wg-lifecycle.md)
| Name | Label | Chairs | Contact | Meetings |
|------|-------|--------|---------|----------|
-{{- range .WorkingGroups}}
+{{- range .WorkingGroups }}
+{{- if not .Inactive }}
|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leadership.Chairs}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubeflow.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{- range .Meetings -}}
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})
{{- end -}}
@@ -26,12 +27,14 @@ When the need arises, a [new WG can be created](wgs/wg-lifecycle.md)
{{- end -}}
{{- end -}}
{{- end }}
+{{- end }}
### Special Interest Group List
| Name | Label | Chairs | Contact | Meetings |
|------|-------|--------|---------|----------|
-{{- range .Sigs}}
+{{- range .Sigs }}
+{{- if not .Inactive }}
|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leadership.Chairs}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubeflow.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{- range .Meetings -}}
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})
{{- end -}}
@@ -42,3 +45,4 @@ When the need arises, a [new WG can be created](wgs/wg-lifecycle.md)
{{- end -}}
{{- end -}}
{{- end }}
+{{- end }}
diff --git a/generator/sig_readme.tmpl b/generator/sig_readme.tmpl
index ea2df8938..779255399 100644
--- a/generator/sig_readme.tmpl
+++ b/generator/sig_readme.tmpl
@@ -1,6 +1,15 @@
{{- template "header" }}
# {{.Name}} Special Interest Group
+{{- if .Inactive }}
+
+
+⚠️This Special Interest Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
+{{- end }}
+
{{ .MissionStatement }}
{{- if .CharterLink }}
The [charter]({{.CharterLink}}) defines the scope and governance of the {{.Name}} Special Interest Group.
diff --git a/generator/ug_readme.tmpl b/generator/ug_readme.tmpl
index c01289945..ad64eda41 100644
--- a/generator/ug_readme.tmpl
+++ b/generator/ug_readme.tmpl
@@ -1,6 +1,15 @@
{{- template "header" }}
# {{.Name}} User Group
+{{- if .Inactive }}
+
+
+⚠️This User Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
+{{- end }}
+
{{ .MissionStatement }}
{{- if .CharterLink }}
The [charter]({{.CharterLink}}) defines the scope and governance of the {{.Name}} User Group.
diff --git a/generator/wg_readme.tmpl b/generator/wg_readme.tmpl
index 583fc59e1..cae35a634 100644
--- a/generator/wg_readme.tmpl
+++ b/generator/wg_readme.tmpl
@@ -1,6 +1,15 @@
{{- template "header" }}
# {{.Name}} Working Group
+{{- if .Inactive }}
+
+
+⚠️This Working Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
+{{- end }}
+
{{ .MissionStatement }}
{{- if .CharterLink }}
The [charter]({{.CharterLink}}) defines the scope and governance of the {{.Name}} Working Group.
diff --git a/sig-feature-store/README.md b/sig-feature-store/README.md
index cc429d0a9..7721cdd0e 100644
--- a/sig-feature-store/README.md
+++ b/sig-feature-store/README.md
@@ -8,13 +8,16 @@ To understand how this file is generated, see https://github.com/kubeflow/commun
--->
# Feature Store Special Interest Group
+
+⚠️This Special Interest Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
SIG Feature Store covers the definition, management, storage, discovery, and serving of features to models.
The [charter](charter.md) defines the scope and governance of the Feature Store Special Interest Group.
-## Meetings
-* Monthly SIG Meeting: [Wednesdays at 18:00 PT (Pacific Time)]() (monthly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://docs.google.com/document/d/1h2BMuN6V6cGFQrSRk7msmYVmZdrouLRV_EPR_tphZrU/edit#).
+
## Leadership
diff --git a/sig-onprem/README.md b/sig-onprem/README.md
index d1941f5b9..0e121840a 100644
--- a/sig-onprem/README.md
+++ b/sig-onprem/README.md
@@ -8,13 +8,16 @@ To understand how this file is generated, see https://github.com/kubeflow/commun
--->
# OnPrem Special Interest Group
+
+⚠️This Special Interest Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
Serve as a community resource for advising with on premises installation of Kubeflow.
The [charter](charter.md) defines the scope and governance of the OnPrem Special Interest Group.
-## Meetings
-* SIG Onprem Community Meeting - (US East/EMEA): [Thursdays at 10:30 ET (Eastern Time)](https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=10:30&tz=ET%20%28Eastern%20Time%29).
-* SIG Onprem Community Meeting - (US West): [Fridays at 15:00 ET (Eastern Time)](https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=ET%20%28Eastern%20Time%29).
+
## Leadership
diff --git a/wg-deployment/README.md b/wg-deployment/README.md
index cc6dc4e4b..06becb331 100644
--- a/wg-deployment/README.md
+++ b/wg-deployment/README.md
@@ -8,13 +8,16 @@ To understand how this file is generated, see https://github.com/kubeflow/commun
--->
# Deployment Working Group
+
+⚠️This Working Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
WG Deployment covers developing, maintaining artifacts to deploy and operate Kubeflow.
The [charter](charter.md) defines the scope and governance of the Deployment Working Group.
-## Meetings
-* Regular WG Meeting (Pacific PM): [Wednesdays at 17:30 PT (Pacific Time)]() (biweekly - every other Wednesday). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](http://bit.ly/kf-meeting-notes).
+
## Organizers
diff --git a/wg-list.md b/wg-list.md
index 63f6276e0..43cfe7cb5 100644
--- a/wg-list.md
+++ b/wg-list.md
@@ -23,19 +23,15 @@ When the need arises, a [new WG can be created](wgs/wg-lifecycle.md)
| Name | Label | Chairs | Contact | Meetings |
|------|-------|--------|---------|----------|
|[AutoML](wg-automl/README.md)|area/wg-automl|* [Andrey Velichkevich](https://github.com/andreyvelich), Apple
* [Ce Gao](https://github.com/gaocegege), Caicloud
* [Johnu George](https://github.com/johnugeorge), Nutanix
|* [Slack](https://kubeflow.slack.com/messages/wg-automl)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Kubeflow AutoML Working Group Meeting (Asia & Europe friendly): [Wednesdays at 11:00am UTC (Coordinated Universal Time) (every 4 weeks on Wednesday from the 10th of March 2021)](https://calendar.google.com/calendar/u/0/r?cid=ZDQ5bnNpZWZzbmZna2Y5MW8wdThoMmpoazRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ)
* Kubeflow AutoML Working Group Meeting (US friendly): [Wednesdays at 5:00pm UTC (Coordinated Universal Time) (every 4 weeks on Wednesday from the 24th of March 2021)](https://calendar.google.com/calendar/u/0/r?cid=ZDQ5bnNpZWZzbmZna2Y5MW8wdThoMmpoazRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ)
-|[Deployment](wg-deployment/README.md)|area/wg-deployment|* [Yao Xiao](https://github.com/PatrickXYS), AWS
* [Animesh Singh](https://github.com/animeshsingh), IBM
* [Igor Mameshin](https://github.com/mameshini), Agile Stacks
* [Vaclav Pavlin](https://github.com/vpavlin), Red Hat
* [Yannis Zarkadas](https://github.com/yanniszark), Arrikto
|* [Slack](https://kubeflow.slack.com/messages/wg-deployment)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Regular WG Meeting (Pacific PM): [Wednesdays at 17:30 PT (Pacific Time) (biweekly - every other Wednesday)]()
-|[Manifests](wg-manifests/README.md)|area/wg-manifests|* [Yao Xiao](https://github.com/PatrickXYS), AWS
* [Kimonas Sotirchos](https://github.com/kimwnasptd), Arrikto
* [Yannis Zarkadas](https://github.com/yanniszark), Arrikto
|* [Slack](https://kubeflow.slack.com/messages/wg-manifests)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Regular WG Meeting (Pacific AM): [Tuesdays at 08:00 PT (Pacific Time) (biweekly - every other Tuesday)]()
-|[Notebooks](wg-notebooks/README.md)|area/wg-notebooks|* [Stefano Fioravanzo](https://github.com/StefanoFioravanzo), Arrikto
* [Ilias Katsakioris](https://github.com/elikatsis), Arrikto
* [Kimonas Sotirchos](https://github.com/kimwnasptd), Arrikto
* [Mathew Wicks](https://github.com/thesuperzapper)
* [Yannis Zarkadas](https://github.com/yanniszark), Arrikto
|* [Slack](https://kubeflow.slack.com/messages/wg-notebooks)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Regular Notebooks Meeting (Australia & Europe friendly): [Thursdays at 11:00 pm PT (Pacific Time) (weekly)]()
-|[Pipelines](wg-pipelines/README.md)|area/wg-pipelines|* [James Wu](https://github.com/james-jwu), Google
* [Karthik Ramachandran](https://github.com/kramachandran), Google
* [Pavel Dournov](https://github.com/paveldournov), Google
|* [Slack](https://kubeflow.slack.com/messages/)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|
-|[Serving](wg-serving/README.md)|area/wg-serving|* [Animesh Singh](https://github.com/animeshsingh), IBM
* [Clive Cox](https://github.com/cliveseldon), Seldon
* [Ellis Tarn](https://github.com/ellistarn), AWS
* [Rakesh Kalekar](https://github.com/rakelkar), Microsoft
* [Dan Sun](https://github.com/yuzisun), Bloomberg
|* [Slack](https://kubeflow.slack.com/messages/kfserving)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Regular WG Meeting: [Wednesdays at 09:00 PT (Pacific Time) (biweekly)]()
-|[Training](wg-training/README.md)|area/wg-training|* [Ce Gao](https://github.com/gaocegege), Caicloud
* [Johnu George](https://github.com/johnugeorge), Nutanix
* [Yuan Tang](https://github.com/terrytangyuan), Red Hat
|* [Slack](https://kubeflow.slack.com/messages/wg-training)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Regular WG Meeting (Asia & Europe friendly): [Wednesdays at 03:00 PT (Pacific Time) (monthly - first Wednesday every month)]()
* Regular WG Meeting (US friendly): [Wednesdays at 10:00 PT (Pacific Time) (monthly - third Wednesday every month)]()
+|[Manifests](wg-manifests/README.md)|area/wg-manifests|* [Kimonas Sotirchos](https://github.com/kimwnasptd), Canonical
|* [Slack](https://kubeflow.slack.com/messages/wg-manifests)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|
+|[Notebooks](wg-notebooks/README.md)|area/wg-notebooks|* [Kimonas Sotirchos](https://github.com/kimwnasptd), Canonical
* [Mathew Wicks](https://github.com/thesuperzapper)
|* [Slack](https://kubeflow.slack.com/messages/wg-notebooks)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|
+|[Pipelines](wg-pipelines/README.md)|area/wg-pipelines|* [James Wu](https://github.com/james-jwu), Google
* [Karthik Ramachandran](https://github.com/kramachandran), Google
* [Pavel Dournov](https://github.com/paveldournov), Google
|* [Slack](https://kubeflow.slack.com/messages/kubeflow-pipelines)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|
+|[Training](wg-training/README.md)|area/wg-training|* [Ce Gao](https://github.com/gaocegege), Caicloud
* [Johnu George](https://github.com/johnugeorge), Nutanix
* [Yuan Tang](https://github.com/terrytangyuan), Red Hat
|* [Slack](https://kubeflow.slack.com/messages/wg-training)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|
### Special Interest Group List
| Name | Label | Chairs | Contact | Meetings |
|------|-------|--------|---------|----------|
-|[Feature Store](sig-feature-store/README.md)|area/sig-feature-store|* [Kevin Stumpf](https://github.com/kevinstumpf)
* [Oleksii Moskalenko](https://github.com/pyalex), Gojek
* [Willem Pienaar](https://github.com/woop), Gojek
|* [Slack](https://kubeflow.slack.com/messages/feast)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* Monthly SIG Meeting: [Wednesdays at 18:00 PT (Pacific Time) (monthly)]()
-|[OnPrem](sig-onprem/README.md)|area/sig-onprem|* [Jeff Fogarty](https://github.com/jtfogarty), US Bank
|* [Slack](https://kubeflow.slack.com/messages/sig-onprem)
* [Mailing List](https://groups.google.com/forum/#!forum/kubeflow-discuss)|* SIG Onprem Community Meeting - (US East/EMEA): [Thursdays at 10:30 ET (Eastern Time) (biweekly)](https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09)
* SIG Onprem Community Meeting - (US West): [Fridays at 15:00 ET (Eastern Time) (biweekly)](https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09)
diff --git a/wg-manifests/README.md b/wg-manifests/README.md
index 6b6f0b56a..a4f49d946 100644
--- a/wg-manifests/README.md
+++ b/wg-manifests/README.md
@@ -12,15 +12,11 @@ WG Manifests maintains a centralized repository of manifests.
The [charter](charter.md) defines the scope and governance of the Manifests Working Group.
-## Meetings
-* Regular WG Meeting (Pacific AM): [Tuesdays at 08:00 PT (Pacific Time)]() (biweekly - every other Tuesday). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=08:00&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://arrik.to/kf-wg-manifests-notes).
+
## Organizers
-* Yao Xiao (**[@PatrickXYS](https://github.com/PatrickXYS)**), AWS
-* Kimonas Sotirchos (**[@kimwnasptd](https://github.com/kimwnasptd)**), Arrikto
-* Yannis Zarkadas (**[@yanniszark](https://github.com/yanniszark)**), Arrikto
+* Kimonas Sotirchos (**[@kimwnasptd](https://github.com/kimwnasptd)**), Canonical
## Contact
- Slack: [#wg-manifests](https://kubeflow.slack.com/messages/wg-manifests)
diff --git a/wg-notebooks/README.md b/wg-notebooks/README.md
index f96f33d8a..b73f5162f 100644
--- a/wg-notebooks/README.md
+++ b/wg-notebooks/README.md
@@ -8,21 +8,16 @@ To understand how this file is generated, see https://github.com/kubeflow/commun
--->
# Notebooks Working Group
-WG Notebooks is responsible for the user experience around Notebooks and their integrations with Kubeflow.
+WG Notebooks is responsible for Kubeflow Notebooks and other core components.
The [charter](charter.md) defines the scope and governance of the Notebooks Working Group.
-## Meetings
-* Regular Notebooks Meeting (Australia & Europe friendly): [Thursdays at 11:00 pm PT (Pacific Time)]() (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00 pm&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://arrik.to/kf-wg-notebooks-notes).
+
## Organizers
-* Stefano Fioravanzo (**[@StefanoFioravanzo](https://github.com/StefanoFioravanzo)**), Arrikto
-* Ilias Katsakioris (**[@elikatsis](https://github.com/elikatsis)**), Arrikto
-* Kimonas Sotirchos (**[@kimwnasptd](https://github.com/kimwnasptd)**), Arrikto
+* Kimonas Sotirchos (**[@kimwnasptd](https://github.com/kimwnasptd)**), Canonical
* Mathew Wicks (**[@thesuperzapper](https://github.com/thesuperzapper)**)
-* Yannis Zarkadas (**[@yanniszark](https://github.com/yanniszark)**), Arrikto
## Contact
- Slack: [#wg-notebooks](https://kubeflow.slack.com/messages/wg-notebooks)
diff --git a/wg-pipelines/README.md b/wg-pipelines/README.md
index e57a29d1c..8d6956f9b 100644
--- a/wg-pipelines/README.md
+++ b/wg-pipelines/README.md
@@ -18,10 +18,10 @@ The [charter](charter.md) defines the scope and governance of the Pipelines Work
* James Wu (**[@james-jwu](https://github.com/james-jwu)**), Google
* Karthik Ramachandran (**[@kramachandran](https://github.com/kramachandran)**), Google
-* Chen Sun (**[@chensun](https://github.com/chensun)**), Google
+* Pavel Dournov (**[@paveldournov](https://github.com/paveldournov)**), Google
## Contact
-- Slack: [#kubeflow-pipelines](https://app.slack.com/client/T7QLHSH6U/CE10KS9M4)
+- Slack: [#kubeflow-pipelines](https://kubeflow.slack.com/messages/kubeflow-pipelines)
- [Mailing list](https://groups.google.com/forum/#!forum/kubeflow-discuss)
- [Open Community Issues/PRs](https://github.com/kubeflow/community/labels/wg%2Farea/wg-pipelines)
- GitHub Teams:
diff --git a/wg-serving/README.md b/wg-serving/README.md
index 85f7ba8f8..1591948d8 100644
--- a/wg-serving/README.md
+++ b/wg-serving/README.md
@@ -8,13 +8,16 @@ To understand how this file is generated, see https://github.com/kubeflow/commun
--->
# Serving Working Group
+
+⚠️This Working Group is INACTIVE ⚠️
+The following information is for historical purposes only.
+
+
WG Serving covers developing, deploying, and operating serving jobs on Kubeflow.
The [charter](charter.md) defines the scope and governance of the Serving Working Group.
-## Meetings
-* Regular WG Meeting: [Wednesdays at 09:00 PT (Pacific Time)]() (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=09:00&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://docs.google.com/document/d/1KZUURwr9MnHXqHA08TFbfVbM8EAJSJjmaMhnvstvi-k/edit).
+
## Organizers
diff --git a/wg-training/README.md b/wg-training/README.md
index 2c9010da1..2ef86d01e 100644
--- a/wg-training/README.md
+++ b/wg-training/README.md
@@ -12,11 +12,7 @@ WG Training covers developing, deploying, and operating training jobs on Kubeflo
The [charter](charter.md) defines the scope and governance of the Training Working Group.
-## Meetings
-* Regular WG Meeting (Asia & Europe friendly): [Wednesdays at 03:00 PT (Pacific Time)]() (monthly - first Wednesday every month). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=03:00&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://docs.google.com/document/d/1K0Qfr0zTuARtAg7ETg9hsMZPh0MT2QUxqGAYvM1Vpec/edit).
-* Regular WG Meeting (US friendly): [Wednesdays at 10:00 PT (Pacific Time)]() (monthly - third Wednesday every month). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=10:00&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://docs.google.com/document/d/1K0Qfr0zTuARtAg7ETg9hsMZPh0MT2QUxqGAYvM1Vpec/edit).
+
## Organizers
diff --git a/wgs.yaml b/wgs.yaml
index 6f83f2e5e..fcf93cab2 100644
--- a/wgs.yaml
+++ b/wgs.yaml
@@ -1,6 +1,7 @@
sigs:
- dir: sig-feature-store
name: Feature Store
+ inactive: true
mission_statement: >
SIG Feature Store covers the definition, management, storage, discovery, and serving
of features to models.
@@ -26,13 +27,7 @@ sigs:
- github: woop
name: Willem Pienaar
company: Gojek
- meetings:
- - description: Monthly SIG Meeting
- day: Wednesday
- time: "18:00"
- tz: PT (Pacific Time)
- frequency: monthly
- archive_url: https://docs.google.com/document/d/1h2BMuN6V6cGFQrSRk7msmYVmZdrouLRV_EPR_tphZrU/edit#
+ meetings: []
contact:
slack: feast
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -41,6 +36,7 @@ sigs:
description: Feature store development and roadmap
- dir: sig-onprem
name: OnPrem
+ inactive: true
mission_statement: >
Serve as a community resource for advising with on premises installation of Kubeflow.
@@ -58,19 +54,7 @@ sigs:
- github: mameshini
name: Igor Mameshin
company: Agile Stacks
- meetings:
- - description: SIG Onprem Community Meeting - (US East/EMEA)
- day: Thursday
- time: "10:30"
- tz: ET (Eastern Time)
- frequency: biweekly
- url: https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09
- - description: SIG Onprem Community Meeting - (US West)
- day: Friday
- time: "15:00"
- tz: ET (Eastern Time)
- frequency: biweekly
- url: https://us02web.zoom.us/j/87159010361?pwd=c09wTXk2dmJPNmpkTDFTb0o0cnY2Zz09
+ meetings: []
contact:
slack: sig-onprem
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -134,6 +118,7 @@ workinggroups:
- https://raw.githubusercontent.com/kubeflow/katib/master/OWNERS
- dir: wg-deployment
name: Deployment
+ inactive: true
mission_statement: >
WG Deployment covers developing, maintaining artifacts to deploy and operate Kubeflow.
@@ -172,13 +157,7 @@ workinggroups:
- github: yanniszark
name: Yannis Zarkadas
company: Arrikto
- meetings:
- - description: Regular WG Meeting (Pacific PM)
- day: Wednesday
- time: "17:30"
- tz: PT (Pacific Time)
- frequency: biweekly - every other Wednesday
- archive_url: http://bit.ly/kf-meeting-notes
+ meetings: []
contact:
slack: wg-deployment
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -202,38 +181,17 @@ workinggroups:
label: area/wg-manifests
leadership:
chairs:
- - github: PatrickXYS
- name: Yao Xiao
- company: AWS
- github: kimwnasptd
name: Kimonas Sotirchos
- company: Arrikto
- - github: yanniszark
- name: Yannis Zarkadas
- company: Arrikto
+ company: Canonical
tech_leads:
- - github: PatrickXYS
- name: Yao Xiao
- company: AWS
- github: StefanoFioravanzo
name: Stefano Fioravanzo
- company: Arrikto
- - github: elikatsis
- name: Ilias Katsakioris
- company: Arrikto
+ company: HPE
- github: kimwnasptd
name: Kimonas Sotirchos
- company: Arrikto
- - github: yanniszark
- name: Yannis Zarkadas
- company: Arrikto
- meetings:
- - description: Regular WG Meeting (Pacific AM)
- day: Tuesday
- time: "08:00"
- tz: PT (Pacific Time)
- frequency: biweekly - every other Tuesday
- archive_url: https://arrik.to/kf-wg-manifests-notes
+ company: Canonical
+ meetings: []
contact:
slack: wg-manifests
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -247,49 +205,24 @@ workinggroups:
- dir: wg-notebooks
name: Notebooks
mission_statement: >
- WG Notebooks is responsible for the user experience around Notebooks and their
- integrations with Kubeflow.
+ WG Notebooks is responsible for Kubeflow Notebooks and other core components.
charter_link: charter.md
label: area/wg-notebooks
leadership:
chairs:
- - github: StefanoFioravanzo
- name: Stefano Fioravanzo
- company: Arrikto
- - github: elikatsis
- name: Ilias Katsakioris
- company: Arrikto
- github: kimwnasptd
name: Kimonas Sotirchos
- company: Arrikto
+ company: Canonical
- github: thesuperzapper
name: Mathew Wicks
- - github: yanniszark
- name: Yannis Zarkadas
- company: Arrikto
tech_leads:
- - github: StefanoFioravanzo
- name: Stefano Fioravanzo
- company: Arrikto
- - github: elikatsis
- name: Ilias Katsakioris
- company: Arrikto
- github: kimwnasptd
name: Kimonas Sotirchos
- company: Arrikto
+ company: Canonical
- github: thesuperzapper
name: Mathew Wicks
- - github: yanniszark
- name: Yannis Zarkadas
- company: Arrikto
- meetings:
- - description: Regular Notebooks Meeting (Australia & Europe friendly)
- day: Thursday
- time: 11:00 pm
- tz: PT (Pacific Time)
- frequency: weekly
- archive_url: https://arrik.to/kf-wg-notebooks-notes
+ meetings: []
contact:
slack: wg-notebooks
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -297,30 +230,9 @@ workinggroups:
- name: wg-notebooks-leads
description: Tech leads of wg-notebooks
subprojects:
- - name: central-dashboard
- owners:
- - https://github.com/kubeflow/kubeflow/blob/master/components/centraldashboard/OWNERS
- - name: crud-web-apps
- owners:
- - https://raw.githubusercontent.com/kubeflow/kubeflow/master/components/crud-web-apps/OWNERS
- - name: jupyter-web-app
- owners:
- - https://raw.githubusercontent.com/kubeflow/kubeflow/master/components/jupyter-web-app/OWNERS
- - name: kfam
- owners:
- - https://github.com/kubeflow/kubeflow/blob/master/components/access-management/OWNERS
- - name: notebook-images
- owners:
- - https://raw.githubusercontent.com/kubeflow/kubeflow/master/components/tensorflow-notebook-image/OWNERS
- - name: notebooks-controller
+ - name: kubeflow-components
owners:
- - https://raw.githubusercontent.com/kubeflow/kubeflow/master/components/notebook-controller/OWNERS
- - name: poddefaults-webhook
- owners:
- - https://github.com/kubeflow/kubeflow/blob/master/components/admission-webhook/OWNERS
- - name: profile-controller
- owners:
- - https://github.com/kubeflow/kubeflow/blob/master/components/profile-controller/OWNERS
+ - https://github.com/kubeflow/kubeflow/blob/master/components/OWNERS
- dir: wg-pipelines
name: Pipelines
mission_statement: >
@@ -359,6 +271,7 @@ workinggroups:
company: Google
meetings: []
contact:
+ slack: kubeflow-pipelines
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
teams:
- name: wg-pipelines-bugs
@@ -378,6 +291,7 @@ workinggroups:
- https://raw.githubusercontent.com/kubeflow/pipelines/master/OWNERS
- dir: wg-serving
name: Serving
+ inactive: true
mission_statement: >
WG Serving covers developing, deploying, and operating serving jobs on Kubeflow.
@@ -416,13 +330,7 @@ workinggroups:
- github: yuzisun
name: Dan Sun
company: Bloomberg
- meetings:
- - description: Regular WG Meeting
- day: Wednesday
- time: "09:00"
- tz: PT (Pacific Time)
- frequency: biweekly
- archive_url: https://docs.google.com/document/d/1KZUURwr9MnHXqHA08TFbfVbM8EAJSJjmaMhnvstvi-k/edit
+ meetings: []
contact:
slack: kfserving
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -467,19 +375,7 @@ workinggroups:
- github: terrytangyuan
name: Yuan Tang
company: Red Hat
- meetings:
- - description: Regular WG Meeting (Asia & Europe friendly)
- day: Wednesday
- time: "03:00"
- tz: PT (Pacific Time)
- frequency: monthly - first Wednesday every month
- archive_url: https://docs.google.com/document/d/1K0Qfr0zTuARtAg7ETg9hsMZPh0MT2QUxqGAYvM1Vpec/edit
- - description: Regular WG Meeting (US friendly)
- day: Wednesday
- time: "10:00"
- tz: PT (Pacific Time)
- frequency: monthly - third Wednesday every month
- archive_url: https://docs.google.com/document/d/1K0Qfr0zTuARtAg7ETg9hsMZPh0MT2QUxqGAYvM1Vpec/edit
+ meetings: []
contact:
slack: wg-training
mailing_list: https://groups.google.com/forum/#!forum/kubeflow-discuss
@@ -491,32 +387,11 @@ workinggroups:
- name: wg-training-reviews
description: API Changes and Reviews (API Machinery APIs, NOT all APIs)
subprojects:
- - name: caffe2-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/caffe2-operator/master/OWNERS
- - name: chainer-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/chainer-operator/master/OWNERS
- - name: common
- owners:
- - https://raw.githubusercontent.com/kubeflow/common/master/OWNERS
- - name: fate-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/fate-operator/master/OWNERS
- name: mpi-operator
owners:
- - https://raw.githubusercontent.com/kubeflow/mpi-operator/master/OWNERS
- - name: mxnet-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/mxnet-operator/master/OWNERS
- - name: pytorch-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/pytorch-operator/master/OWNERS
- - name: tf-operator
- owners:
- - https://raw.githubusercontent.com/kubeflow/tf-operator/master/OWNERS
- - name: xgboost-operator
+ - https://github.com/kubeflow/mpi-operator/blob/master/OWNERS
+ - name: training-operator
owners:
- - https://raw.githubusercontent.com/kubeflow/xgboost-operator/master/OWNERS
+ - https://github.com/kubeflow/training-operator/blob/master/OWNERS
usergroups: []
committees: []