diff --git a/generator/app.go b/generator/app.go
index e7694b5b9..79e08cd35 100644
--- a/generator/app.go
+++ b/generator/app.go
@@ -58,10 +58,14 @@ type Lead struct {
// Meeting represents a regular meeting for a group.
type Meeting struct {
- Day string
- Time string
- TZ string `yaml:"tz"`
- Frequency string
+ Description string
+ Day string
+ Time string
+ TZ string
+ Frequency string
+ URL string
+ ArchiveURL string `yaml:"archive_url"`
+ RecordingsURL string `yaml:"recordings_url"`
}
// Contact represents the various contact points for a group.
@@ -79,16 +83,13 @@ type GithubTeams struct {
// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
type Group struct {
- Name string
- Dir string
- MissionStatement string `yaml:"mission_statement"`
- Label string
- Leads []Lead
- Meetings []Meeting
- MeetingURL string `yaml:"meeting_url"`
- MeetingArchiveURL string `yaml:"meeting_archive_url"`
- MeetingRecordingsURL string `yaml:"meeting_recordings_url"`
- Contact Contact
+ Name string
+ Dir string
+ MissionStatement string `yaml:"mission_statement"`
+ Label string
+ Leads []Lead
+ Meetings []Meeting
+ Contact Contact
}
// DirName returns the directory that a group's documentation will be
diff --git a/generator/list.tmpl b/generator/list.tmpl
index 38ddc0e19..17ece912d 100644
--- a/generator/list.tmpl
+++ b/generator/list.tmpl
@@ -16,7 +16,7 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
| Name | Label | Leads | Contact | Meetings |
|------|--------|-------|---------|----------|
{{- range .Sigs}}
-|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{$save.MeetingURL}})
{{end}}
+|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})
{{end}}
{{- end }}
### Master Working Group List
@@ -24,5 +24,5 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
| Name | Organizers | Contact | Meetings |
|------|------------|---------|----------|
{{- range .WorkingGroups}}
-|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{$save.MeetingURL}})
{{end}}
+|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}
{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})
{{end}}
{{- end }}
diff --git a/generator/sig_readme.tmpl b/generator/sig_readme.tmpl
index c5aea6d4e..2b3582efa 100644
--- a/generator/sig_readme.tmpl
+++ b/generator/sig_readme.tmpl
@@ -2,18 +2,18 @@
# {{.Name}} SIG
{{ .MissionStatement }}
-## Meetings
+{{ if .Meetings }}## Meetings
{{- range .Meetings }}
-* [{{.Day}}s at {{.Time}} {{.TZ}}]({{$.MeetingURL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
-{{- end }}
-
-{{ if .MeetingArchiveURL -}}
-Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
-{{- end }}
-{{ if .MeetingRecordingsURL -}}
-Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).
+* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
+{{- if .ArchiveURL }}
+ * [Meeting notes and Agenda]({{.ArchiveURL}}).
+{{- end }}
+{{- if .RecordingsURL }}
+ * [Meeting recordings]({{.RecordingsURL}}).
+{{- end }}
{{- end }}
+{{ end -}}
## Leads
{{- range .Leads }}
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
diff --git a/generator/wg_readme.tmpl b/generator/wg_readme.tmpl
index cd9cc2fd5..5cd75e66c 100644
--- a/generator/wg_readme.tmpl
+++ b/generator/wg_readme.tmpl
@@ -2,18 +2,18 @@
# {{.Name}} Working Group
{{ .MissionStatement }}
-## Meetings
+{{ if .Meetings }}## Meetings
{{- range .Meetings }}
-* [{{.Day}}s at {{.Time}} {{.TZ}}]({{$.MeetingURL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
-{{- end }}
-
-{{ if .MeetingArchiveURL -}}
-Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
-{{- end }}
-{{ if .MeetingRecordingsURL -}}
-Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).
+* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
+{{- if .ArchiveURL }}
+ * [Meeting notes and Agenda]({{.ArchiveURL}}).
+{{- end }}
+{{- if .RecordingsURL }}
+ * [Meeting recordings]({{.RecordingsURL}}).
+{{- end }}
{{- end }}
+{{ end -}}
## Organizers
{{- range .Leads }}
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
diff --git a/sig-api-machinery/README.md b/sig-api-machinery/README.md
index a688749c0..6b8c1fc4a 100644
--- a/sig-api-machinery/README.md
+++ b/sig-api-machinery/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers all aspects of API server, API registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, CustomResourceDefinition, garbage collection, and client libraries.
## Meetings
-* [Wednesdays at 11:00 PT (Pacific Time)](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://goo.gl/x5nWrF).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R).
+* Regular SIG Meeting: [Wednesdays at 11:00 PT (Pacific Time)](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://goo.gl/x5nWrF).
+ * [Meeting recordings](https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R).
## Leads
* Daniel Smith (**[@lavalamp](https://github.com/lavalamp)**), Google
diff --git a/sig-apps/README.md b/sig-apps/README.md
index ff6cda67e..4dca53e1f 100644
--- a/sig-apps/README.md
+++ b/sig-apps/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers deploying and operating applications in Kubernetes. We focus on the developer and devops experience of running applications in Kubernetes. We discuss how to define and run apps in Kubernetes, demo relevant tools and projects, and discuss areas of friction that can lead to suggesting improvements or feature requests.
## Meetings
-* [Mondays at 9:00 PT (Pacific Time)](https://zoom.us/my/sig.apps) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
+* Regular SIG Meeting: [Mondays at 9:00 PT (Pacific Time)](https://zoom.us/my/sig.apps) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
+ * [Meeting recordings](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
## Leads
* Michelle Noorali (**[@michelleN](https://github.com/michelleN)**), Microsoft
diff --git a/sig-architecture/README.md b/sig-architecture/README.md
index ba0143cbc..bf6c809e0 100644
--- a/sig-architecture/README.md
+++ b/sig-architecture/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
The Architecture SIG maintains and evolves the design principles of Kubernetes, and provides a consistent body of expertise necessary to ensure architectural consistency over time.
## Meetings
-* [Thursdays at 15:30 UTC](https://zoom.us/j/2018742972) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:30&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g).
+* Regular SIG Meeting: [Thursdays at 15:30 UTC](https://zoom.us/j/2018742972) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:30&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g).
## Leads
* Brian Grant (**[@bgrant0607](https://github.com/bgrant0607)**), Google
diff --git a/sig-auth/README.md b/sig-auth/README.md
index 06163edef..921e9e5be 100644
--- a/sig-auth/README.md
+++ b/sig-auth/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers improvements to Kubernetes authorization, authentication, and cluster security policy.
## Meetings
-* [Wednesdays at 11:00 PT (Pacific Time)](https://zoom.us/my/k8s.sig.auth) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw).
+* Regular SIG Meeting: [Wednesdays at 11:00 PT (Pacific Time)](https://zoom.us/my/k8s.sig.auth) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#).
+ * [Meeting recordings](https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw).
## Leads
* Eric Chiang (**[@ericchiang](https://github.com/ericchiang)**), CoreOS
diff --git a/sig-autoscaling/README.md b/sig-autoscaling/README.md
index f1c3e7da2..98e4ea9dd 100644
--- a/sig-autoscaling/README.md
+++ b/sig-autoscaling/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers autoscaling of clusters, horizontal and vertical autoscaling of pods, setting initial resources for pods, topics related to monitoring pods and gathering their metrics (e.g.: Heapster)
## Meetings
-* [Mondays at 14:00 UTC](https://zoom.us/my/k8s.sig.autoscaling) (biweekly/triweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit).
-
+* Regular SIG Meeting: [Mondays at 14:00 UTC](https://zoom.us/my/k8s.sig.autoscaling) (biweekly/triweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit).
## Leads
* Marcin Wielgus (**[@mwielgus](https://github.com/mwielgus)**), Google
diff --git a/sig-aws/README.md b/sig-aws/README.md
index b2cff40c4..c3c6562e9 100644
--- a/sig-aws/README.md
+++ b/sig-aws/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
## Meetings
-* [Fridays at 9:00 PT (Pacific Time)](https://zoom.us/my/k8ssigaws) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit).
-
+* Regular SIG Meeting: [Fridays at 9:00 PT (Pacific Time)](https://zoom.us/my/k8ssigaws) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit).
## Leads
* Justin Santa Barbara (**[@justinsb](https://github.com/justinsb)**)
diff --git a/sig-azure/README.md b/sig-azure/README.md
index 01f4bedc2..e0c270cc9 100644
--- a/sig-azure/README.md
+++ b/sig-azure/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on Azure Container Service.
## Meetings
-* [Wednesdays at 16:00 UTC](https://deis.zoom.us/j/2018742972) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4).
+* Regular SIG Meeting: [Wednesdays at 16:00 UTC](https://deis.zoom.us/j/2018742972) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4).
## Leads
* Jason Hansen (**[@slack](https://github.com/slack)**), Microsoft
diff --git a/sig-big-data/README.md b/sig-big-data/README.md
index ad19b6012..f3bbc796c 100644
--- a/sig-big-data/README.md
+++ b/sig-big-data/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers deploying and operating big data applications (Spark, Kafka, Hadoop, Flink, Storm, etc) on Kubernetes. We focus on integrations with big data applications and architecting the best ways to run them on Kubernetes.
## Meetings
-* [Wednesdays at 17:00 UTC](https://zoom.us/my/sig.big.data) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
-Meeting recordings can be found [here](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
+* Regular SIG Meeting: [Wednesdays at 17:00 UTC](https://zoom.us/my/sig.big.data) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
+ * [Meeting recordings](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
## Leads
* Anirudh Ramanathan (**[@foxish](https://github.com/foxish)**), Google
diff --git a/sig-cli/README.md b/sig-cli/README.md
index a1c65d28a..7f283f2f4 100644
--- a/sig-cli/README.md
+++ b/sig-cli/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers kubectl and related tools. We focus on the development and standardization of the CLI framework and its dependencies, the establishment of conventions for writing CLI commands, POSIX compliance, and improving the command line tools from a developer and devops user experience and usability perspective.
## Meetings
-* [Wednesdays at 09:00 PT (Pacific Time)](https://zoom.us/my/sigcli) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=09:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing).
-Meeting recordings can be found [here](https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF).
+* Regular SIG Meeting: [Wednesdays at 09:00 PT (Pacific Time)](https://zoom.us/my/sigcli) (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/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing).
+ * [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF).
## Leads
* Fabiano Franz (**[@fabianofranz](https://github.com/fabianofranz)**), Red Hat
diff --git a/sig-cluster-lifecycle/README.md b/sig-cluster-lifecycle/README.md
index 3ae8975b3..5fe51eda3 100644
--- a/sig-cluster-lifecycle/README.md
+++ b/sig-cluster-lifecycle/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
The Cluster Lifecycle SIG examines how we should change Kubernetes to make it easier to manage and operate with a focus on cluster deployment and upgrades.
## Meetings
-* [Tuesdays at 09:00 PT (Pacific Time)](https://zoom.us/j/166836%E2%80%8B624) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=09:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4).
+* Regular SIG Meeting: [Tuesdays at 09:00 PT (Pacific Time)](https://zoom.us/j/166836%E2%80%8B624) (weekly). [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/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4).
## Leads
* Luke Marsden (**[@lukemarsden](https://github.com/lukemarsden)**), Weave
diff --git a/sig-cluster-ops/README.md b/sig-cluster-ops/README.md
index 2768e892b..a79b2e482 100644
--- a/sig-cluster-ops/README.md
+++ b/sig-cluster-ops/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Promote operability and interoperability of Kubernetes clusters. We focus on shared operations practices for Kubernetes clusters with a goal to make Kubernetes broadly accessible with a common baseline reference. We also organize operators as a sounding board and advocacy group.
## Meetings
-* [Thursdays at 20:00 UTC](https://zoom.us/j/297937771) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR).
+* Regular SIG Meeting: [Thursdays at 20:00 UTC](https://zoom.us/j/297937771) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#).
+ * [Meeting recordings](https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR).
## Leads
* Rob Hirschfeld (**[@zehicle](https://github.com/zehicle)**), RackN
diff --git a/sig-contributor-experience/README.md b/sig-contributor-experience/README.md
index b830d1e67..4a072bd22 100644
--- a/sig-contributor-experience/README.md
+++ b/sig-contributor-experience/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Developing and sustaining a healthy community of contributors is critical to scaling the project and growing the ecosystem. We need to ensure our contributors are happy and productive, we need to break the commit-rate ceiling we hit in July 2015, and we need to get the monotonically growing PR merge latency and numbers of open PRs and issues under control.
## Meetings
-* [Wednesdays at 9:30 PT (Pacific Time)](https://zoom.us/j/7658488911) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:30&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr).
+* Regular SIG Meeting: [Wednesdays at 9:30 PT (Pacific Time)](https://zoom.us/j/7658488911) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:30&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/).
+ * [Meeting recordings](https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr).
## Leads
* Garrett Rodrigues (**[@grodrigues3](https://github.com/grodrigues3)**), Google
diff --git a/sig-docs/README.md b/sig-docs/README.md
index 8d87f426c..9aec7eced 100644
--- a/sig-docs/README.md
+++ b/sig-docs/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers documentation, doc processes, and doc publishing for Kubernetes.
## Meetings
-* [Tuesdays at 17:30 UTC](https://zoom.us/j/678394311) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit).
-Meeting recordings can be found [here](https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8).
+* Regular SIG Meeting: [Tuesdays at 17:30 UTC](https://zoom.us/j/678394311) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit).
+ * [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8).
## Leads
* Devin Donnelly (**[@devin-donnelly](https://github.com/devin-donnelly)**), Google
diff --git a/sig-gcp/README.md b/sig-gcp/README.md
index afe21beb0..712f88ca9 100644
--- a/sig-gcp/README.md
+++ b/sig-gcp/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on the Google Cloud Platform.
## Meetings
-* [Thursdays at 16:00 UTC](https://zoom.us/j/761149873) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit).
-
+* Regular SIG Meeting: [Thursdays at 16:00 UTC](https://zoom.us/j/761149873) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit).
## Leads
* Adam Worrall (**[@abgworrall](https://github.com/abgworrall)**), Google
@@ -22,6 +20,7 @@ Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-gcp)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-gcp)
+* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fgcp)
## GitHub Teams
diff --git a/sig-instrumentation/README.md b/sig-instrumentation/README.md
index 5710e6118..df7cceafc 100644
--- a/sig-instrumentation/README.md
+++ b/sig-instrumentation/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers best practices for cluster observability through metrics, logging, and events across all Kubernetes components and development of relevant components such as Heapster and kube-state-metrics. Coordinates metric requirements of different SIGs for other components through finding common APIs.
## Meetings
-* [Thursdays at 17:30 UTC](https://zoom.us/j/5342565819) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit).
-
+* Regular SIG Meeting: [Thursdays at 17:30 UTC](https://zoom.us/j/5342565819) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit).
## Leads
* Piotr Szczesniak (**[@piosz](https://github.com/piosz)**), Google
diff --git a/sig-list.md b/sig-list.md
index 1c874b5c9..53b8dbc00 100644
--- a/sig-list.md
+++ b/sig-list.md
@@ -22,47 +22,47 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
| Name | Label | Leads | Contact | Meetings |
|------|--------|-------|---------|----------|
-|[API Machinery](sig-api-machinery/README.md)|api-machinery|* [Daniel Smith](https://github.com/lavalamp), Google
* [David Eads](https://github.com/deads2k), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery)|* [Wednesdays at 11:00 PT (Pacific Time) (biweekly)](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig)
-|[AWS](sig-aws/README.md)|aws|* [Justin Santa Barbara](https://github.com/justinsb)
* [Kris Nova](https://github.com/kris-nova), Heptio
* [Chris Love](https://github.com/chrislovecnm)
* [Mackenzie Burnett](https://github.com/mfburnett), Redspread
|* [Slack](https://kubernetes.slack.com/messages/sig-aws)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)|* [Fridays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8ssigaws)
-|[Apps](sig-apps/README.md)|apps|* [Michelle Noorali](https://github.com/michelleN), Microsoft
* [Matt Farina](https://github.com/mattfarina), Samsung SDS
* [Adnan Abdulhussein](https://github.com/prydonius), Bitnami
* [Kenneth Owens](https://github.com/kow3ns), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-apps)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)|* [Mondays at 9:00 PT (Pacific Time) (weekly)](https://zoom.us/my/sig.apps)
-|[Architecture](sig-architecture/README.md)|architecture|* [Brian Grant](https://github.com/bgrant0607), Google
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-architecture)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)|* [Thursdays at 15:30 UTC (weekly)](https://zoom.us/j/2018742972)
-|[Auth](sig-auth/README.md)|auth|* [Eric Chiang](https://github.com/ericchiang), CoreOS
* [Jordan Liggitt](https://github.com/liggitt), Red Hat
* [David Eads](https://github.com/deads2k), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-auth)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-auth)|* [Wednesdays at 11:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8s.sig.auth)
-|[Autoscaling](sig-autoscaling/README.md)|autoscaling|* [Marcin Wielgus](https://github.com/mwielgus), Google
* [Solly Ross](https://github.com/directxman12), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-autoscaling)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling)|* [Mondays at 14:00 UTC (biweekly/triweekly)](https://zoom.us/my/k8s.sig.autoscaling)
-|[Azure](sig-azure/README.md)|azure|* [Jason Hansen](https://github.com/slack), Microsoft
* [Cole Mickens](https://github.com/colemickens), Microsoft
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-azure)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-azure)|* [Wednesdays at 16:00 UTC (biweekly)](https://deis.zoom.us/j/2018742972)
-|[Big Data](sig-big-data/README.md)|big-data|* [Anirudh Ramanathan](https://github.com/foxish), Google
* [Erik Erlandson](https://github.com/erikerlandson), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-big-data)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)|* [Wednesdays at 17:00 UTC (weekly)](https://zoom.us/my/sig.big.data)
-|[CLI](sig-cli/README.md)|cli|* [Fabiano Franz](https://github.com/fabianofranz), Red Hat
* [Phillip Wittrock](https://github.com/pwittrock), Google
* [Tony Ado](https://github.com/AdoHe), Alibaba
|* [Slack](https://kubernetes.slack.com/messages/sig-cli)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)|* [Wednesdays at 09:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/sigcli)
-|[Cluster Lifecycle](sig-cluster-lifecycle/README.md)|cluster-lifecycle|* [Luke Marsden](https://github.com/lukemarsden), Weave
* [Joe Beda](https://github.com/jbeda), Heptio
* [Robert Bailey](https://github.com/roberthbailey), Google
* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* [Tuesdays at 09:00 PT (Pacific Time) (weekly)](https://zoom.us/j/166836%E2%80%8B624)
-|[Cluster Ops](sig-cluster-ops/README.md)|cluster-ops|* [Rob Hirschfeld](https://github.com/zehicle), RackN
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)|* [Thursdays at 20:00 UTC (biweekly)](https://zoom.us/j/297937771)
-|[Contributor Experience](sig-contributor-experience/README.md)|contributor-experience|* [Garrett Rodrigues](https://github.com/grodrigues3), Google
* [Elsie Phillips](https://github.com/Phillels), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-contribex)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)|* [Wednesdays at 9:30 PT (Pacific Time) (biweekly)](https://zoom.us/j/7658488911)
-|[Docs](sig-docs/README.md)|docs|* [Devin Donnelly](https://github.com/devin-donnelly), Google
* [Jared Bhatti](https://github.com/jaredbhatti), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-docs)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)|* [Tuesdays at 17:30 UTC (weekly)](https://zoom.us/j/678394311)
-|[GCP](sig-gcp/README.md)||* [Adam Worrall](https://github.com/abgworrall), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-gcp)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-gcp)|* [Thursdays at 16:00 UTC (biweekly)](https://zoom.us/j/761149873)
-|[Instrumentation](sig-instrumentation/README.md)|instrumentation|* [Piotr Szczesniak](https://github.com/piosz), Google
* [Fabian Reinartz](https://github.com/fabxc), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)|* [Thursdays at 17:30 UTC (biweekly)](https://zoom.us/j/5342565819)
-|[Multicluster](sig-multicluster/README.md)|multicluster|* [Christian Bell](https://github.com/csbell), Google
* [Quinton Hoole](https://github.com/quinton-hoole), Huawei
|* [Slack](https://kubernetes.slack.com/messages/sig-multicluster)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster)|* [Tuesdays at 9:30 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8s.mc)
-|[Network](sig-network/README.md)|network|* [Tim Hockin](https://github.com/thockin), Google
* [Dan Williams](https://github.com/dcbw), Red Hat
* [Casey Davenport](https://github.com/caseydavenport), Tigera
|* [Slack](https://kubernetes.slack.com/messages/sig-network)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-network)|* [Thursdays at 14:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/5806599998)
-|[Node](sig-node/README.md)|node|* [Dawn Chen](https://github.com/dchen1107), Google
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-node)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-node)|* [Tuesdays at 10:00 PT (Pacific Time) (weekly)](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0)
-|[On Premise](sig-on-premise/README.md)|onprem|* [Marco Ceppi](https://github.com/marcoceppi), Canonical
* [Dalton Hubble](https://github.com/dghubble), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-onprem)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem)|* [Wednesdays at 16:00 UTC (weekly)](https://zoom.us/my/k8s.sig.onprem)
-|[OpenStack](sig-openstack/README.md)|openstack|* [Chris Hoge](https://github.com/hogepodge), OpenStack Foundation
* [David Lyle](https://github.com/dklyle), Intel
* [Robert Morse](https://github.com/rjmorse), Ticketmaster
|* [Slack](https://kubernetes.slack.com/messages/sig-openstack)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)|* [Thursdays at 00:00 UTC (biweekly)](https://zoom.us/j/417251241)
-|[Product Management](sig-product-management/README.md)|none|* [Aparna Sinha](https://github.com/apsinha), Google
* [Ihor Dvoretskyi](https://github.com/idvoretskyi), CNCF
* [Caleb Miles](https://github.com/calebamiles), Google
|* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-pm)|* [Tuesdays at 15:00 UTC (biweekly)](https://zoom.us/j/845373595)
-|[Release](sig-release/README.md)|release|* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
* [Caleb Miles](https://github.com/calebamiles), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-release)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-release)|* [Tuesdays at 21:00 UTC (biweekly)](https://zoom.us/j/664772523)
-|[Scalability](sig-scalability/README.md)|scalability|* [Wojciech Tyczynski](https://github.com/wojtek-t), Google
* [Bob Wise](https://github.com/countspongebob), Samsung SDS
|* [Slack](https://kubernetes.slack.com/messages/sig-scalability)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)|* [Thursdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/989573207)
-|[Scheduling](sig-scheduling/README.md)|scheduling|* [David Oppenheimer](https://github.com/davidopp), Google
* [Timothy St. Clair](https://github.com/timothysc), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* [Mondays at 20:00 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)
* [Wednesdays at 07:30 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)
-|[Service Catalog](sig-service-catalog/README.md)|service-catalog|* [Paul Morie](https://github.com/pmorie), Red Hat
* [Aaron Schlesinger](https://github.com/arschles), Microsoft
* [Ville Aikas](https://github.com/vaikas-google), Google
* [Doug Davis](https://github.com/duglin), IBM
|* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)|* [Mondays at 20:00 UTC (weekly)](https://zoom.us/j/7201225346)
-|[Storage](sig-storage/README.md)|storage|* [Saad Ali](https://github.com/saad-ali), Google
* [Bradley Childs](https://github.com/childsb), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-storage)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)|* [Thursdays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/614261834)
-|[Testing](sig-testing/README.md)|testing|* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS
* [Erick Feja](https://github.com/fejta), Google
* [Steve Kuznetsov](https://github.com/stevekuznetsov), Red Hat
* [Timothy St. Clair](https://github.com/timothysc), Heptio
|* [Slack](https://kubernetes.slack.com/messages/sig-testing)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-testing)|* [Tuesdays at 13:00 PT (Pacific Time) (weekly)](https://zoom.us/my/k8s.sig.testing)
-|[UI](sig-ui/README.md)|ui|* [Dan Romlein](https://github.com/danielromlein), Google
* [Sebastian Florek](https://github.com/floreks), Fujitsu
|* [Slack](https://kubernetes.slack.com/messages/sig-ui)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)|* [Thursdays at 18:00 CET (Central European Time) (weekly)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)
-|[Windows](sig-windows/README.md)|windows|* [Michael Michael](https://github.com/michmike), Apprenda
|* [Slack](https://kubernetes.slack.com/messages/sig-windows)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-windows)|* [Tuesdays at 12:30 Eastern Standard Time (EST) (weekly)](https://zoom.us/my/sigwindows)
+|[API Machinery](sig-api-machinery/README.md)|api-machinery|* [Daniel Smith](https://github.com/lavalamp), Google
* [David Eads](https://github.com/deads2k), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery)|* Regular SIG Meeting: [Wednesdays at 11:00 PT (Pacific Time) (biweekly)](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig)
+|[AWS](sig-aws/README.md)|aws|* [Justin Santa Barbara](https://github.com/justinsb)
* [Kris Nova](https://github.com/kris-nova), Heptio
* [Chris Love](https://github.com/chrislovecnm)
* [Mackenzie Burnett](https://github.com/mfburnett), Redspread
|* [Slack](https://kubernetes.slack.com/messages/sig-aws)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)|* Regular SIG Meeting: [Fridays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8ssigaws)
+|[Apps](sig-apps/README.md)|apps|* [Michelle Noorali](https://github.com/michelleN), Microsoft
* [Matt Farina](https://github.com/mattfarina), Samsung SDS
* [Adnan Abdulhussein](https://github.com/prydonius), Bitnami
* [Kenneth Owens](https://github.com/kow3ns), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-apps)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)|* Regular SIG Meeting: [Mondays at 9:00 PT (Pacific Time) (weekly)](https://zoom.us/my/sig.apps)
+|[Architecture](sig-architecture/README.md)|architecture|* [Brian Grant](https://github.com/bgrant0607), Google
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-architecture)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)|* Regular SIG Meeting: [Thursdays at 15:30 UTC (weekly)](https://zoom.us/j/2018742972)
+|[Auth](sig-auth/README.md)|auth|* [Eric Chiang](https://github.com/ericchiang), CoreOS
* [Jordan Liggitt](https://github.com/liggitt), Red Hat
* [David Eads](https://github.com/deads2k), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-auth)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-auth)|* Regular SIG Meeting: [Wednesdays at 11:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8s.sig.auth)
+|[Autoscaling](sig-autoscaling/README.md)|autoscaling|* [Marcin Wielgus](https://github.com/mwielgus), Google
* [Solly Ross](https://github.com/directxman12), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-autoscaling)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling)|* Regular SIG Meeting: [Mondays at 14:00 UTC (biweekly/triweekly)](https://zoom.us/my/k8s.sig.autoscaling)
+|[Azure](sig-azure/README.md)|azure|* [Jason Hansen](https://github.com/slack), Microsoft
* [Cole Mickens](https://github.com/colemickens), Microsoft
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-azure)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-azure)|* Regular SIG Meeting: [Wednesdays at 16:00 UTC (biweekly)](https://deis.zoom.us/j/2018742972)
+|[Big Data](sig-big-data/README.md)|big-data|* [Anirudh Ramanathan](https://github.com/foxish), Google
* [Erik Erlandson](https://github.com/erikerlandson), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-big-data)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)|* Regular SIG Meeting: [Wednesdays at 17:00 UTC (weekly)](https://zoom.us/my/sig.big.data)
+|[CLI](sig-cli/README.md)|cli|* [Fabiano Franz](https://github.com/fabianofranz), Red Hat
* [Phillip Wittrock](https://github.com/pwittrock), Google
* [Tony Ado](https://github.com/AdoHe), Alibaba
|* [Slack](https://kubernetes.slack.com/messages/sig-cli)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)|* Regular SIG Meeting: [Wednesdays at 09:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/sigcli)
+|[Cluster Lifecycle](sig-cluster-lifecycle/README.md)|cluster-lifecycle|* [Luke Marsden](https://github.com/lukemarsden), Weave
* [Joe Beda](https://github.com/jbeda), Heptio
* [Robert Bailey](https://github.com/roberthbailey), Google
* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* Regular SIG Meeting: [Tuesdays at 09:00 PT (Pacific Time) (weekly)](https://zoom.us/j/166836%E2%80%8B624)
+|[Cluster Ops](sig-cluster-ops/README.md)|cluster-ops|* [Rob Hirschfeld](https://github.com/zehicle), RackN
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)|* Regular SIG Meeting: [Thursdays at 20:00 UTC (biweekly)](https://zoom.us/j/297937771)
+|[Contributor Experience](sig-contributor-experience/README.md)|contributor-experience|* [Garrett Rodrigues](https://github.com/grodrigues3), Google
* [Elsie Phillips](https://github.com/Phillels), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-contribex)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)|* Regular SIG Meeting: [Wednesdays at 9:30 PT (Pacific Time) (biweekly)](https://zoom.us/j/7658488911)
+|[Docs](sig-docs/README.md)|docs|* [Devin Donnelly](https://github.com/devin-donnelly), Google
* [Jared Bhatti](https://github.com/jaredbhatti), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-docs)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)|* Regular SIG Meeting: [Tuesdays at 17:30 UTC (weekly)](https://zoom.us/j/678394311)
+|[GCP](sig-gcp/README.md)|gcp|* [Adam Worrall](https://github.com/abgworrall), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-gcp)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-gcp)|* Regular SIG Meeting: [Thursdays at 16:00 UTC (biweekly)](https://zoom.us/j/761149873)
+|[Instrumentation](sig-instrumentation/README.md)|instrumentation|* [Piotr Szczesniak](https://github.com/piosz), Google
* [Fabian Reinartz](https://github.com/fabxc), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)|* Regular SIG Meeting: [Thursdays at 17:30 UTC (biweekly)](https://zoom.us/j/5342565819)
+|[Multicluster](sig-multicluster/README.md)|multicluster|* [Christian Bell](https://github.com/csbell), Google
* [Quinton Hoole](https://github.com/quinton-hoole), Huawei
|* [Slack](https://kubernetes.slack.com/messages/sig-multicluster)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster)|* Regular SIG Meeting: [Tuesdays at 9:30 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8s.mc)
+|[Network](sig-network/README.md)|network|* [Tim Hockin](https://github.com/thockin), Google
* [Dan Williams](https://github.com/dcbw), Red Hat
* [Casey Davenport](https://github.com/caseydavenport), Tigera
|* [Slack](https://kubernetes.slack.com/messages/sig-network)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-network)|* Regular SIG Meeting: [Thursdays at 14:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/5806599998)
+|[Node](sig-node/README.md)|node|* [Dawn Chen](https://github.com/dchen1107), Google
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-node)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-node)|* Regular SIG Meeting: [Tuesdays at 10:00 PT (Pacific Time) (weekly)](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0)
+|[On Premise](sig-on-premise/README.md)|onprem|* [Marco Ceppi](https://github.com/marcoceppi), Canonical
* [Dalton Hubble](https://github.com/dghubble), CoreOS
|* [Slack](https://kubernetes.slack.com/messages/sig-onprem)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem)|* Regular SIG Meeting: [Wednesdays at 16:00 UTC (weekly)](https://zoom.us/my/k8s.sig.onprem)
+|[OpenStack](sig-openstack/README.md)|openstack|* [Chris Hoge](https://github.com/hogepodge), OpenStack Foundation
* [David Lyle](https://github.com/dklyle), Intel
* [Robert Morse](https://github.com/rjmorse), Ticketmaster
|* [Slack](https://kubernetes.slack.com/messages/sig-openstack)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)|* Regular SIG Meeting: [Thursdays at 00:00 UTC (biweekly)](https://zoom.us/j/417251241)
+|[Product Management](sig-product-management/README.md)|none|* [Aparna Sinha](https://github.com/apsinha), Google
* [Ihor Dvoretskyi](https://github.com/idvoretskyi), CNCF
* [Caleb Miles](https://github.com/calebamiles), Google
|* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-pm)|* Regular SIG Meeting: [Tuesdays at 15:00 UTC (biweekly)](https://zoom.us/j/845373595)
+|[Release](sig-release/README.md)|release|* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
* [Caleb Miles](https://github.com/calebamiles), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-release)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-release)|* Regular SIG Meeting: [Tuesdays at 21:00 UTC (biweekly)](https://zoom.us/j/664772523)
+|[Scalability](sig-scalability/README.md)|scalability|* [Wojciech Tyczynski](https://github.com/wojtek-t), Google
* [Bob Wise](https://github.com/countspongebob), Samsung SDS
|* [Slack](https://kubernetes.slack.com/messages/sig-scalability)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)|* Regular SIG Meeting: [Thursdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/989573207)
+|[Scheduling](sig-scheduling/README.md)|scheduling|* [David Oppenheimer](https://github.com/davidopp), Google
* [Timothy St. Clair](https://github.com/timothysc), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* Regular SIG Meeting: [Mondays at 20:00 UTC (biweekly)]()
* : [Wednesdays at 07:30 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)
+|[Service Catalog](sig-service-catalog/README.md)|service-catalog|* [Paul Morie](https://github.com/pmorie), Red Hat
* [Aaron Schlesinger](https://github.com/arschles), Microsoft
* [Ville Aikas](https://github.com/vaikas-google), Google
* [Doug Davis](https://github.com/duglin), IBM
|* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)|* Regular SIG Meeting: [Mondays at 20:00 UTC (weekly)](https://zoom.us/j/7201225346)
+|[Storage](sig-storage/README.md)|storage|* [Saad Ali](https://github.com/saad-ali), Google
* [Bradley Childs](https://github.com/childsb), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/sig-storage)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)|* Regular SIG Meeting: [Thursdays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/614261834)
+|[Testing](sig-testing/README.md)|testing|* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS
* [Erick Feja](https://github.com/fejta), Google
* [Steve Kuznetsov](https://github.com/stevekuznetsov), Red Hat
* [Timothy St. Clair](https://github.com/timothysc), Heptio
|* [Slack](https://kubernetes.slack.com/messages/sig-testing)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-testing)|* Regular SIG Meeting: [Tuesdays at 13:00 PT (Pacific Time) (weekly)](https://zoom.us/my/k8s.sig.testing)
+|[UI](sig-ui/README.md)|ui|* [Dan Romlein](https://github.com/danielromlein), Google
* [Sebastian Florek](https://github.com/floreks), Fujitsu
|* [Slack](https://kubernetes.slack.com/messages/sig-ui)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)|* Regular SIG Meeting: [Thursdays at 18:00 CET (Central European Time) (weekly)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)
+|[Windows](sig-windows/README.md)|windows|* [Michael Michael](https://github.com/michmike), Apprenda
|* [Slack](https://kubernetes.slack.com/messages/sig-windows)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-windows)|* Regular SIG Meeting: [Tuesdays at 12:30 Eastern Standard Time (EST) (weekly)](https://zoom.us/my/sigwindows)
### Master Working Group List
| Name | Organizers | Contact | Meetings |
|------|------------|---------|----------|
-|[App Def](wg-app-def/README.md)|* [Antoine Legrand](https://github.com/ant31), CoreOS
* [Sebastien Goasguen](https://github.com/sebgoa), Bitnami
|* [Slack](https://kubernetes.slack.com/messages/wg-app-def)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-app-def)|* [Wednesdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/748123863)
-|[Cloud Provider](wg-cloud-provider/README.md)|* [Sidhartha Mani](https://github.com/wlan0), Caascade Labs
* [Jago Macleod](https://github.com/jagosan), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-cloud-provider)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider)|* [Wednesdays at 10:00 PT (Pacific Time) (weekly)](https://zoom.us/my/cloudprovider)
+|[App Def](wg-app-def/README.md)|* [Antoine Legrand](https://github.com/ant31), CoreOS
* [Sebastien Goasguen](https://github.com/sebgoa), Bitnami
|* [Slack](https://kubernetes.slack.com/messages/wg-app-def)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-app-def)|* Regular WG Meeting: [Wednesdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/748123863)
+|[Cloud Provider](wg-cloud-provider/README.md)|* [Sidhartha Mani](https://github.com/wlan0), Caascade Labs
* [Jago Macleod](https://github.com/jagosan), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-cloud-provider)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider)|* Regular WG Meeting: [Wednesdays at 10:00 PT (Pacific Time) (weekly)](https://zoom.us/my/cloudprovider)
|[Cluster API](wg-cluster-api/README.md)|* [Kris Nova](https://github.com/kris-nova), Heptio
* [Robert Bailey](https://github.com/roberthbailey), Google
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|
-|[Container Identity](wg-container-identity/README.md)|* [Clayton Coleman](https://github.com/smarterclayton), Red Hat
* [Greg Gastle](https://github.com/destijl), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-container-identity)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity)|* [Tuesdays at 15:00 UTC (bi-weekly (On demand))](TBD)
-|[Kubeadm Adoption](wg-kubeadm-adoption/README.md)|* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)
* [Justin Santa Barbara](https://github.com/justinsb)
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* [Tuesdays at 18:00 UTC (bi-weekly)](https://zoom.us/j/166836%E2%80%8B624)
+|[Container Identity](wg-container-identity/README.md)|* [Clayton Coleman](https://github.com/smarterclayton), Red Hat
* [Greg Gastle](https://github.com/destijl), Google
|* [Slack](https://kubernetes.slack.com/messages/wg-container-identity)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity)|* Regular WG Meeting: [Tuesdays at 15:00 UTC (bi-weekly (On demand))](TBD)
+|[Kubeadm Adoption](wg-kubeadm-adoption/README.md)|* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)
* [Justin Santa Barbara](https://github.com/justinsb)
|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* Regular WG Meeting: [Tuesdays at 18:00 UTC (bi-weekly)](https://zoom.us/j/166836%E2%80%8B624)
|[Multitenancy](wg-multitenancy/README.md)|* [David Oppenheimer](https://github.com/davidopp), Google
* [Jessie Frazelle](https://github.com/jessfraz), Microsoft
|* [Slack](https://kubernetes.slack.com/messages/wg-multitenancy)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy)|
-|[Resource Management](wg-resource-management/README.md)|* [Vishnu Kannan](https://github.com/vishh), Google
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
|* [Slack](https://kubernetes.slack.com/messages/wg-resource-mgmt)
* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management)|* [Wednesdays at 11:00 PT (Pacific Time) (weekly (On demand))](https://zoom.us/j/4799874685)
+|[Resource Management](wg-resource-management/README.md)|* [Vishnu Kannan](https://github.com/vishh), Google
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
|* [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) (weekly (On demand))](https://zoom.us/j/4799874685)
diff --git a/sig-multicluster/README.md b/sig-multicluster/README.md
index c333896bc..6c68382ca 100644
--- a/sig-multicluster/README.md
+++ b/sig-multicluster/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers multi-cluster Kubernetes use cases and tooling. This includes: application resiliency against availability zone outages; hybrid clouds; spanning of multiple could providers; application migration from private to public clouds (and vice versa); and other similar subjects. This SIG was formerly called sig-federation and focused on the Federation project, but expanded its charter to all multi-cluster concerns in August 2017.
## Meetings
-* [Tuesdays at 9:30 PT (Pacific Time)](https://zoom.us/my/k8s.mc) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:30&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-).
+* Regular SIG Meeting: [Tuesdays at 9:30 PT (Pacific Time)](https://zoom.us/my/k8s.mc) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:30&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-).
## Leads
* Christian Bell (**[@csbell](https://github.com/csbell)**), Google
diff --git a/sig-network/README.md b/sig-network/README.md
index a2ce25cc5..10a899d04 100644
--- a/sig-network/README.md
+++ b/sig-network/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers networking in Kubernetes.
## Meetings
-* [Thursdays at 14:00 PT (Pacific Time)](https://zoom.us/j/5806599998) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb).
+* Regular SIG Meeting: [Thursdays at 14:00 PT (Pacific Time)](https://zoom.us/j/5806599998) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb).
## Leads
* Tim Hockin (**[@thockin](https://github.com/thockin)**), Google
diff --git a/sig-node/README.md b/sig-node/README.md
index 5475df5dc..e65f7ac1b 100644
--- a/sig-node/README.md
+++ b/sig-node/README.md
@@ -10,10 +10,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
## Meetings
-* [Tuesdays at 10:00 PT (Pacific Time)](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=10:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG).
+* Regular SIG Meeting: [Tuesdays at 10:00 PT (Pacific Time)](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0) (weekly). [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/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing).
+ * [Meeting recordings](https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG).
## Leads
* Dawn Chen (**[@dchen1107](https://github.com/dchen1107)**), Google
diff --git a/sig-on-premise/README.md b/sig-on-premise/README.md
index 7be087f80..38ba7049e 100644
--- a/sig-on-premise/README.md
+++ b/sig-on-premise/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Brings together member of Kubernetes community interested in running Kubernetes on premise, on bare metal or more generally beyond cloud providers.
## Meetings
-* [Wednesdays at 16:00 UTC](https://zoom.us/my/k8s.sig.onprem) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa).
+* Regular SIG Meeting: [Wednesdays at 16:00 UTC](https://zoom.us/my/k8s.sig.onprem) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#).
+ * [Meeting recordings](https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa).
## Leads
* Marco Ceppi (**[@marcoceppi](https://github.com/marcoceppi)**), Canonical
diff --git a/sig-openstack/README.md b/sig-openstack/README.md
index 1bae60630..8624af655 100644
--- a/sig-openstack/README.md
+++ b/sig-openstack/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Coordinates the cross-community efforts of the OpenStack and Kubernetes communities. This includes OpenStack-related contributions to Kubernetes projects with OpenStack as: a deployment platform for Kubernetes; a service provider for Kubernetes; a collection of applications to run on Kubernetes.
## Meetings
-* [Thursdays at 00:00 UTC](https://zoom.us/j/417251241) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=00:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax).
+* Regular SIG Meeting: [Thursdays at 00:00 UTC](https://zoom.us/j/417251241) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=00:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f).
+ * [Meeting recordings](https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax).
## Leads
* Chris Hoge (**[@hogepodge](https://github.com/hogepodge)**), OpenStack Foundation
diff --git a/sig-product-management/README.md b/sig-product-management/README.md
index 5052c7017..1219906c7 100644
--- a/sig-product-management/README.md
+++ b/sig-product-management/README.md
@@ -14,10 +14,9 @@ Members of the Kubernetes PM Group can assume certain additional responsibilitie
It is also important to remember that the role of managing an open source project is very new and largely unscoped for a project as large as Kubernetes; we are learning too and we are excited to learn how we can best serve the community of users and contributors.
## Meetings
-* [Tuesdays at 15:00 UTC](https://zoom.us/j/845373595) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ).
+* Regular SIG Meeting: [Tuesdays at 15:00 UTC](https://zoom.us/j/845373595) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing).
+ * [Meeting recordings](https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ).
## Leads
* Aparna Sinha (**[@apsinha](https://github.com/apsinha)**), Google
diff --git a/sig-release/README.md b/sig-release/README.md
index 529d1c7a9..e83617ace 100644
--- a/sig-release/README.md
+++ b/sig-release/README.md
@@ -10,10 +10,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
## Meetings
-* [Tuesdays at 21:00 UTC](https://zoom.us/j/664772523) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=21:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ).
+* Regular SIG Meeting: [Tuesdays at 21:00 UTC](https://zoom.us/j/664772523) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=21:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing).
+ * [Meeting recordings](https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ).
## Leads
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
diff --git a/sig-scalability/README.md b/sig-scalability/README.md
index bf1dd57e7..41f99edab 100644
--- a/sig-scalability/README.md
+++ b/sig-scalability/README.md
@@ -13,10 +13,9 @@ What size clusters do we think that we should support with Kubernetes in the sho
For more details about our objectives please review our [Scaling And Performance Goals](https://git.k8s.io/community/sig-scalability/goals.md)
## Meetings
-* [Thursdays at 16:00 UTC](https://zoom.us/j/989573207) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL).
+* Regular SIG Meeting: [Thursdays at 16:00 UTC](https://zoom.us/j/989573207) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web).
+ * [Meeting recordings](https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL).
## Leads
* Wojciech Tyczynski (**[@wojtek-t](https://github.com/wojtek-t)**), Google
diff --git a/sig-scheduling/README.md b/sig-scheduling/README.md
index 22f4cfdfb..4f68f26ce 100644
--- a/sig-scheduling/README.md
+++ b/sig-scheduling/README.md
@@ -10,11 +10,10 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
## Meetings
-* [Mondays at 20:00 UTC](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
-* [Wednesdays at 07:30 UTC](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=07:30&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI).
+* Regular SIG Meeting: [Mondays at 20:00 UTC]() (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
+* : [Wednesdays at 07:30 UTC](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=07:30&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI).
## Leads
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
diff --git a/sig-service-catalog/README.md b/sig-service-catalog/README.md
index 0070a6292..ef949933b 100644
--- a/sig-service-catalog/README.md
+++ b/sig-service-catalog/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
To develop a Kubernetes API for the CNCF service broker and Kubernetes broker implementation.
## Meetings
-* [Mondays at 20:00 UTC](https://zoom.us/j/7201225346) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs).
+* Regular SIG Meeting: [Mondays at 20:00 UTC](https://zoom.us/j/7201225346) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs).
## Leads
* Paul Morie (**[@pmorie](https://github.com/pmorie)**), Red Hat
diff --git a/sig-storage/README.md b/sig-storage/README.md
index eafe46995..4e9b98b0e 100644
--- a/sig-storage/README.md
+++ b/sig-storage/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers storage and volume plugins.
## Meetings
-* [Thursdays at 9:00 PT (Pacific Time)](https://zoom.us/j/614261834) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq).
+* Regular SIG Meeting: [Thursdays at 9:00 PT (Pacific Time)](https://zoom.us/j/614261834) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
+ * [Meeting recordings](https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq).
## Leads
* Saad Ali (**[@saad-ali](https://github.com/saad-ali)**), Google
diff --git a/sig-testing/README.md b/sig-testing/README.md
index 612a3f52c..d2214a89d 100644
--- a/sig-testing/README.md
+++ b/sig-testing/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Interested in how we can most effectively test Kubernetes. We're interested specifically in making it easier for the community to run tests and contribute test results, to ensure Kubernetes is stable across a variety of cluster configurations and cloud providers.
## Meetings
-* [Tuesdays at 13:00 PT (Pacific Time)](https://zoom.us/my/k8s.sig.testing) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=13:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://bit.ly/k8s-sig-testing-notes).
-Meeting recordings can be found [here](https://bit.ly/k8s-sig-testing-videos).
+* Regular SIG Meeting: [Tuesdays at 13:00 PT (Pacific Time)](https://zoom.us/my/k8s.sig.testing) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=13:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://bit.ly/k8s-sig-testing-notes).
+ * [Meeting recordings](https://bit.ly/k8s-sig-testing-videos).
## Leads
* Aaron Crickenberger (**[@spiffxp](https://github.com/spiffxp)**), Samsung SDS
diff --git a/sig-ui/README.md b/sig-ui/README.md
index 3488f8424..05c4f4170 100644
--- a/sig-ui/README.md
+++ b/sig-ui/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Covers all things UI related. Efforts are centered around Kubernetes Dashboard: a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.
## Meetings
-* [Thursdays at 18:00 CET (Central European Time)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=CET%20%28Central%20European%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing).
-
+* Regular SIG Meeting: [Thursdays at 18:00 CET (Central European Time)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=CET%20%28Central%20European%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing).
## Leads
* Dan Romlein (**[@danielromlein](https://github.com/danielromlein)**), Google
diff --git a/sig-windows/README.md b/sig-windows/README.md
index 381dc0a36..fc1dee2d2 100644
--- a/sig-windows/README.md
+++ b/sig-windows/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Focuses on supporting Windows Server Containers for Kubernetes.
## Meetings
-* [Tuesdays at 12:30 Eastern Standard Time (EST)](https://zoom.us/my/sigwindows) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=12:30&tz=Eastern%20Standard%20Time%20%28EST%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4).
+* Regular SIG Meeting: [Tuesdays at 12:30 Eastern Standard Time (EST)](https://zoom.us/my/sigwindows) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=12:30&tz=Eastern%20Standard%20Time%20%28EST%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431).
+ * [Meeting recordings](https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4).
## Leads
* Michael Michael (**[@michmike](https://github.com/michmike)**), Apprenda
diff --git a/sigs.yaml b/sigs.yaml
index d4c556cba..4be8dfb0c 100644
--- a/sigs.yaml
+++ b/sigs.yaml
@@ -15,13 +15,14 @@ sigs:
company: Red Hat
github: deads2k
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig
- meeting_archive_url: https://goo.gl/x5nWrF
- meeting_recordings_url: https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
+ url: https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig
+ archive_url: https://goo.gl/x5nWrF
+ recordings_url: https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
contact:
slack: sig-api-machinery
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery
@@ -63,13 +64,14 @@ sigs:
github: kow3ns
company: Google
meetings:
- - day: Monday
+ - description: Regular SIG Meeting
+ day: Monday
time: "9:00"
tz: "PT (Pacific Time)"
frequency: weekly
- meeting_url: https://zoom.us/my/sig.apps
- meeting_archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
- meeting_recordings_url: https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
+ url: https://zoom.us/my/sig.apps
+ archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
+ recordings_url: https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
contact:
slack: sig-apps
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-apps
@@ -102,13 +104,14 @@ sigs:
github: jdumars
company: Microsoft
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "15:30"
tz: "UTC"
frequency: weekly
- meeting_url: https://zoom.us/j/2018742972
- meeting_archive_url: https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
+ url: https://zoom.us/j/2018742972
+ archive_url: https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit
+ recordings_url: https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
contact:
slack: sig-architecture
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-architecture
@@ -144,13 +147,14 @@ sigs:
github: deads2k
company: Red Hat
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/my/k8s.sig.auth
- meeting_archive_url: https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#
- meeting_recordings_url: https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw
+ url: https://zoom.us/my/k8s.sig.auth
+ archive_url: https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#
+ recordings_url: https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw
contact:
slack: sig-auth
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-auth
@@ -184,13 +188,13 @@ sigs:
github: directxman12
company: Red Hat
meetings:
- - day: Monday
+ - description: Regular SIG Meeting
+ day: Monday
time: "14:00"
tz: "UTC"
frequency: biweekly/triweekly
- meeting_url: https://zoom.us/my/k8s.sig.autoscaling
- meeting_archive_url: https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit
- meeting_recordings_url:
+ url: https://zoom.us/my/k8s.sig.autoscaling
+ archive_url: https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit
contact:
slack: sig-autoscaling
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling
@@ -226,13 +230,13 @@ sigs:
github: mfburnett
company: Redspread
meetings:
- - day: Friday
- time: "9:00" # Actually 9AM Pacific, but timezone support issue is https://github.com/kubernetes/community/issues/841
+ - description: Regular SIG Meeting
+ day: Friday
+ time: "9:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/my/k8ssigaws
- meeting_archive_url: https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit
- meeting_recordings_url:
+ url: https://zoom.us/my/k8ssigaws
+ archive_url: https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit
contact:
slack: sig-aws
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-aws
@@ -256,13 +260,14 @@ sigs:
github: jdumars
company: Microsoft
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "16:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://deis.zoom.us/j/2018742972
- meeting_archive_url: https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4
+ url: https://deis.zoom.us/j/2018742972
+ archive_url: https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit
+ recordings_url: https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4
contact:
slack: sig-azure
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-azure
@@ -284,13 +289,14 @@ sigs:
github: erikerlandson
company: Red Hat
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "17:00"
tz: "UTC"
frequency: weekly
- meeting_url: https://zoom.us/my/sig.big.data
- meeting_archive_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
- meeting_recordings_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
+ url: https://zoom.us/my/sig.big.data
+ archive_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
+ recordings_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
contact:
slack: sig-big-data
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-big-data
@@ -329,13 +335,14 @@ sigs:
github: AdoHe
company: Alibaba
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "09:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/my/sigcli
- meeting_archive_url: https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing
- meeting_recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF
+ url: https://zoom.us/my/sigcli
+ archive_url: https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing
+ recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF
contact:
slack: sig-cli
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cli
@@ -376,13 +383,14 @@ sigs:
github: luxas
company: Luxas Labs (occasionally contracting for Weaveworks)
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "09:00"
tz: "PT (Pacific Time)"
frequency: weekly
- meeting_url: https://zoom.us/j/166836%E2%80%8B624
- meeting_archive_url: https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
+ url: https://zoom.us/j/166836%E2%80%8B624
+ archive_url: https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit
+ recordings_url: https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
contact:
slack: sig-cluster-lifecycle
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
@@ -417,13 +425,14 @@ sigs:
github: jdumars
company: Microsoft
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "20:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/297937771
- meeting_archive_url: https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#
- meeting_recordings_url: https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR
+ url: https://zoom.us/j/297937771
+ archive_url: https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#
+ recordings_url: https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR
contact:
slack: sig-cluster-ops
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops
@@ -444,13 +453,14 @@ sigs:
github: Phillels
company: CoreOS
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "9:30"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/j/7658488911
- meeting_archive_url: https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/
- meeting_recordings_url: https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr
+ url: https://zoom.us/j/7658488911
+ archive_url: https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/
+ recordings_url: https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr
contact:
slack: sig-contribex
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-contribex
@@ -480,13 +490,14 @@ sigs:
github: jaredbhatti
company: Google
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "17:30"
tz: "UTC"
frequency: weekly
- meeting_url: https://zoom.us/j/678394311
- meeting_archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
- meeting_recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
+ url: https://zoom.us/j/678394311
+ archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
+ recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
contact:
slack: sig-docs
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-docs
@@ -500,17 +511,19 @@ sigs:
mission_statement: >
A Special Interest Group for building, deploying, maintaining,
supporting, and using Kubernetes on the Google Cloud Platform.
+ label: gcp
leads:
- name: Adam Worrall
github: abgworrall
company: Google
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "16:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/761149873
- meeting_archive_url: https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit
+ url: https://zoom.us/j/761149873
+ archive_url: https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit
contact:
slack: sig-gcp
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-gcp
@@ -544,13 +557,13 @@ sigs:
github: fabxc
company: CoreOS
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "17:30"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/5342565819
- meeting_archive_url: https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit
- meeting_recordings_url:
+ url: https://zoom.us/j/5342565819
+ archive_url: https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit
contact:
slack: sig-instrumentation
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation
@@ -587,13 +600,14 @@ sigs:
github: quinton-hoole
company: Huawei
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "9:30"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/my/k8s.mc
- meeting_archive_url: https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-
+ url: https://zoom.us/my/k8s.mc
+ archive_url: https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit
+ recordings_url: https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-
contact:
slack: sig-multicluster
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster
@@ -628,13 +642,14 @@ sigs:
github: caseydavenport
company: Tigera
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "14:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/j/5806599998
- meeting_archive_url: https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb
+ url: https://zoom.us/j/5806599998
+ archive_url: https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit
+ recordings_url: https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb
contact:
slack: sig-network
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-network
@@ -665,13 +680,14 @@ sigs:
github: derekwaynecarr
company: Red Hat
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "10:00"
tz: "PT (Pacific Time)"
frequency: weekly
- meeting_url: https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0
- meeting_archive_url: https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing
- meeting_recordings_url: https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG
+ url: https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0
+ archive_url: https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing
+ recordings_url: https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG
contact:
slack: sig-node
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-node
@@ -703,13 +719,14 @@ sigs:
github: dghubble
company: CoreOS
meetings:
- - day: Wednesday
+ - description: Regular SIG Meeting
+ day: Wednesday
time: "16:00"
tz: "UTC"
frequency: weekly
- meeting_url: https://zoom.us/my/k8s.sig.onprem
- meeting_archive_url: https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#
- meeting_recordings_url: https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa
+ url: https://zoom.us/my/k8s.sig.onprem
+ archive_url: https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#
+ recordings_url: https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa
contact:
slack: sig-onprem
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem
@@ -748,13 +765,14 @@ sigs:
github: rjmorse
company: Ticketmaster
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "00:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/417251241
- meeting_archive_url: https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f
- meeting_recordings_url: https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax
+ url: https://zoom.us/j/417251241
+ archive_url: https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f
+ recordings_url: https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax
contact:
slack: sig-openstack
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-openstack
@@ -806,13 +824,14 @@ sigs:
github: calebamiles
company: Google
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "15:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/845373595
- meeting_archive_url: https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing
- meeting_recordings_url: https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ
+ url: https://zoom.us/j/845373595
+ archive_url: https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing
+ recordings_url: https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ
contact:
slack: kubernetes-pm
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-pm
@@ -820,20 +839,21 @@ sigs:
dir: sig-release
label: release
leads:
- - name: Jaice Singer DuMars
+ - name: Jaice Singer DuMars
github: jdumars
company: Microsoft
- name: Caleb Miles
github: calebamiles
company: Google
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "21:00"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/j/664772523
- meeting_archive_url: https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing
- meeting_recordings_url: https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ
+ url: https://zoom.us/j/664772523
+ archive_url: https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing
+ recordings_url: https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ
contact:
slack: sig-release
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-release
@@ -877,13 +897,14 @@ sigs:
github: countspongebob
company: Samsung SDS
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "16:00"
tz: "UTC"
frequency: bi-weekly
- meeting_url: https://zoom.us/j/989573207
- meeting_archive_url: https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web
- meeting_recordings_url: https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL
+ url: https://zoom.us/j/989573207
+ archive_url: https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web
+ recordings_url: https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL
contact:
slack: sig-scalability
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scale
@@ -914,7 +935,8 @@ sigs:
github: timothysc
company: Red Hat
meetings:
- - day: Monday
+ - description: Regular SIG Meeting
+ day: Monday
time: "20:00"
tz: "UTC"
frequency: biweekly
@@ -922,9 +944,9 @@ sigs:
time: "07:30"
tz: "UTC"
frequency: biweekly
- meeting_url: https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86
- meeting_archive_url: https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI
+ url: https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86
+ archive_url: https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit
+ recordings_url: https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI
contact:
slack: sig-scheduling
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling
@@ -963,13 +985,14 @@ sigs:
github: duglin
company: IBM
meetings:
- - day: Monday
+ - description: Regular SIG Meeting
+ day: Monday
time: "20:00"
tz: "UTC"
frequency: weekly
- meeting_url: https://zoom.us/j/7201225346
- meeting_archive_url: https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs
+ url: https://zoom.us/j/7201225346
+ archive_url: https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit
+ recordings_url: https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs
contact:
slack: sig-service-catalog
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog
@@ -1001,13 +1024,14 @@ sigs:
github: childsb
company: Red Hat
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "9:00"
tz: "PT (Pacific Time)"
frequency: biweekly
- meeting_url: https://zoom.us/j/614261834
- meeting_archive_url: https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing
- meeting_recordings_url: https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq
+ url: https://zoom.us/j/614261834
+ archive_url: https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing
+ recordings_url: https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq
contact:
slack: sig-storage
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-storage
@@ -1048,13 +1072,14 @@ sigs:
github: timothysc
company: Heptio
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "13:00"
tz: "PT (Pacific Time)"
frequency: weekly
- meeting_url: https://zoom.us/my/k8s.sig.testing
- meeting_archive_url: https://bit.ly/k8s-sig-testing-notes
- meeting_recordings_url: https://bit.ly/k8s-sig-testing-videos
+ url: https://zoom.us/my/k8s.sig.testing
+ archive_url: https://bit.ly/k8s-sig-testing-notes
+ recordings_url: https://bit.ly/k8s-sig-testing-videos
contact:
slack: sig-testing
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
@@ -1089,13 +1114,14 @@ sigs:
github: floreks
company: Fujitsu
meetings:
- - day: Thursday
+ - description: Regular SIG Meeting
+ day: Thursday
time: "18:00"
tz: "CET (Central European Time)"
frequency: weekly
- meeting_url: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
- meeting_archive_url: https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing
- meeting_recordings_url:
+ url: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
+ archive_url: https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing
+ recordings_url:
contact:
slack: sig-ui
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
@@ -1109,13 +1135,14 @@ sigs:
github: michmike
company: Apprenda
meetings:
- - day: Tuesday
+ - description: Regular SIG Meeting
+ day: Tuesday
time: "12:30"
tz: "Eastern Standard Time (EST)"
frequency: weekly
- meeting_url: https://zoom.us/my/sigwindows
- meeting_archive_url: https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431
- meeting_recordings_url: https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4
+ url: https://zoom.us/my/sigwindows
+ archive_url: https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431
+ recordings_url: https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4
contact:
slack: sig-windows
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-windows
@@ -1139,13 +1166,14 @@ workinggroups:
github: derekwaynecarr
company: Red Hat
meetings:
- - day: Wednesday
+ - description: Regular WG Meeting
+ day: Wednesday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: weekly (On demand)
- meeting_url: https://zoom.us/j/4799874685
- meeting_archive_url: https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU
- meeting_recordings_url: https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4
+ url: https://zoom.us/j/4799874685
+ archive_url: https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU
+ recordings_url: https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4
contact:
slack: wg-resource-mgmt
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management
@@ -1161,13 +1189,14 @@ workinggroups:
github: destijl
company: Google
meetings:
- - day: Tuesday
+ - description: Regular WG Meeting
+ day: Tuesday
time: "15:00"
tz: "UTC"
frequency: bi-weekly (On demand)
- meeting_url: TBD
- meeting_archive_url: https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit
- meeting_recordings_url:
+ url: TBD
+ archive_url: https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit
+ recordings_url:
contact:
slack: wg-container-identity
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity
@@ -1183,13 +1212,14 @@ workinggroups:
- name: Justin Santa Barbara
github: justinsb
meetings:
- - day: Tuesday
+ - description: Regular WG Meeting
+ day: Tuesday
time: "18:00"
tz: "UTC"
frequency: bi-weekly
- meeting_url: https://zoom.us/j/166836%E2%80%8B624
- meeting_archive_url: https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit
- meeting_recordings_url: https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl
+ url: https://zoom.us/j/166836%E2%80%8B624
+ archive_url: https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit
+ recordings_url: https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl
contact:
slack: sig-cluster-lifecycle
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
@@ -1204,7 +1234,7 @@ workinggroups:
- name: Robert Bailey
github: roberthbailey
company: Google
- meeting_archive_url: https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit
+ archive_url: https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit
contact:
slack: sig-cluster-lifecycle
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
@@ -1225,12 +1255,13 @@ workinggroups:
github: sebgoa
company: Bitnami
meetings:
- - day: Wednesday
+ - description: Regular WG Meeting
+ day: Wednesday
time: "16:00"
tz: "UTC"
frequency: bi-weekly
- meeting_url: https://zoom.us/j/748123863
- meeting_archive_url: https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit
+ url: https://zoom.us/j/748123863
+ archive_url: https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit
contact:
slack: wg-app-def
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-app-def
@@ -1246,12 +1277,13 @@ workinggroups:
github: jagosan
company: Google
meetings:
- - day: Wednesday
+ - description: Regular WG Meeting
+ day: Wednesday
time: "10:00"
tz: "PT (Pacific Time)"
frequency: weekly
- meeting_url: https://zoom.us/my/cloudprovider
- meeting_archive_url: https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp
+ url: https://zoom.us/my/cloudprovider
+ archive_url: https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp
contact:
slack: wg-cloud-provider
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider
diff --git a/wg-app-def/README.md b/wg-app-def/README.md
index dd40027b1..23204c067 100644
--- a/wg-app-def/README.md
+++ b/wg-app-def/README.md
@@ -12,10 +12,8 @@ Improve UX of declarative primitives in the API and/or primary client libraries
Charter can be found [here](https://docs.google.com/document/d/1TzRwzWYRulx4o8Fii8k7ToIx4LR4MSncxxLdJ9TkOAs/edit#)
## Meetings
-* [Wednesdays at 16:00 UTC](https://zoom.us/j/748123863) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit).
-
+* Regular WG Meeting: [Wednesdays at 16:00 UTC](https://zoom.us/j/748123863) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit).
## Organizers
* Antoine Legrand (**[@ant31](https://github.com/ant31)**), CoreOS
diff --git a/wg-cloud-provider/README.md b/wg-cloud-provider/README.md
index 81f1a20a7..a0ecd3290 100644
--- a/wg-cloud-provider/README.md
+++ b/wg-cloud-provider/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Charter can be found [here](https://docs.google.com/document/d/1m4Kvnh_u_9cENEE9n1ifYowQEFSgiHnbw43urGJMB64/edit#)
## Meetings
-* [Wednesdays at 10:00 PT (Pacific Time)](https://zoom.us/my/cloudprovider) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=10:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp).
-
+* Regular WG Meeting: [Wednesdays at 10:00 PT (Pacific Time)](https://zoom.us/my/cloudprovider) (weekly). [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/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp).
## Organizers
* Sidhartha Mani (**[@wlan0](https://github.com/wlan0)**), Caascade Labs
diff --git a/wg-cluster-api/README.md b/wg-cluster-api/README.md
index 6ef6ffd16..74e0da3a8 100644
--- a/wg-cluster-api/README.md
+++ b/wg-cluster-api/README.md
@@ -10,11 +10,6 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Define a portable API that represents a Kubernetes cluster. The API will contain the control plane and its configuration and the underlying infrastructure (nodes, node pools, etc).
-## Meetings
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit).
-
-
## Organizers
* Kris Nova (**[@kris-nova](https://github.com/kris-nova)**), Heptio
* Robert Bailey (**[@roberthbailey](https://github.com/roberthbailey)**), Google
diff --git a/wg-container-identity/README.md b/wg-container-identity/README.md
index 2f23fc2e0..0a0972a1d 100644
--- a/wg-container-identity/README.md
+++ b/wg-container-identity/README.md
@@ -11,10 +11,8 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Ensure containers are able to interact with external systems and acquire secure identities for communication, integrating with external solutions as necessary.
## Meetings
-* [Tuesdays at 15:00 UTC](TBD) (bi-weekly (On demand)). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit).
-
+* Regular WG Meeting: [Tuesdays at 15:00 UTC](TBD) (bi-weekly (On demand)). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit).
## Organizers
* Clayton Coleman (**[@smarterclayton](https://github.com/smarterclayton)**), Red Hat
diff --git a/wg-kubeadm-adoption/README.md b/wg-kubeadm-adoption/README.md
index 9427c0c46..7d6dcb1ee 100644
--- a/wg-kubeadm-adoption/README.md
+++ b/wg-kubeadm-adoption/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Boost adoption of the kubeadm tool. kubeadm is a tool for creating new Kubernetes clusters easily for new users, but can also be used as a toolbox for higher-level deployment solutions. This working group makes sure kubeadm meets the extensibility requirements of those higher-level Kubernetes installers.
## Meetings
-* [Tuesdays at 18:00 UTC](https://zoom.us/j/166836%E2%80%8B624) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl).
+* Regular WG Meeting: [Tuesdays at 18:00 UTC](https://zoom.us/j/166836%E2%80%8B624) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit).
+ * [Meeting recordings](https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl).
## Organizers
* Lucas Käldström (**[@luxas](https://github.com/luxas)**), Luxas Labs (occasionally contracting for Weaveworks)
diff --git a/wg-multitenancy/README.md b/wg-multitenancy/README.md
index 40ee5a882..f265093cd 100644
--- a/wg-multitenancy/README.md
+++ b/wg-multitenancy/README.md
@@ -10,11 +10,6 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Define the models of multitenancy that Kubernetes will support. Discuss and execute upon any remaining work that needs to be done to support these models. Create conformance tests that will prove that these models can be built and used in production environments.
-## Meetings
-
-
-
-
## Organizers
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
* Jessie Frazelle (**[@jessfraz](https://github.com/jessfraz)**), Microsoft
diff --git a/wg-resource-management/README.md b/wg-resource-management/README.md
index daf2e9bbe..f1a491d2e 100644
--- a/wg-resource-management/README.md
+++ b/wg-resource-management/README.md
@@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Designing and shepherding cross-cutting features around compute resource isolation and utilization.
## Meetings
-* [Wednesdays at 11:00 PT (Pacific Time)](https://zoom.us/j/4799874685) (weekly (On demand)). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
-
-Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU).
-Meeting recordings can be found [here](https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4).
+* Regular WG Meeting: [Wednesdays at 11:00 PT (Pacific Time)](https://zoom.us/j/4799874685) (weekly (On demand)). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=11:00&tz=PT%20%28Pacific%20Time%29).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU).
+ * [Meeting recordings](https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4).
## Organizers
* Vishnu Kannan (**[@vishh](https://github.com/vishh)**), Google