From e63cbfae86b679590272733fdc2ce80412525c7a Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Mon, 6 May 2019 11:45:30 -0700 Subject: Validate same github id has same name/compay --- generator/app.go | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/generator/app.go b/generator/app.go index e6e302e9..371add2a 100644 --- a/generator/app.go +++ b/generator/app.go @@ -113,6 +113,15 @@ type LeadershipGroup struct { EmeritusLeads []Person `yaml:"emeritus_leads,omitempty"` } +// PrefixToPersonMap returns a map of prefix to persons, useful for iteration over all persons +func (g *LeadershipGroup) PrefixToPersonMap() map[string][]Person { + return map[string][]Person{ + "chair": g.Chairs, + "tech_lead": g.TechnicalLeads, + "emeritus_lead": g.EmeritusLeads, + } +} + // Group represents either a Special Interest Group (SIG) or a Working Group (WG) type Group struct { Dir string @@ -210,6 +219,7 @@ func (c *Context) Sort() { // Validate returns a list of errors encountered while validating a Context func (c *Context) Validate() []error { errors := []error{} + people := make(map[string]Person) for prefix, groups := range c.PrefixToGroupMap() { for _, group := range groups { expectedDir := group.DirName(prefix) @@ -220,6 +230,17 @@ func (c *Context) Validate() []error { if expectedLabel != group.Label { errors = append(errors, fmt.Errorf("%s: expected label: %s, got: %s", group.Dir, expectedLabel, group.Label)) } + for prefix, persons := range group.Leadership.PrefixToPersonMap() { + for _, person := range persons { + if val, ok := people[person.GitHub]; ok { + if val.Name != person.Name || val.Company != person.Company { + errors = append(errors, fmt.Errorf("%s: %ss: expected person: %v, got: %v", group.Dir, prefix, val, person)) + } + } else { + people[person.GitHub] = person + } + } + } if len(group.StakeholderSIGs) != 0 { if prefix == "wg" { for _, name := range group.StakeholderSIGs { @@ -243,7 +264,6 @@ func (c *Context) Validate() []error { errors = append(errors, fmt.Errorf("%s: has no subprojects", group.Dir)) } } - } } return errors -- cgit v1.2.3 From 71bfc3341832fac84e813d0fc2b904c9e2c1f5fd Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Mon, 6 May 2019 11:47:08 -0700 Subject: Fix person names/companies and run make --- sigs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sigs.yaml b/sigs.yaml index 0147379b..92559036 100644 --- a/sigs.yaml +++ b/sigs.yaml @@ -2316,7 +2316,7 @@ workinggroups: chairs: - github: cantbewong name: Steve Wong - company: VMWare + company: VMware - github: cindyxing name: Cindy Xing company: Huawei @@ -2651,7 +2651,7 @@ committees: chairs: - github: bradamant3 name: Jennifer Rondeau - company: VMware + company: Stripe - github: carolynvs name: Carolyn Van Slyck company: Microsoft @@ -2659,7 +2659,7 @@ committees: name: Eric Paris company: Red Hat - github: jdumars - name: Jaice Singer Dumars + name: Jaice Singer DuMars company: Google - github: parispittman name: Paris Pittman -- cgit v1.2.3 From fd9fa704c1ebc9fe8f847d20e1b406d562cd320f Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Mon, 6 May 2019 11:49:27 -0700 Subject: Fix invalid sig names Specifically: - Networking -> Network - Big Data isn't a SIG --- sigs.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sigs.yaml b/sigs.yaml index 92559036..e5a4dc32 100644 --- a/sigs.yaml +++ b/sigs.yaml @@ -2310,7 +2310,7 @@ workinggroups: stakeholder_sigs: - Multicluster - - Networking + - Network label: iot-edge leadership: chairs: @@ -2429,7 +2429,6 @@ workinggroups: stakeholder_sigs: - Apps - - Big Data - Node label: machine-learning leadership: @@ -2468,7 +2467,7 @@ workinggroups: stakeholder_sigs: - API Machinery - Auth - - Networking + - Network - Node - Scheduling - Storage @@ -2505,7 +2504,7 @@ workinggroups: - Architecture - Auth - Multicluster - - Networking + - Network - Node - Scheduling - Storage @@ -2547,7 +2546,7 @@ workinggroups: stakeholder_sigs: - Autoscaling - Instrumentation - - Networking + - Network - Node - Scheduling - Storage -- cgit v1.2.3 From 7fb5c0589c217a5be00e2fc775a43f4d00cc5413 Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Mon, 6 May 2019 11:53:52 -0700 Subject: Add mission statements for sigs that miss it Educated guess: first sentence of charter --- sigs.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sigs.yaml b/sigs.yaml index e5a4dc32..b05de69e 100644 --- a/sigs.yaml +++ b/sigs.yaml @@ -1429,6 +1429,8 @@ sigs: - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/proxy/OWNERS - dir: sig-node name: Node + mission_statement: > + SIG Node is responsible for the components that support the controlled interactions between pods and host resources. charter_link: charter.md label: node leadership: @@ -1611,6 +1613,8 @@ sigs: - https://raw.githubusercontent.com/kubernetes/enhancements/master/OWNERS - dir: sig-release name: Release + mission_statement: > + Ensure quality Kubernetes releases charter_link: charter.md label: release leadership: @@ -1765,6 +1769,8 @@ sigs: - https://raw.githubusercontent.com/kubernetes/perf-tests/master/clusterloader2/OWNERS - dir: sig-scheduling name: Scheduling + mission_statement: > + SIG Scheduling is responsible for the components that make Pod placement decisions. charter_link: charter.md label: scheduling leadership: -- cgit v1.2.3 From 32999dfb77ac37dd16a93e198a9e748ced50c920 Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Mon, 6 May 2019 11:54:22 -0700 Subject: Ran make --- committee-code-of-conduct/README.md | 4 ++-- sig-list.md | 12 ++++++------ sig-node/README.md | 1 + sig-release/README.md | 1 + sig-scheduling/README.md | 1 + sigs.yaml | 6 +++++- wg-iot-edge/README.md | 4 ++-- wg-machine-learning/README.md | 1 - wg-multitenancy/README.md | 2 +- wg-policy/README.md | 2 +- wg-resource-management/README.md | 2 +- 11 files changed, 21 insertions(+), 15 deletions(-) diff --git a/committee-code-of-conduct/README.md b/committee-code-of-conduct/README.md index 642e30d5..aa5046d8 100644 --- a/committee-code-of-conduct/README.md +++ b/committee-code-of-conduct/README.md @@ -13,10 +13,10 @@ The Kubernetes Code of Conduct Committee (CoCC) is the body that is responsible ## Members -* Jennifer Rondeau (**[@bradamant3](https://github.com/bradamant3)**), VMware +* Jennifer Rondeau (**[@bradamant3](https://github.com/bradamant3)**), Stripe * Carolyn Van Slyck (**[@carolynvs](https://github.com/carolynvs)**), Microsoft * Eric Paris (**[@eparis](https://github.com/eparis)**), Red Hat -* Jaice Singer Dumars (**[@jdumars](https://github.com/jdumars)**), Google +* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Google * Paris Pittman (**[@parispittman](https://github.com/parispittman)**), Google ## Contact diff --git a/sig-list.md b/sig-list.md index 2798da16..d60e6e40 100644 --- a/sig-list.md +++ b/sig-list.md @@ -58,13 +58,13 @@ When the need arises, a [new SIG can be created](sig-wg-lifecycle.md) |------|------------------|-----------|---------|----------| |[Apply](wg-apply/README.md)|* API Machinery
* CLI
|* [Daniel Smith](https://github.com/lavalamp), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-apply)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-apply)|* Regular WG Meeting: [Tuesdays at 9:30 PT (Pacific Time) (biweekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
|[Component Standard](wg-component-standard/README.md)|* API Machinery
* Architecture
* Cluster Lifecycle
|* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)
* [Michael Taufen](https://github.com/mtaufen), Google
* [Dr. Stefan Schimanski](https://github.com/sttts), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/wg-component-standard)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-component-standard)|* Regular WG Meeting: [Tuesdays at 08:30 PT (Pacific Time) (weekly)](https://zoom.us/j/705540322)
-|[IoT Edge](wg-iot-edge/README.md)|* Multicluster
* Networking
|* [Steve Wong](https://github.com/cantbewong), VMWare
* [Cindy Xing](https://github.com/cindyxing), Huawei
* [Dejan Bosanac](https://github.com/dejanb), Red Hat
* [Preston Holmes](https://github.com/ptone), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-iot-edge)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-iot-edge)|* APAC WG Meeting: [Wednesdays at 5:00 UTC (every four weeks)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
* Regular WG Meeting: [Wednesdays at 09:00 (Pacific Time) PT (every four weeks)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
+|[IoT Edge](wg-iot-edge/README.md)|* Multicluster
* Network
|* [Steve Wong](https://github.com/cantbewong), VMware
* [Cindy Xing](https://github.com/cindyxing), Huawei
* [Dejan Bosanac](https://github.com/dejanb), Red Hat
* [Preston Holmes](https://github.com/ptone), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-iot-edge)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-iot-edge)|* APAC WG Meeting: [Wednesdays at 5:00 UTC (every four weeks)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
* Regular WG Meeting: [Wednesdays at 09:00 (Pacific Time) PT (every four weeks)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
|[K8s Infra](wg-k8s-infra/README.md)|* Architecture
* Contributor Experience
* Release
* Testing
|* [Davanum Srinivas](https://github.com/dims), Huawei
* [Aaron Crickenberger](https://github.com/spiffxp), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-k8s-infra)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-k8s-infra)|* Regular WG Meeting: [Wednesdays at 8:30 PT (Pacific Time) (bi-weekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
|[LTS](wg-lts/README.md)|* API Machinery
* CLI
* Node
|* [Dhawal Yogesh Bhanusali](https://github.com/imkin), VMware
* [Quinton Hoole](https://github.com/quinton-hoole), Huawei
* [Tim Pepper](https://github.com/tpepper), VMware
* [Nick Young](https://github.com/youngnick), Atlassian
|* [Slack](https://kubernetes.slack.com/messages/wg-lts)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-lts)|* Regular WG Meeting: [Tuesdays at 09:00 PT (Pacific Time) (bi-weekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
-|[Machine Learning](wg-machine-learning/README.md)|* Apps
* Big Data
* Node
|* [Connor Doyle](https://github.com/ConnorDoyle), Intel
* [Balaji Subramaniam](https://github.com/balajismaniam), Intel
* [Kenneth Owens](https://github.com/kow3ns), Google
* [Vishnu Kannan](https://github.com/vishh), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-machine-learning)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-machine-learning)|* Regular WG Meeting: [Thursdays at 13:00 PT (Pacific Time) (biweekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
-|[Multitenancy](wg-multitenancy/README.md)|* API Machinery
* Auth
* Networking
* Node
* Scheduling
* Storage
|* [David Oppenheimer](https://github.com/davidopp), Google
* [Tasha Drew](https://github.com/tashimi), VMware
|* [Slack](https://kubernetes.slack.com/messages/wg-multitenancy)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy)|* Regular WG Meeting: [Tuesdays at 11:00 PT (Pacific Time) (biweekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
-|[Policy](wg-policy/README.md)|* Architecture
* Auth
* Multicluster
* Networking
* Node
* Scheduling
* Storage
|* [Yisui Hu](https://github.com/easeway), Google
* [Erica von Buelow](https://github.com/ericavonb), Red Hat
* [Howard Huang](https://github.com/hannibalhuang), Huawei
* [Michael Elder](https://github.com/mdelder), IBM
* [Torin Sandall](https://github.com/tsandall), Styra
|* [Slack](https://kubernetes.slack.com/messages/wg-policy)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-policy)|* Regular WG Meeting: [Wednesdays at 16:00 PT (Pacific Time) (weekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
-|[Resource Management](wg-resource-management/README.md)|* Autoscaling
* Instrumentation
* Networking
* Node
* Scheduling
* Storage
|* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
* [Vishnu Kannan](https://github.com/vishh), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-resource-mgmt)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management)|* Regular WG Meeting: [Wednesdays at 11:00 PT (Pacific Time) (biweekly (On demand))](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
+|[Machine Learning](wg-machine-learning/README.md)|* Apps
* Node
|* [Connor Doyle](https://github.com/ConnorDoyle), Intel
* [Balaji Subramaniam](https://github.com/balajismaniam), Intel
* [Kenneth Owens](https://github.com/kow3ns), Google
* [Vishnu Kannan](https://github.com/vishh), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-machine-learning)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-machine-learning)|* Regular WG Meeting: [Thursdays at 13:00 PT (Pacific Time) (biweekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
+|[Multitenancy](wg-multitenancy/README.md)|* API Machinery
* Auth
* Network
* Node
* Scheduling
* Storage
|* [David Oppenheimer](https://github.com/davidopp), Google
* [Tasha Drew](https://github.com/tashimi), VMware
|* [Slack](https://kubernetes.slack.com/messages/wg-multitenancy)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy)|* Regular WG Meeting: [Tuesdays at 11:00 PT (Pacific Time) (biweekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
+|[Policy](wg-policy/README.md)|* Architecture
* Auth
* Multicluster
* Network
* Node
* Scheduling
* Storage
|* [Yisui Hu](https://github.com/easeway), Google
* [Erica von Buelow](https://github.com/ericavonb), Red Hat
* [Howard Huang](https://github.com/hannibalhuang), Huawei
* [Michael Elder](https://github.com/mdelder), IBM
* [Torin Sandall](https://github.com/tsandall), Styra
|* [Slack](https://kubernetes.slack.com/messages/wg-policy)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-policy)|* Regular WG Meeting: [Wednesdays at 16:00 PT (Pacific Time) (weekly)](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
+|[Resource Management](wg-resource-management/README.md)|* Autoscaling
* Instrumentation
* Network
* Node
* Scheduling
* Storage
|* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
* [Vishnu Kannan](https://github.com/vishh), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-resource-mgmt)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management)|* Regular WG Meeting: [Wednesdays at 11:00 PT (Pacific Time) (biweekly (On demand))](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit)
|[Security Audit](wg-security-audit/README.md)||* [Aaron Small](https://github.com/aasmall), Google
* [Craig Ingram](https://github.com/cji), Salesforce
* [Jay Beale](https://github.com/jaybeale), InGuardians
* [Joel Smith](https://github.com/joelsmith), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/wg-security-audit)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-security-audit)|* Regular WG Meeting: [Mondays at 13:00 PT (Pacific Time) (weekly)](https://docs.google.com/document/d/1RbC4SBZBlKth7IjYv_NaEpnmLGwMJ0ElpUOmsG-bdRA/edit)
### Master User Group List @@ -77,7 +77,7 @@ When the need arises, a [new SIG can be created](sig-wg-lifecycle.md) | Name | Label | Members | Contact | |------|--------|---------|---------| -|[Code of Conduct](committee-code-of-conduct/README.md)|conduct|* [Jennifer Rondeau](https://github.com/bradamant3), VMware
* [Carolyn Van Slyck](https://github.com/carolynvs), Microsoft
* [Eric Paris](https://github.com/eparis), Red Hat
* [Jaice Singer Dumars](https://github.com/jdumars), Google
* [Paris Pittman](https://github.com/parispittman), Google
|* [Private Mailing List](conduct@kubernetes.io) +|[Code of Conduct](committee-code-of-conduct/README.md)|conduct|* [Jennifer Rondeau](https://github.com/bradamant3), Stripe
* [Carolyn Van Slyck](https://github.com/carolynvs), Microsoft
* [Eric Paris](https://github.com/eparis), Red Hat
* [Jaice Singer DuMars](https://github.com/jdumars), Google
* [Paris Pittman](https://github.com/parispittman), Google
|* [Private Mailing List](conduct@kubernetes.io) |[Product Security](committee-product-security/README.md)|product-security|* [CJ Cullen](https://github.com/cjcullen), Google
* [Joel Smith](https://github.com/joelsmith), Red Hat
* [Jordan Liggitt](https://github.com/liggitt), Google
* [Brandon Philips](https://github.com/philips), Red Hat
* [Tim Allclair](https://github.com/tallclair), Google
|* [Private Mailing List](security@kubernetes.io) |[Steering](committee-steering/README.md)|steering|* [Brian Grant](https://github.com/bgrant0607), Google
* [Brendan Burns](https://github.com/brendandburns), Microsoft
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
* [Davanum Srinivas](https://github.com/dims), Huawei
* [Joe Beda](https://github.com/jbeda), VMware
* [Michelle Noorali](https://github.com/michelleN), Microsoft
* [Brandon Philips](https://github.com/philips), Red Hat
* [Phillip Wittrock](https://github.com/pwittrock), Google
* [Sarah Novotny](https://github.com/sarahnovotny), Google
* [Clayton Coleman](https://github.com/smarterclayton), Red Hat
* [Aaron Crickenberger](https://github.com/spiffxp), Google
* [Timothy St. Clair](https://github.com/timothysc), VMware
|* [Mailing List](https://groups.google.com/a/kubernetes.io/forum/#!forum/steering)
* [Private Mailing List](steering-private@kubernetes.io) diff --git a/sig-node/README.md b/sig-node/README.md index e0e1ef3b..9df05dd2 100644 --- a/sig-node/README.md +++ b/sig-node/README.md @@ -8,6 +8,7 @@ To understand how this file is generated, see https://git.k8s.io/community/gener ---> # Node Special Interest Group +SIG Node is responsible for the components that support the controlled interactions between pods and host resources. The [charter](charter.md) defines the scope and governance of the Node Special Interest Group. diff --git a/sig-release/README.md b/sig-release/README.md index 2527116d..88cf5eda 100644 --- a/sig-release/README.md +++ b/sig-release/README.md @@ -8,6 +8,7 @@ To understand how this file is generated, see https://git.k8s.io/community/gener ---> # Release Special Interest Group +Ensure quality Kubernetes releases The [charter](charter.md) defines the scope and governance of the Release Special Interest Group. diff --git a/sig-scheduling/README.md b/sig-scheduling/README.md index 42c37444..44fcfa2d 100644 --- a/sig-scheduling/README.md +++ b/sig-scheduling/README.md @@ -8,6 +8,7 @@ To understand how this file is generated, see https://git.k8s.io/community/gener ---> # Scheduling Special Interest Group +SIG Scheduling is responsible for the components that make Pod placement decisions. The [charter](charter.md) defines the scope and governance of the Scheduling Special Interest Group. diff --git a/sigs.yaml b/sigs.yaml index b05de69e..2ab6bd6d 100644 --- a/sigs.yaml +++ b/sigs.yaml @@ -1430,7 +1430,9 @@ sigs: - dir: sig-node name: Node mission_statement: > - SIG Node is responsible for the components that support the controlled interactions between pods and host resources. + SIG Node is responsible for the components that support the controlled interactions + between pods and host resources. + charter_link: charter.md label: node leadership: @@ -1615,6 +1617,7 @@ sigs: name: Release mission_statement: > Ensure quality Kubernetes releases + charter_link: charter.md label: release leadership: @@ -1771,6 +1774,7 @@ sigs: name: Scheduling mission_statement: > SIG Scheduling is responsible for the components that make Pod placement decisions. + charter_link: charter.md label: scheduling leadership: diff --git a/wg-iot-edge/README.md b/wg-iot-edge/README.md index c3c08104..b801f521 100644 --- a/wg-iot-edge/README.md +++ b/wg-iot-edge/README.md @@ -12,7 +12,7 @@ A Working Group dedicated to discussing, designing and documenting using Kuberne ## Stakeholder SIGs * SIG Multicluster -* SIG Networking +* SIG Network ## Meetings * APAC WG Meeting: [Wednesdays at 5:00 UTC](https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit) (every four weeks). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=5:00&tz=UTC). @@ -22,7 +22,7 @@ A Working Group dedicated to discussing, designing and documenting using Kuberne ## Organizers -* Steve Wong (**[@cantbewong](https://github.com/cantbewong)**), VMWare +* Steve Wong (**[@cantbewong](https://github.com/cantbewong)**), VMware * Cindy Xing (**[@cindyxing](https://github.com/cindyxing)**), Huawei * Dejan Bosanac (**[@dejanb](https://github.com/dejanb)**), Red Hat * Preston Holmes (**[@ptone](https://github.com/ptone)**), Google diff --git a/wg-machine-learning/README.md b/wg-machine-learning/README.md index 8d246634..b1ec8ce4 100755 --- a/wg-machine-learning/README.md +++ b/wg-machine-learning/README.md @@ -12,7 +12,6 @@ Identify and fix gaps in Kubernetes to better support Machine Learning applicati ## Stakeholder SIGs * SIG Apps -* SIG Big Data * SIG Node ## Meetings diff --git a/wg-multitenancy/README.md b/wg-multitenancy/README.md index 95930eeb..4e3108b4 100644 --- a/wg-multitenancy/README.md +++ b/wg-multitenancy/README.md @@ -13,7 +13,7 @@ Define the models of multitenancy that Kubernetes will support. Discuss and exec ## Stakeholder SIGs * SIG API Machinery * SIG Auth -* SIG Networking +* SIG Network * SIG Node * SIG Scheduling * SIG Storage diff --git a/wg-policy/README.md b/wg-policy/README.md index bdf709b9..0486e2cf 100644 --- a/wg-policy/README.md +++ b/wg-policy/README.md @@ -14,7 +14,7 @@ Provide an overall architecture that describes both the current policy related i * SIG Architecture * SIG Auth * SIG Multicluster -* SIG Networking +* SIG Network * SIG Node * SIG Scheduling * SIG Storage diff --git a/wg-resource-management/README.md b/wg-resource-management/README.md index 90c83f99..4e6f0971 100644 --- a/wg-resource-management/README.md +++ b/wg-resource-management/README.md @@ -13,7 +13,7 @@ Designing and shepherding cross-cutting features around compute resource isolati ## Stakeholder SIGs * SIG Autoscaling * SIG Instrumentation -* SIG Networking +* SIG Network * SIG Node * SIG Scheduling * SIG Storage -- cgit v1.2.3