Merge pull request #1669 from cblecker/sub-meetings
Add multiple meeting capability to docs generator
This commit is contained in:
commit
41ee3d5644
|
@ -58,10 +58,14 @@ type Lead struct {
|
||||||
|
|
||||||
// Meeting represents a regular meeting for a group.
|
// Meeting represents a regular meeting for a group.
|
||||||
type Meeting struct {
|
type Meeting struct {
|
||||||
Day string
|
Description string
|
||||||
Time string
|
Day string
|
||||||
TZ string `yaml:"tz"`
|
Time string
|
||||||
Frequency 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.
|
// 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)
|
// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
|
||||||
type Group struct {
|
type Group struct {
|
||||||
Name string
|
Name string
|
||||||
Dir string
|
Dir string
|
||||||
MissionStatement string `yaml:"mission_statement"`
|
MissionStatement string `yaml:"mission_statement"`
|
||||||
Label string
|
Label string
|
||||||
Leads []Lead
|
Leads []Lead
|
||||||
Meetings []Meeting
|
Meetings []Meeting
|
||||||
MeetingURL string `yaml:"meeting_url"`
|
Contact Contact
|
||||||
MeetingArchiveURL string `yaml:"meeting_archive_url"`
|
|
||||||
MeetingRecordingsURL string `yaml:"meeting_recordings_url"`
|
|
||||||
Contact Contact
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DirName returns the directory that a group's documentation will be
|
// DirName returns the directory that a group's documentation will be
|
||||||
|
|
|
@ -16,7 +16,7 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|
||||||
| Name | Label | Leads | Contact | Meetings |
|
| Name | Label | Leads | Contact | Meetings |
|
||||||
|------|--------|-------|---------|----------|
|
|------|--------|-------|---------|----------|
|
||||||
{{- range .Sigs}}
|
{{- range .Sigs}}
|
||||||
|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{$save.MeetingURL}})<br>{{end}}
|
|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
### Master Working Group List
|
### 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 |
|
| Name | Organizers | Contact | Meetings |
|
||||||
|------|------------|---------|----------|
|
|------|------------|---------|----------|
|
||||||
{{- range .WorkingGroups}}
|
{{- range .WorkingGroups}}
|
||||||
|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{$save.MeetingURL}})<br>{{end}}
|
|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -2,18 +2,18 @@
|
||||||
# {{.Name}} SIG
|
# {{.Name}} SIG
|
||||||
|
|
||||||
{{ .MissionStatement }}
|
{{ .MissionStatement }}
|
||||||
## Meetings
|
{{ if .Meetings }}## Meetings
|
||||||
{{- range .Meetings }}
|
{{- range .Meetings }}
|
||||||
* [{{.Day}}s at {{.Time}} {{.TZ}}]({{$.MeetingURL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
|
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
|
||||||
{{- end }}
|
{{- if .ArchiveURL }}
|
||||||
|
* [Meeting notes and Agenda]({{.ArchiveURL}}).
|
||||||
{{ if .MeetingArchiveURL -}}
|
{{- end }}
|
||||||
Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
|
{{- if .RecordingsURL }}
|
||||||
{{- end }}
|
* [Meeting recordings]({{.RecordingsURL}}).
|
||||||
{{ if .MeetingRecordingsURL -}}
|
{{- end }}
|
||||||
Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{ end -}}
|
||||||
## Leads
|
## Leads
|
||||||
{{- range .Leads }}
|
{{- range .Leads }}
|
||||||
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
|
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
|
||||||
|
|
|
@ -2,18 +2,18 @@
|
||||||
# {{.Name}} Working Group
|
# {{.Name}} Working Group
|
||||||
|
|
||||||
{{ .MissionStatement }}
|
{{ .MissionStatement }}
|
||||||
## Meetings
|
{{ if .Meetings }}## Meetings
|
||||||
{{- range .Meetings }}
|
{{- range .Meetings }}
|
||||||
* [{{.Day}}s at {{.Time}} {{.TZ}}]({{$.MeetingURL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
|
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
|
||||||
{{- end }}
|
{{- if .ArchiveURL }}
|
||||||
|
* [Meeting notes and Agenda]({{.ArchiveURL}}).
|
||||||
{{ if .MeetingArchiveURL -}}
|
{{- end }}
|
||||||
Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
|
{{- if .RecordingsURL }}
|
||||||
{{- end }}
|
* [Meeting recordings]({{.RecordingsURL}}).
|
||||||
{{ if .MeetingRecordingsURL -}}
|
{{- end }}
|
||||||
Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{ end -}}
|
||||||
## Organizers
|
## Organizers
|
||||||
{{- range .Leads }}
|
{{- range .Leads }}
|
||||||
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
|
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://goo.gl/x5nWrF).
|
* [Meeting recordings](https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Daniel Smith (**[@lavalamp](https://github.com/lavalamp)**), Google
|
* Daniel Smith (**[@lavalamp](https://github.com/lavalamp)**), Google
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
|
* [Meeting recordings](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Michelle Noorali (**[@michelleN](https://github.com/michelleN)**), Microsoft
|
* Michelle Noorali (**[@michelleN](https://github.com/michelleN)**), Microsoft
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Brian Grant (**[@bgrant0607](https://github.com/bgrant0607)**), Google
|
* Brian Grant (**[@bgrant0607](https://github.com/bgrant0607)**), Google
|
||||||
|
|
|
@ -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.
|
Covers improvements to Kubernetes authorization, authentication, and cluster security policy.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#).
|
* [Meeting recordings](https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Eric Chiang (**[@ericchiang](https://github.com/ericchiang)**), CoreOS
|
* Eric Chiang (**[@ericchiang](https://github.com/ericchiang)**), CoreOS
|
||||||
|
|
|
@ -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)
|
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
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Marcin Wielgus (**[@mwielgus](https://github.com/mwielgus)**), Google
|
* Marcin Wielgus (**[@mwielgus](https://github.com/mwielgus)**), Google
|
||||||
|
|
|
@ -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.
|
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Justin Santa Barbara (**[@justinsb](https://github.com/justinsb)**)
|
* Justin Santa Barbara (**[@justinsb](https://github.com/justinsb)**)
|
||||||
|
|
|
@ -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.
|
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on Azure Container Service.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Jason Hansen (**[@slack](https://github.com/slack)**), Microsoft
|
* Jason Hansen (**[@slack](https://github.com/slack)**), Microsoft
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
|
* [Meeting recordings](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
|
||||||
Meeting recordings can be found [here](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Anirudh Ramanathan (**[@foxish](https://github.com/foxish)**), Google
|
* Anirudh Ramanathan (**[@foxish](https://github.com/foxish)**), Google
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing).
|
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Fabiano Franz (**[@fabianofranz](https://github.com/fabianofranz)**), Red Hat
|
* Fabiano Franz (**[@fabianofranz](https://github.com/fabianofranz)**), Red Hat
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Luke Marsden (**[@lukemarsden](https://github.com/lukemarsden)**), Weave
|
* Luke Marsden (**[@lukemarsden](https://github.com/lukemarsden)**), Weave
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#).
|
* [Meeting recordings](https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Rob Hirschfeld (**[@zehicle](https://github.com/zehicle)**), RackN
|
* Rob Hirschfeld (**[@zehicle](https://github.com/zehicle)**), RackN
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/).
|
* [Meeting recordings](https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Garrett Rodrigues (**[@grodrigues3](https://github.com/grodrigues3)**), Google
|
* Garrett Rodrigues (**[@grodrigues3](https://github.com/grodrigues3)**), Google
|
||||||
|
|
|
@ -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.
|
Covers documentation, doc processes, and doc publishing for Kubernetes.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit).
|
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Devin Donnelly (**[@devin-donnelly](https://github.com/devin-donnelly)**), Google
|
* Devin Donnelly (**[@devin-donnelly](https://github.com/devin-donnelly)**), Google
|
||||||
|
|
|
@ -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.
|
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on the Google Cloud Platform.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Adam Worrall (**[@abgworrall](https://github.com/abgworrall)**), Google
|
* 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
|
## Contact
|
||||||
* [Slack](https://kubernetes.slack.com/messages/sig-gcp)
|
* [Slack](https://kubernetes.slack.com/messages/sig-gcp)
|
||||||
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-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
|
## GitHub Teams
|
||||||
|
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Piotr Szczesniak (**[@piosz](https://github.com/piosz)**), Google
|
* Piotr Szczesniak (**[@piosz](https://github.com/piosz)**), Google
|
||||||
|
|
68
sig-list.md
68
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 |
|
| Name | Label | Leads | Contact | Meetings |
|
||||||
|------|--------|-------|---------|----------|
|
|------|--------|-------|---------|----------|
|
||||||
|[API Machinery](sig-api-machinery/README.md)|api-machinery|* [Daniel Smith](https://github.com/lavalamp), Google<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)<br>* [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)<br>
|
|[API Machinery](sig-api-machinery/README.md)|api-machinery|* [Daniel Smith](https://github.com/lavalamp), Google<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)<br>* [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)<br>
|
||||||
|[AWS](sig-aws/README.md)|aws|* [Justin Santa Barbara](https://github.com/justinsb)<br>* [Kris Nova](https://github.com/kris-nova), Heptio<br>* [Chris Love](https://github.com/chrislovecnm)<br>* [Mackenzie Burnett](https://github.com/mfburnett), Redspread<br>|* [Slack](https://kubernetes.slack.com/messages/sig-aws)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)|* [Fridays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8ssigaws)<br>
|
|[AWS](sig-aws/README.md)|aws|* [Justin Santa Barbara](https://github.com/justinsb)<br>* [Kris Nova](https://github.com/kris-nova), Heptio<br>* [Chris Love](https://github.com/chrislovecnm)<br>* [Mackenzie Burnett](https://github.com/mfburnett), Redspread<br>|* [Slack](https://kubernetes.slack.com/messages/sig-aws)<br>* [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)<br>
|
||||||
|[Apps](sig-apps/README.md)|apps|* [Michelle Noorali](https://github.com/michelleN), Microsoft<br>* [Matt Farina](https://github.com/mattfarina), Samsung SDS<br>* [Adnan Abdulhussein](https://github.com/prydonius), Bitnami<br>* [Kenneth Owens](https://github.com/kow3ns), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-apps)<br>* [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)<br>
|
|[Apps](sig-apps/README.md)|apps|* [Michelle Noorali](https://github.com/michelleN), Microsoft<br>* [Matt Farina](https://github.com/mattfarina), Samsung SDS<br>* [Adnan Abdulhussein](https://github.com/prydonius), Bitnami<br>* [Kenneth Owens](https://github.com/kow3ns), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-apps)<br>* [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)<br>
|
||||||
|[Architecture](sig-architecture/README.md)|architecture|* [Brian Grant](https://github.com/bgrant0607), Google<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-architecture)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)|* [Thursdays at 15:30 UTC (weekly)](https://zoom.us/j/2018742972)<br>
|
|[Architecture](sig-architecture/README.md)|architecture|* [Brian Grant](https://github.com/bgrant0607), Google<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-architecture)<br>* [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)<br>
|
||||||
|[Auth](sig-auth/README.md)|auth|* [Eric Chiang](https://github.com/ericchiang), CoreOS<br>* [Jordan Liggitt](https://github.com/liggitt), Red Hat<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-auth)<br>* [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)<br>
|
|[Auth](sig-auth/README.md)|auth|* [Eric Chiang](https://github.com/ericchiang), CoreOS<br>* [Jordan Liggitt](https://github.com/liggitt), Red Hat<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-auth)<br>* [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)<br>
|
||||||
|[Autoscaling](sig-autoscaling/README.md)|autoscaling|* [Marcin Wielgus](https://github.com/mwielgus), Google<br>* [Solly Ross](https://github.com/directxman12), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-autoscaling)<br>* [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)<br>
|
|[Autoscaling](sig-autoscaling/README.md)|autoscaling|* [Marcin Wielgus](https://github.com/mwielgus), Google<br>* [Solly Ross](https://github.com/directxman12), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-autoscaling)<br>* [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)<br>
|
||||||
|[Azure](sig-azure/README.md)|azure|* [Jason Hansen](https://github.com/slack), Microsoft<br>* [Cole Mickens](https://github.com/colemickens), Microsoft<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-azure)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-azure)|* [Wednesdays at 16:00 UTC (biweekly)](https://deis.zoom.us/j/2018742972)<br>
|
|[Azure](sig-azure/README.md)|azure|* [Jason Hansen](https://github.com/slack), Microsoft<br>* [Cole Mickens](https://github.com/colemickens), Microsoft<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-azure)<br>* [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)<br>
|
||||||
|[Big Data](sig-big-data/README.md)|big-data|* [Anirudh Ramanathan](https://github.com/foxish), Google<br>* [Erik Erlandson](https://github.com/erikerlandson), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-big-data)<br>* [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)<br>
|
|[Big Data](sig-big-data/README.md)|big-data|* [Anirudh Ramanathan](https://github.com/foxish), Google<br>* [Erik Erlandson](https://github.com/erikerlandson), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-big-data)<br>* [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)<br>
|
||||||
|[CLI](sig-cli/README.md)|cli|* [Fabiano Franz](https://github.com/fabianofranz), Red Hat<br>* [Phillip Wittrock](https://github.com/pwittrock), Google<br>* [Tony Ado](https://github.com/AdoHe), Alibaba<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cli)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)|* [Wednesdays at 09:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/sigcli)<br>
|
|[CLI](sig-cli/README.md)|cli|* [Fabiano Franz](https://github.com/fabianofranz), Red Hat<br>* [Phillip Wittrock](https://github.com/pwittrock), Google<br>* [Tony Ado](https://github.com/AdoHe), Alibaba<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cli)<br>* [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)<br>
|
||||||
|[Cluster Lifecycle](sig-cluster-lifecycle/README.md)|cluster-lifecycle|* [Luke Marsden](https://github.com/lukemarsden), Weave<br>* [Joe Beda](https://github.com/jbeda), Heptio<br>* [Robert Bailey](https://github.com/roberthbailey), Google<br>* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [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)<br>
|
|[Cluster Lifecycle](sig-cluster-lifecycle/README.md)|cluster-lifecycle|* [Luke Marsden](https://github.com/lukemarsden), Weave<br>* [Joe Beda](https://github.com/jbeda), Heptio<br>* [Robert Bailey](https://github.com/roberthbailey), Google<br>* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [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)<br>
|
||||||
|[Cluster Ops](sig-cluster-ops/README.md)|cluster-ops|* [Rob Hirschfeld](https://github.com/zehicle), RackN<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)|* [Thursdays at 20:00 UTC (biweekly)](https://zoom.us/j/297937771)<br>
|
|[Cluster Ops](sig-cluster-ops/README.md)|cluster-ops|* [Rob Hirschfeld](https://github.com/zehicle), RackN<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)<br>* [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)<br>
|
||||||
|[Contributor Experience](sig-contributor-experience/README.md)|contributor-experience|* [Garrett Rodrigues](https://github.com/grodrigues3), Google<br>* [Elsie Phillips](https://github.com/Phillels), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-contribex)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)|* [Wednesdays at 9:30 PT (Pacific Time) (biweekly)](https://zoom.us/j/7658488911)<br>
|
|[Contributor Experience](sig-contributor-experience/README.md)|contributor-experience|* [Garrett Rodrigues](https://github.com/grodrigues3), Google<br>* [Elsie Phillips](https://github.com/Phillels), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-contribex)<br>* [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)<br>
|
||||||
|[Docs](sig-docs/README.md)|docs|* [Devin Donnelly](https://github.com/devin-donnelly), Google<br>* [Jared Bhatti](https://github.com/jaredbhatti), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-docs)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)|* [Tuesdays at 17:30 UTC (weekly)](https://zoom.us/j/678394311)<br>
|
|[Docs](sig-docs/README.md)|docs|* [Devin Donnelly](https://github.com/devin-donnelly), Google<br>* [Jared Bhatti](https://github.com/jaredbhatti), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-docs)<br>* [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)<br>
|
||||||
|[GCP](sig-gcp/README.md)||* [Adam Worrall](https://github.com/abgworrall), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-gcp)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-gcp)|* [Thursdays at 16:00 UTC (biweekly)](https://zoom.us/j/761149873)<br>
|
|[GCP](sig-gcp/README.md)|gcp|* [Adam Worrall](https://github.com/abgworrall), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-gcp)<br>* [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)<br>
|
||||||
|[Instrumentation](sig-instrumentation/README.md)|instrumentation|* [Piotr Szczesniak](https://github.com/piosz), Google<br>* [Fabian Reinartz](https://github.com/fabxc), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)|* [Thursdays at 17:30 UTC (biweekly)](https://zoom.us/j/5342565819)<br>
|
|[Instrumentation](sig-instrumentation/README.md)|instrumentation|* [Piotr Szczesniak](https://github.com/piosz), Google<br>* [Fabian Reinartz](https://github.com/fabxc), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)<br>* [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)<br>
|
||||||
|[Multicluster](sig-multicluster/README.md)|multicluster|* [Christian Bell](https://github.com/csbell), Google<br>* [Quinton Hoole](https://github.com/quinton-hoole), Huawei<br>|* [Slack](https://kubernetes.slack.com/messages/sig-multicluster)<br>* [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)<br>
|
|[Multicluster](sig-multicluster/README.md)|multicluster|* [Christian Bell](https://github.com/csbell), Google<br>* [Quinton Hoole](https://github.com/quinton-hoole), Huawei<br>|* [Slack](https://kubernetes.slack.com/messages/sig-multicluster)<br>* [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)<br>
|
||||||
|[Network](sig-network/README.md)|network|* [Tim Hockin](https://github.com/thockin), Google<br>* [Dan Williams](https://github.com/dcbw), Red Hat<br>* [Casey Davenport](https://github.com/caseydavenport), Tigera<br>|* [Slack](https://kubernetes.slack.com/messages/sig-network)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-network)|* [Thursdays at 14:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/5806599998)<br>
|
|[Network](sig-network/README.md)|network|* [Tim Hockin](https://github.com/thockin), Google<br>* [Dan Williams](https://github.com/dcbw), Red Hat<br>* [Casey Davenport](https://github.com/caseydavenport), Tigera<br>|* [Slack](https://kubernetes.slack.com/messages/sig-network)<br>* [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)<br>
|
||||||
|[Node](sig-node/README.md)|node|* [Dawn Chen](https://github.com/dchen1107), Google<br>* [Derek Carr](https://github.com/derekwaynecarr), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-node)<br>* [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)<br>
|
|[Node](sig-node/README.md)|node|* [Dawn Chen](https://github.com/dchen1107), Google<br>* [Derek Carr](https://github.com/derekwaynecarr), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-node)<br>* [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)<br>
|
||||||
|[On Premise](sig-on-premise/README.md)|onprem|* [Marco Ceppi](https://github.com/marcoceppi), Canonical<br>* [Dalton Hubble](https://github.com/dghubble), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-onprem)<br>* [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)<br>
|
|[On Premise](sig-on-premise/README.md)|onprem|* [Marco Ceppi](https://github.com/marcoceppi), Canonical<br>* [Dalton Hubble](https://github.com/dghubble), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-onprem)<br>* [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)<br>
|
||||||
|[OpenStack](sig-openstack/README.md)|openstack|* [Chris Hoge](https://github.com/hogepodge), OpenStack Foundation<br>* [David Lyle](https://github.com/dklyle), Intel<br>* [Robert Morse](https://github.com/rjmorse), Ticketmaster<br>|* [Slack](https://kubernetes.slack.com/messages/sig-openstack)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)|* [Thursdays at 00:00 UTC (biweekly)](https://zoom.us/j/417251241)<br>
|
|[OpenStack](sig-openstack/README.md)|openstack|* [Chris Hoge](https://github.com/hogepodge), OpenStack Foundation<br>* [David Lyle](https://github.com/dklyle), Intel<br>* [Robert Morse](https://github.com/rjmorse), Ticketmaster<br>|* [Slack](https://kubernetes.slack.com/messages/sig-openstack)<br>* [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)<br>
|
||||||
|[Product Management](sig-product-management/README.md)|none|* [Aparna Sinha](https://github.com/apsinha), Google<br>* [Ihor Dvoretskyi](https://github.com/idvoretskyi), CNCF<br>* [Caleb Miles](https://github.com/calebamiles), Google<br>|* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-pm)|* [Tuesdays at 15:00 UTC (biweekly)](https://zoom.us/j/845373595)<br>
|
|[Product Management](sig-product-management/README.md)|none|* [Aparna Sinha](https://github.com/apsinha), Google<br>* [Ihor Dvoretskyi](https://github.com/idvoretskyi), CNCF<br>* [Caleb Miles](https://github.com/calebamiles), Google<br>|* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-pm)|* Regular SIG Meeting: [Tuesdays at 15:00 UTC (biweekly)](https://zoom.us/j/845373595)<br>
|
||||||
|[Release](sig-release/README.md)|release|* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>* [Caleb Miles](https://github.com/calebamiles), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-release)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-release)|* [Tuesdays at 21:00 UTC (biweekly)](https://zoom.us/j/664772523)<br>
|
|[Release](sig-release/README.md)|release|* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>* [Caleb Miles](https://github.com/calebamiles), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-release)<br>* [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)<br>
|
||||||
|[Scalability](sig-scalability/README.md)|scalability|* [Wojciech Tyczynski](https://github.com/wojtek-t), Google<br>* [Bob Wise](https://github.com/countspongebob), Samsung SDS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scalability)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)|* [Thursdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/989573207)<br>
|
|[Scalability](sig-scalability/README.md)|scalability|* [Wojciech Tyczynski](https://github.com/wojtek-t), Google<br>* [Bob Wise](https://github.com/countspongebob), Samsung SDS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scalability)<br>* [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)<br>
|
||||||
|[Scheduling](sig-scheduling/README.md)|scheduling|* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Timothy St. Clair](https://github.com/timothysc), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* [Mondays at 20:00 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)<br>* [Wednesdays at 07:30 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)<br>
|
|[Scheduling](sig-scheduling/README.md)|scheduling|* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Timothy St. Clair](https://github.com/timothysc), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* Regular SIG Meeting: [Mondays at 20:00 UTC (biweekly)]()<br>* : [Wednesdays at 07:30 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)<br>
|
||||||
|[Service Catalog](sig-service-catalog/README.md)|service-catalog|* [Paul Morie](https://github.com/pmorie), Red Hat<br>* [Aaron Schlesinger](https://github.com/arschles), Microsoft<br>* [Ville Aikas](https://github.com/vaikas-google), Google<br>* [Doug Davis](https://github.com/duglin), IBM<br>|* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)|* [Mondays at 20:00 UTC (weekly)](https://zoom.us/j/7201225346)<br>
|
|[Service Catalog](sig-service-catalog/README.md)|service-catalog|* [Paul Morie](https://github.com/pmorie), Red Hat<br>* [Aaron Schlesinger](https://github.com/arschles), Microsoft<br>* [Ville Aikas](https://github.com/vaikas-google), Google<br>* [Doug Davis](https://github.com/duglin), IBM<br>|* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)<br>* [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)<br>
|
||||||
|[Storage](sig-storage/README.md)|storage|* [Saad Ali](https://github.com/saad-ali), Google<br>* [Bradley Childs](https://github.com/childsb), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-storage)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)|* [Thursdays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/614261834)<br>
|
|[Storage](sig-storage/README.md)|storage|* [Saad Ali](https://github.com/saad-ali), Google<br>* [Bradley Childs](https://github.com/childsb), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-storage)<br>* [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)<br>
|
||||||
|[Testing](sig-testing/README.md)|testing|* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS<br>* [Erick Feja](https://github.com/fejta), Google<br>* [Steve Kuznetsov](https://github.com/stevekuznetsov), Red Hat<br>* [Timothy St. Clair](https://github.com/timothysc), Heptio<br>|* [Slack](https://kubernetes.slack.com/messages/sig-testing)<br>* [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)<br>
|
|[Testing](sig-testing/README.md)|testing|* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS<br>* [Erick Feja](https://github.com/fejta), Google<br>* [Steve Kuznetsov](https://github.com/stevekuznetsov), Red Hat<br>* [Timothy St. Clair](https://github.com/timothysc), Heptio<br>|* [Slack](https://kubernetes.slack.com/messages/sig-testing)<br>* [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)<br>
|
||||||
|[UI](sig-ui/README.md)|ui|* [Dan Romlein](https://github.com/danielromlein), Google<br>* [Sebastian Florek](https://github.com/floreks), Fujitsu<br>|* [Slack](https://kubernetes.slack.com/messages/sig-ui)<br>* [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)<br>
|
|[UI](sig-ui/README.md)|ui|* [Dan Romlein](https://github.com/danielromlein), Google<br>* [Sebastian Florek](https://github.com/floreks), Fujitsu<br>|* [Slack](https://kubernetes.slack.com/messages/sig-ui)<br>* [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)<br>
|
||||||
|[Windows](sig-windows/README.md)|windows|* [Michael Michael](https://github.com/michmike), Apprenda<br>|* [Slack](https://kubernetes.slack.com/messages/sig-windows)<br>* [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)<br>
|
|[Windows](sig-windows/README.md)|windows|* [Michael Michael](https://github.com/michmike), Apprenda<br>|* [Slack](https://kubernetes.slack.com/messages/sig-windows)<br>* [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)<br>
|
||||||
|
|
||||||
### Master Working Group List
|
### Master Working Group List
|
||||||
|
|
||||||
| Name | Organizers | Contact | Meetings |
|
| Name | Organizers | Contact | Meetings |
|
||||||
|------|------------|---------|----------|
|
|------|------------|---------|----------|
|
||||||
|[App Def](wg-app-def/README.md)|* [Antoine Legrand](https://github.com/ant31), CoreOS<br>* [Sebastien Goasguen](https://github.com/sebgoa), Bitnami<br>|* [Slack](https://kubernetes.slack.com/messages/wg-app-def)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-app-def)|* [Wednesdays at 16:00 UTC (bi-weekly)](https://zoom.us/j/748123863)<br>
|
|[App Def](wg-app-def/README.md)|* [Antoine Legrand](https://github.com/ant31), CoreOS<br>* [Sebastien Goasguen](https://github.com/sebgoa), Bitnami<br>|* [Slack](https://kubernetes.slack.com/messages/wg-app-def)<br>* [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)<br>
|
||||||
|[Cloud Provider](wg-cloud-provider/README.md)|* [Sidhartha Mani](https://github.com/wlan0), Caascade Labs<br>* [Jago Macleod](https://github.com/jagosan), Google<br>|* [Slack](https://kubernetes.slack.com/messages/wg-cloud-provider)<br>* [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)<br>
|
|[Cloud Provider](wg-cloud-provider/README.md)|* [Sidhartha Mani](https://github.com/wlan0), Caascade Labs<br>* [Jago Macleod](https://github.com/jagosan), Google<br>|* [Slack](https://kubernetes.slack.com/messages/wg-cloud-provider)<br>* [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)<br>
|
||||||
|[Cluster API](wg-cluster-api/README.md)|* [Kris Nova](https://github.com/kris-nova), Heptio<br>* [Robert Bailey](https://github.com/roberthbailey), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|
|
|[Cluster API](wg-cluster-api/README.md)|* [Kris Nova](https://github.com/kris-nova), Heptio<br>* [Robert Bailey](https://github.com/roberthbailey), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [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<br>* [Greg Gastle](https://github.com/destijl), Google<br>|* [Slack](https://kubernetes.slack.com/messages/wg-container-identity)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity)|* [Tuesdays at 15:00 UTC (bi-weekly (On demand))](TBD)<br>
|
|[Container Identity](wg-container-identity/README.md)|* [Clayton Coleman](https://github.com/smarterclayton), Red Hat<br>* [Greg Gastle](https://github.com/destijl), Google<br>|* [Slack](https://kubernetes.slack.com/messages/wg-container-identity)<br>* [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)<br>
|
||||||
|[Kubeadm Adoption](wg-kubeadm-adoption/README.md)|* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)<br>* [Justin Santa Barbara](https://github.com/justinsb)<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [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)<br>
|
|[Kubeadm Adoption](wg-kubeadm-adoption/README.md)|* [Lucas Käldström](https://github.com/luxas), Luxas Labs (occasionally contracting for Weaveworks)<br>* [Justin Santa Barbara](https://github.com/justinsb)<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [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)<br>
|
||||||
|[Multitenancy](wg-multitenancy/README.md)|* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Jessie Frazelle](https://github.com/jessfraz), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/wg-multitenancy)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy)|
|
|[Multitenancy](wg-multitenancy/README.md)|* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Jessie Frazelle](https://github.com/jessfraz), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/wg-multitenancy)<br>* [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<br>* [Derek Carr](https://github.com/derekwaynecarr), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/wg-resource-mgmt)<br>* [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)<br>
|
|[Resource Management](wg-resource-management/README.md)|* [Vishnu Kannan](https://github.com/vishh), Google<br>* [Derek Carr](https://github.com/derekwaynecarr), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/wg-resource-mgmt)<br>* [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)<br>
|
||||||
<!-- BEGIN CUSTOM CONTENT -->
|
<!-- BEGIN CUSTOM CONTENT -->
|
||||||
|
|
||||||
<!-- END CUSTOM CONTENT -->
|
<!-- END CUSTOM CONTENT -->
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Christian Bell (**[@csbell](https://github.com/csbell)**), Google
|
* Christian Bell (**[@csbell](https://github.com/csbell)**), Google
|
||||||
|
|
|
@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
|
||||||
Covers networking in Kubernetes.
|
Covers networking in Kubernetes.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](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).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Tim Hockin (**[@thockin](https://github.com/thockin)**), Google
|
* Tim Hockin (**[@thockin](https://github.com/thockin)**), Google
|
||||||
|
|
|
@ -10,10 +10,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
|
||||||
|
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing).
|
* [Meeting recordings](https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Dawn Chen (**[@dchen1107](https://github.com/dchen1107)**), Google
|
* Dawn Chen (**[@dchen1107](https://github.com/dchen1107)**), Google
|
||||||
|
|
|
@ -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.
|
Brings together member of Kubernetes community interested in running Kubernetes on premise, on bare metal or more generally beyond cloud providers.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#).
|
* [Meeting recordings](https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Marco Ceppi (**[@marcoceppi](https://github.com/marcoceppi)**), Canonical
|
* Marco Ceppi (**[@marcoceppi](https://github.com/marcoceppi)**), Canonical
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 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](https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Chris Hoge (**[@hogepodge](https://github.com/hogepodge)**), OpenStack Foundation
|
* Chris Hoge (**[@hogepodge](https://github.com/hogepodge)**), OpenStack Foundation
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing).
|
* [Meeting recordings](https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Aparna Sinha (**[@apsinha](https://github.com/apsinha)**), Google
|
* Aparna Sinha (**[@apsinha](https://github.com/apsinha)**), Google
|
||||||
|
|
|
@ -10,10 +10,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
|
||||||
|
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing).
|
* [Meeting recordings](https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
|
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
|
||||||
|
|
|
@ -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)
|
For more details about our objectives please review our [Scaling And Performance Goals](https://git.k8s.io/community/sig-scalability/goals.md)
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](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).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Wojciech Tyczynski (**[@wojtek-t](https://github.com/wojtek-t)**), Google
|
* Wojciech Tyczynski (**[@wojtek-t](https://github.com/wojtek-t)**), Google
|
||||||
|
|
|
@ -10,11 +10,10 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
|
||||||
|
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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).
|
* : [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 notes and Agenda can be found [here](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
|
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
|
||||||
|
|
|
@ -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.
|
To develop a Kubernetes API for the CNCF service broker and Kubernetes broker implementation.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Paul Morie (**[@pmorie](https://github.com/pmorie)**), Red Hat
|
* Paul Morie (**[@pmorie](https://github.com/pmorie)**), Red Hat
|
||||||
|
|
|
@ -11,10 +11,9 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
|
||||||
Covers storage and volume plugins.
|
Covers storage and volume plugins.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
|
* [Meeting recordings](https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Saad Ali (**[@saad-ali](https://github.com/saad-ali)**), Google
|
* Saad Ali (**[@saad-ali](https://github.com/saad-ali)**), Google
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://bit.ly/k8s-sig-testing-notes).
|
* [Meeting recordings](https://bit.ly/k8s-sig-testing-videos).
|
||||||
Meeting recordings can be found [here](https://bit.ly/k8s-sig-testing-videos).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Aaron Crickenberger (**[@spiffxp](https://github.com/spiffxp)**), Samsung SDS
|
* Aaron Crickenberger (**[@spiffxp](https://github.com/spiffxp)**), Samsung SDS
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing).
|
|
||||||
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Dan Romlein (**[@danielromlein](https://github.com/danielromlein)**), Google
|
* Dan Romlein (**[@danielromlein](https://github.com/danielromlein)**), Google
|
||||||
|
|
|
@ -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.
|
Focuses on supporting Windows Server Containers for Kubernetes.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431).
|
* [Meeting recordings](https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4).
|
|
||||||
|
|
||||||
## Leads
|
## Leads
|
||||||
* Michael Michael (**[@michmike](https://github.com/michmike)**), Apprenda
|
* Michael Michael (**[@michmike](https://github.com/michmike)**), Apprenda
|
||||||
|
|
304
sigs.yaml
304
sigs.yaml
|
@ -15,13 +15,14 @@ sigs:
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
github: deads2k
|
github: deads2k
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "11:00"
|
time: "11:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig
|
url: https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig
|
||||||
meeting_archive_url: https://goo.gl/x5nWrF
|
archive_url: https://goo.gl/x5nWrF
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
|
recordings_url: https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
|
||||||
contact:
|
contact:
|
||||||
slack: sig-api-machinery
|
slack: sig-api-machinery
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery
|
||||||
|
@ -63,13 +64,14 @@ sigs:
|
||||||
github: kow3ns
|
github: kow3ns
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Monday
|
- description: Regular SIG Meeting
|
||||||
|
day: Monday
|
||||||
time: "9:00"
|
time: "9:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/sig.apps
|
url: https://zoom.us/my/sig.apps
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
|
archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
|
recordings_url: https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
|
||||||
contact:
|
contact:
|
||||||
slack: sig-apps
|
slack: sig-apps
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-apps
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-apps
|
||||||
|
@ -102,13 +104,14 @@ sigs:
|
||||||
github: jdumars
|
github: jdumars
|
||||||
company: Microsoft
|
company: Microsoft
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "15:30"
|
time: "15:30"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/j/2018742972
|
url: https://zoom.us/j/2018742972
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit
|
archive_url: https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
|
recordings_url: https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
|
||||||
contact:
|
contact:
|
||||||
slack: sig-architecture
|
slack: sig-architecture
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-architecture
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-architecture
|
||||||
|
@ -144,13 +147,14 @@ sigs:
|
||||||
github: deads2k
|
github: deads2k
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "11:00"
|
time: "11:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/my/k8s.sig.auth
|
url: https://zoom.us/my/k8s.sig.auth
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#
|
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
|
recordings_url: https://www.youtube.com/watch?v=DJDuDNALcMo&list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw
|
||||||
contact:
|
contact:
|
||||||
slack: sig-auth
|
slack: sig-auth
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-auth
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-auth
|
||||||
|
@ -184,13 +188,13 @@ sigs:
|
||||||
github: directxman12
|
github: directxman12
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Monday
|
- description: Regular SIG Meeting
|
||||||
|
day: Monday
|
||||||
time: "14:00"
|
time: "14:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly/triweekly
|
frequency: biweekly/triweekly
|
||||||
meeting_url: https://zoom.us/my/k8s.sig.autoscaling
|
url: https://zoom.us/my/k8s.sig.autoscaling
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit
|
archive_url: https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit
|
||||||
meeting_recordings_url:
|
|
||||||
contact:
|
contact:
|
||||||
slack: sig-autoscaling
|
slack: sig-autoscaling
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling
|
||||||
|
@ -226,13 +230,13 @@ sigs:
|
||||||
github: mfburnett
|
github: mfburnett
|
||||||
company: Redspread
|
company: Redspread
|
||||||
meetings:
|
meetings:
|
||||||
- day: Friday
|
- description: Regular SIG Meeting
|
||||||
time: "9:00" # Actually 9AM Pacific, but timezone support issue is https://github.com/kubernetes/community/issues/841
|
day: Friday
|
||||||
|
time: "9:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/my/k8ssigaws
|
url: https://zoom.us/my/k8ssigaws
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit
|
archive_url: https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit
|
||||||
meeting_recordings_url:
|
|
||||||
contact:
|
contact:
|
||||||
slack: sig-aws
|
slack: sig-aws
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-aws
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-aws
|
||||||
|
@ -256,13 +260,14 @@ sigs:
|
||||||
github: jdumars
|
github: jdumars
|
||||||
company: Microsoft
|
company: Microsoft
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "16:00"
|
time: "16:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://deis.zoom.us/j/2018742972
|
url: https://deis.zoom.us/j/2018742972
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit
|
archive_url: https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4
|
recordings_url: https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4
|
||||||
contact:
|
contact:
|
||||||
slack: sig-azure
|
slack: sig-azure
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-azure
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-azure
|
||||||
|
@ -284,13 +289,14 @@ sigs:
|
||||||
github: erikerlandson
|
github: erikerlandson
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "17:00"
|
time: "17:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/sig.big.data
|
url: https://zoom.us/my/sig.big.data
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
|
archive_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
|
||||||
meeting_recordings_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
|
recordings_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
|
||||||
contact:
|
contact:
|
||||||
slack: sig-big-data
|
slack: sig-big-data
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-big-data
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-big-data
|
||||||
|
@ -329,13 +335,14 @@ sigs:
|
||||||
github: AdoHe
|
github: AdoHe
|
||||||
company: Alibaba
|
company: Alibaba
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "09:00"
|
time: "09:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/my/sigcli
|
url: https://zoom.us/my/sigcli
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing
|
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
|
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF
|
||||||
contact:
|
contact:
|
||||||
slack: sig-cli
|
slack: sig-cli
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cli
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cli
|
||||||
|
@ -376,13 +383,14 @@ sigs:
|
||||||
github: luxas
|
github: luxas
|
||||||
company: Luxas Labs (occasionally contracting for Weaveworks)
|
company: Luxas Labs (occasionally contracting for Weaveworks)
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "09:00"
|
time: "09:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/j/166836%E2%80%8B624
|
url: https://zoom.us/j/166836%E2%80%8B624
|
||||||
meeting_archive_url: https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit
|
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
|
recordings_url: https://www.youtube.com/watch?v=ljK5dgSA7vc&list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
|
||||||
contact:
|
contact:
|
||||||
slack: sig-cluster-lifecycle
|
slack: sig-cluster-lifecycle
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
||||||
|
@ -417,13 +425,14 @@ sigs:
|
||||||
github: jdumars
|
github: jdumars
|
||||||
company: Microsoft
|
company: Microsoft
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "20:00"
|
time: "20:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/297937771
|
url: https://zoom.us/j/297937771
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#
|
archive_url: https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR
|
recordings_url: https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR
|
||||||
contact:
|
contact:
|
||||||
slack: sig-cluster-ops
|
slack: sig-cluster-ops
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops
|
||||||
|
@ -444,13 +453,14 @@ sigs:
|
||||||
github: Phillels
|
github: Phillels
|
||||||
company: CoreOS
|
company: CoreOS
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "9:30"
|
time: "9:30"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/7658488911
|
url: https://zoom.us/j/7658488911
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/
|
archive_url: https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr
|
recordings_url: https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr
|
||||||
contact:
|
contact:
|
||||||
slack: sig-contribex
|
slack: sig-contribex
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-contribex
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-contribex
|
||||||
|
@ -480,13 +490,14 @@ sigs:
|
||||||
github: jaredbhatti
|
github: jaredbhatti
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "17:30"
|
time: "17:30"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/j/678394311
|
url: https://zoom.us/j/678394311
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
|
archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
|
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
|
||||||
contact:
|
contact:
|
||||||
slack: sig-docs
|
slack: sig-docs
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-docs
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-docs
|
||||||
|
@ -500,17 +511,19 @@ sigs:
|
||||||
mission_statement: >
|
mission_statement: >
|
||||||
A Special Interest Group for building, deploying, maintaining,
|
A Special Interest Group for building, deploying, maintaining,
|
||||||
supporting, and using Kubernetes on the Google Cloud Platform.
|
supporting, and using Kubernetes on the Google Cloud Platform.
|
||||||
|
label: gcp
|
||||||
leads:
|
leads:
|
||||||
- name: Adam Worrall
|
- name: Adam Worrall
|
||||||
github: abgworrall
|
github: abgworrall
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "16:00"
|
time: "16:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/761149873
|
url: https://zoom.us/j/761149873
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit
|
archive_url: https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit
|
||||||
contact:
|
contact:
|
||||||
slack: sig-gcp
|
slack: sig-gcp
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-gcp
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-gcp
|
||||||
|
@ -544,13 +557,13 @@ sigs:
|
||||||
github: fabxc
|
github: fabxc
|
||||||
company: CoreOS
|
company: CoreOS
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "17:30"
|
time: "17:30"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/5342565819
|
url: https://zoom.us/j/5342565819
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit
|
archive_url: https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit
|
||||||
meeting_recordings_url:
|
|
||||||
contact:
|
contact:
|
||||||
slack: sig-instrumentation
|
slack: sig-instrumentation
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation
|
||||||
|
@ -587,13 +600,14 @@ sigs:
|
||||||
github: quinton-hoole
|
github: quinton-hoole
|
||||||
company: Huawei
|
company: Huawei
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "9:30"
|
time: "9:30"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/my/k8s.mc
|
url: https://zoom.us/my/k8s.mc
|
||||||
meeting_archive_url: https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit
|
archive_url: https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-
|
recordings_url: https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-
|
||||||
contact:
|
contact:
|
||||||
slack: sig-multicluster
|
slack: sig-multicluster
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster
|
||||||
|
@ -628,13 +642,14 @@ sigs:
|
||||||
github: caseydavenport
|
github: caseydavenport
|
||||||
company: Tigera
|
company: Tigera
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "14:00"
|
time: "14:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/5806599998
|
url: https://zoom.us/j/5806599998
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit
|
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
|
recordings_url: https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb
|
||||||
contact:
|
contact:
|
||||||
slack: sig-network
|
slack: sig-network
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-network
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-network
|
||||||
|
@ -665,13 +680,14 @@ sigs:
|
||||||
github: derekwaynecarr
|
github: derekwaynecarr
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "10:00"
|
time: "10:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0
|
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
|
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
|
recordings_url: https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG
|
||||||
contact:
|
contact:
|
||||||
slack: sig-node
|
slack: sig-node
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-node
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-node
|
||||||
|
@ -703,13 +719,14 @@ sigs:
|
||||||
github: dghubble
|
github: dghubble
|
||||||
company: CoreOS
|
company: CoreOS
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "16:00"
|
time: "16:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/k8s.sig.onprem
|
url: https://zoom.us/my/k8s.sig.onprem
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#
|
archive_url: https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa
|
recordings_url: https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa
|
||||||
contact:
|
contact:
|
||||||
slack: sig-onprem
|
slack: sig-onprem
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem
|
||||||
|
@ -748,13 +765,14 @@ sigs:
|
||||||
github: rjmorse
|
github: rjmorse
|
||||||
company: Ticketmaster
|
company: Ticketmaster
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "00:00"
|
time: "00:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/417251241
|
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
|
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
|
recordings_url: https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax
|
||||||
contact:
|
contact:
|
||||||
slack: sig-openstack
|
slack: sig-openstack
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-openstack
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-openstack
|
||||||
|
@ -806,13 +824,14 @@ sigs:
|
||||||
github: calebamiles
|
github: calebamiles
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "15:00"
|
time: "15:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/845373595
|
url: https://zoom.us/j/845373595
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing
|
archive_url: https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ
|
recordings_url: https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ
|
||||||
contact:
|
contact:
|
||||||
slack: kubernetes-pm
|
slack: kubernetes-pm
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-pm
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-pm
|
||||||
|
@ -820,20 +839,21 @@ sigs:
|
||||||
dir: sig-release
|
dir: sig-release
|
||||||
label: release
|
label: release
|
||||||
leads:
|
leads:
|
||||||
- name: Jaice Singer DuMars
|
- name: Jaice Singer DuMars
|
||||||
github: jdumars
|
github: jdumars
|
||||||
company: Microsoft
|
company: Microsoft
|
||||||
- name: Caleb Miles
|
- name: Caleb Miles
|
||||||
github: calebamiles
|
github: calebamiles
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "21:00"
|
time: "21:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/664772523
|
url: https://zoom.us/j/664772523
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing
|
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
|
recordings_url: https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ
|
||||||
contact:
|
contact:
|
||||||
slack: sig-release
|
slack: sig-release
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-release
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-release
|
||||||
|
@ -877,13 +897,14 @@ sigs:
|
||||||
github: countspongebob
|
github: countspongebob
|
||||||
company: Samsung SDS
|
company: Samsung SDS
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "16:00"
|
time: "16:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: bi-weekly
|
frequency: bi-weekly
|
||||||
meeting_url: https://zoom.us/j/989573207
|
url: https://zoom.us/j/989573207
|
||||||
meeting_archive_url: https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web
|
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
|
recordings_url: https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL
|
||||||
contact:
|
contact:
|
||||||
slack: sig-scalability
|
slack: sig-scalability
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scale
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scale
|
||||||
|
@ -914,7 +935,8 @@ sigs:
|
||||||
github: timothysc
|
github: timothysc
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Monday
|
- description: Regular SIG Meeting
|
||||||
|
day: Monday
|
||||||
time: "20:00"
|
time: "20:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
|
@ -922,9 +944,9 @@ sigs:
|
||||||
time: "07:30"
|
time: "07:30"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86
|
url: https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86
|
||||||
meeting_archive_url: https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit
|
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
|
recordings_url: https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI
|
||||||
contact:
|
contact:
|
||||||
slack: sig-scheduling
|
slack: sig-scheduling
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling
|
||||||
|
@ -963,13 +985,14 @@ sigs:
|
||||||
github: duglin
|
github: duglin
|
||||||
company: IBM
|
company: IBM
|
||||||
meetings:
|
meetings:
|
||||||
- day: Monday
|
- description: Regular SIG Meeting
|
||||||
|
day: Monday
|
||||||
time: "20:00"
|
time: "20:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/j/7201225346
|
url: https://zoom.us/j/7201225346
|
||||||
meeting_archive_url: https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit
|
archive_url: https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs
|
recordings_url: https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs
|
||||||
contact:
|
contact:
|
||||||
slack: sig-service-catalog
|
slack: sig-service-catalog
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog
|
||||||
|
@ -1001,13 +1024,14 @@ sigs:
|
||||||
github: childsb
|
github: childsb
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "9:00"
|
time: "9:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: biweekly
|
frequency: biweekly
|
||||||
meeting_url: https://zoom.us/j/614261834
|
url: https://zoom.us/j/614261834
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing
|
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
|
recordings_url: https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq
|
||||||
contact:
|
contact:
|
||||||
slack: sig-storage
|
slack: sig-storage
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-storage
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-storage
|
||||||
|
@ -1048,13 +1072,14 @@ sigs:
|
||||||
github: timothysc
|
github: timothysc
|
||||||
company: Heptio
|
company: Heptio
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "13:00"
|
time: "13:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/k8s.sig.testing
|
url: https://zoom.us/my/k8s.sig.testing
|
||||||
meeting_archive_url: https://bit.ly/k8s-sig-testing-notes
|
archive_url: https://bit.ly/k8s-sig-testing-notes
|
||||||
meeting_recordings_url: https://bit.ly/k8s-sig-testing-videos
|
recordings_url: https://bit.ly/k8s-sig-testing-videos
|
||||||
contact:
|
contact:
|
||||||
slack: sig-testing
|
slack: sig-testing
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
|
||||||
|
@ -1089,13 +1114,14 @@ sigs:
|
||||||
github: floreks
|
github: floreks
|
||||||
company: Fujitsu
|
company: Fujitsu
|
||||||
meetings:
|
meetings:
|
||||||
- day: Thursday
|
- description: Regular SIG Meeting
|
||||||
|
day: Thursday
|
||||||
time: "18:00"
|
time: "18:00"
|
||||||
tz: "CET (Central European Time)"
|
tz: "CET (Central European Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
|
url: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing
|
archive_url: https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing
|
||||||
meeting_recordings_url:
|
recordings_url:
|
||||||
contact:
|
contact:
|
||||||
slack: sig-ui
|
slack: sig-ui
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
|
||||||
|
@ -1109,13 +1135,14 @@ sigs:
|
||||||
github: michmike
|
github: michmike
|
||||||
company: Apprenda
|
company: Apprenda
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular SIG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "12:30"
|
time: "12:30"
|
||||||
tz: "Eastern Standard Time (EST)"
|
tz: "Eastern Standard Time (EST)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/sigwindows
|
url: https://zoom.us/my/sigwindows
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431
|
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
|
recordings_url: https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4
|
||||||
contact:
|
contact:
|
||||||
slack: sig-windows
|
slack: sig-windows
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-windows
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-windows
|
||||||
|
@ -1139,13 +1166,14 @@ workinggroups:
|
||||||
github: derekwaynecarr
|
github: derekwaynecarr
|
||||||
company: Red Hat
|
company: Red Hat
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular WG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "11:00"
|
time: "11:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly (On demand)
|
frequency: weekly (On demand)
|
||||||
meeting_url: https://zoom.us/j/4799874685
|
url: https://zoom.us/j/4799874685
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU
|
archive_url: https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4
|
recordings_url: https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4
|
||||||
contact:
|
contact:
|
||||||
slack: wg-resource-mgmt
|
slack: wg-resource-mgmt
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management
|
||||||
|
@ -1161,13 +1189,14 @@ workinggroups:
|
||||||
github: destijl
|
github: destijl
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular WG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "15:00"
|
time: "15:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: bi-weekly (On demand)
|
frequency: bi-weekly (On demand)
|
||||||
meeting_url: TBD
|
url: TBD
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit
|
archive_url: https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit
|
||||||
meeting_recordings_url:
|
recordings_url:
|
||||||
contact:
|
contact:
|
||||||
slack: wg-container-identity
|
slack: wg-container-identity
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-container-identity
|
||||||
|
@ -1183,13 +1212,14 @@ workinggroups:
|
||||||
- name: Justin Santa Barbara
|
- name: Justin Santa Barbara
|
||||||
github: justinsb
|
github: justinsb
|
||||||
meetings:
|
meetings:
|
||||||
- day: Tuesday
|
- description: Regular WG Meeting
|
||||||
|
day: Tuesday
|
||||||
time: "18:00"
|
time: "18:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: bi-weekly
|
frequency: bi-weekly
|
||||||
meeting_url: https://zoom.us/j/166836%E2%80%8B624
|
url: https://zoom.us/j/166836%E2%80%8B624
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit
|
archive_url: https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit
|
||||||
meeting_recordings_url: https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl
|
recordings_url: https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl
|
||||||
contact:
|
contact:
|
||||||
slack: sig-cluster-lifecycle
|
slack: sig-cluster-lifecycle
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
||||||
|
@ -1204,7 +1234,7 @@ workinggroups:
|
||||||
- name: Robert Bailey
|
- name: Robert Bailey
|
||||||
github: roberthbailey
|
github: roberthbailey
|
||||||
company: Google
|
company: Google
|
||||||
meeting_archive_url: https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit
|
archive_url: https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit
|
||||||
contact:
|
contact:
|
||||||
slack: sig-cluster-lifecycle
|
slack: sig-cluster-lifecycle
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
|
||||||
|
@ -1225,12 +1255,13 @@ workinggroups:
|
||||||
github: sebgoa
|
github: sebgoa
|
||||||
company: Bitnami
|
company: Bitnami
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular WG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "16:00"
|
time: "16:00"
|
||||||
tz: "UTC"
|
tz: "UTC"
|
||||||
frequency: bi-weekly
|
frequency: bi-weekly
|
||||||
meeting_url: https://zoom.us/j/748123863
|
url: https://zoom.us/j/748123863
|
||||||
meeting_archive_url: https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit
|
archive_url: https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit
|
||||||
contact:
|
contact:
|
||||||
slack: wg-app-def
|
slack: wg-app-def
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-app-def
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-app-def
|
||||||
|
@ -1246,12 +1277,13 @@ workinggroups:
|
||||||
github: jagosan
|
github: jagosan
|
||||||
company: Google
|
company: Google
|
||||||
meetings:
|
meetings:
|
||||||
- day: Wednesday
|
- description: Regular WG Meeting
|
||||||
|
day: Wednesday
|
||||||
time: "10:00"
|
time: "10:00"
|
||||||
tz: "PT (Pacific Time)"
|
tz: "PT (Pacific Time)"
|
||||||
frequency: weekly
|
frequency: weekly
|
||||||
meeting_url: https://zoom.us/my/cloudprovider
|
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
|
archive_url: https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp
|
||||||
contact:
|
contact:
|
||||||
slack: wg-cloud-provider
|
slack: wg-cloud-provider
|
||||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider
|
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider
|
||||||
|
|
|
@ -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#)
|
Charter can be found [here](https://docs.google.com/document/d/1TzRwzWYRulx4o8Fii8k7ToIx4LR4MSncxxLdJ9TkOAs/edit#)
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Organizers
|
## Organizers
|
||||||
* Antoine Legrand (**[@ant31](https://github.com/ant31)**), CoreOS
|
* Antoine Legrand (**[@ant31](https://github.com/ant31)**), CoreOS
|
||||||
|
|
|
@ -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#)
|
Charter can be found [here](https://docs.google.com/document/d/1m4Kvnh_u_9cENEE9n1ifYowQEFSgiHnbw43urGJMB64/edit#)
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp).
|
|
||||||
|
|
||||||
|
|
||||||
## Organizers
|
## Organizers
|
||||||
* Sidhartha Mani (**[@wlan0](https://github.com/wlan0)**), Caascade Labs
|
* Sidhartha Mani (**[@wlan0](https://github.com/wlan0)**), Caascade Labs
|
||||||
|
|
|
@ -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).
|
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
|
## Organizers
|
||||||
* Kris Nova (**[@kris-nova](https://github.com/kris-nova)**), Heptio
|
* Kris Nova (**[@kris-nova](https://github.com/kris-nova)**), Heptio
|
||||||
* Robert Bailey (**[@roberthbailey](https://github.com/roberthbailey)**), Google
|
* Robert Bailey (**[@roberthbailey](https://github.com/roberthbailey)**), Google
|
||||||
|
|
|
@ -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.
|
Ensure containers are able to interact with external systems and acquire secure identities for communication, integrating with external solutions as necessary.
|
||||||
|
|
||||||
## Meetings
|
## Meetings
|
||||||
* [Tuesdays at 15:00 UTC](TBD) (bi-weekly (On demand)). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
|
* 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).
|
||||||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit).
|
|
||||||
|
|
||||||
|
|
||||||
## Organizers
|
## Organizers
|
||||||
* Clayton Coleman (**[@smarterclayton](https://github.com/smarterclayton)**), Red Hat
|
* Clayton Coleman (**[@smarterclayton](https://github.com/smarterclayton)**), Red Hat
|
||||||
|
|
|
@ -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.
|
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
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1KdXsLYiJYJdiRbtgZsx6qbHF4g_K-gAScB9Zs4avgzg/edit).
|
* [Meeting recordings](https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl).
|
|
||||||
|
|
||||||
## Organizers
|
## Organizers
|
||||||
* Lucas Käldström (**[@luxas](https://github.com/luxas)**), Luxas Labs (occasionally contracting for Weaveworks)
|
* Lucas Käldström (**[@luxas](https://github.com/luxas)**), Luxas Labs (occasionally contracting for Weaveworks)
|
||||||
|
|
|
@ -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.
|
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
|
## Organizers
|
||||||
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
|
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
|
||||||
* Jessie Frazelle (**[@jessfraz](https://github.com/jessfraz)**), Microsoft
|
* Jessie Frazelle (**[@jessfraz](https://github.com/jessfraz)**), Microsoft
|
||||||
|
|
|
@ -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.
|
Designing and shepherding cross-cutting features around compute resource isolation and utilization.
|
||||||
|
|
||||||
## Meetings
|
## 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).
|
* 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 notes and Agenda can be found [here](https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU).
|
* [Meeting recordings](https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4).
|
||||||
Meeting recordings can be found [here](https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4).
|
|
||||||
|
|
||||||
## Organizers
|
## Organizers
|
||||||
* Vishnu Kannan (**[@vishh](https://github.com/vishh)**), Google
|
* Vishnu Kannan (**[@vishh](https://github.com/vishh)**), Google
|
||||||
|
|
Loading…
Reference in New Issue