summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-03-15 06:13:26 -0700
committerGitHub <noreply@github.com>2018-03-15 06:13:26 -0700
commit7e4990f4d2f7068e2b49931bb7a750a751de4eee (patch)
tree46ef44df2aa946f2d2d26b6667e1816d6ba07d5e
parent65aafdfd77928ac0b9675133881a3ac788246332 (diff)
parent1fff61d130aa7ea616210b6bd633d293d17754e0 (diff)
Merge pull request #1917 from cblecker/sigs-yaml-governance-update
Update sig docs generator to support chairs/tech leads
-rw-r--r--generator/aliases.tmpl7
-rw-r--r--generator/app.go17
-rw-r--r--generator/list.tmpl8
-rw-r--r--generator/sig_readme.tmpl29
-rw-r--r--generator/wg_readme.tmpl9
-rw-r--r--sig-api-machinery/README.md8
-rw-r--r--sig-apps/README.md8
-rw-r--r--sig-architecture/README.md8
-rw-r--r--sig-auth/README.md9
-rw-r--r--sig-autoscaling/README.md8
-rw-r--r--sig-aws/README.md8
-rw-r--r--sig-azure/README.md8
-rw-r--r--sig-big-data/README.md8
-rw-r--r--sig-cli/README.md9
-rw-r--r--sig-cluster-lifecycle/README.md8
-rw-r--r--sig-cluster-ops/README.md8
-rw-r--r--sig-contributor-experience/README.md8
-rw-r--r--sig-docs/README.md8
-rw-r--r--sig-gcp/README.md8
-rw-r--r--sig-instrumentation/README.md8
-rw-r--r--sig-list.md6
-rw-r--r--sig-multicluster/README.md8
-rw-r--r--sig-network/README.md8
-rw-r--r--sig-node/README.md8
-rw-r--r--sig-on-premise/README.md8
-rw-r--r--sig-openstack/README.md8
-rw-r--r--sig-product-management/README.md8
-rw-r--r--sig-release/README.md8
-rw-r--r--sig-scalability/README.md8
-rw-r--r--sig-scheduling/README.md8
-rw-r--r--sig-service-catalog/README.md8
-rw-r--r--sig-storage/README.md8
-rw-r--r--sig-testing/README.md8
-rw-r--r--sig-ui/README.md8
-rw-r--r--sig-windows/README.md8
-rw-r--r--sigs.yaml703
-rw-r--r--wg-app-def/README.md1
-rw-r--r--wg-cloud-provider/README.md1
-rw-r--r--wg-cluster-api/README.md5
-rw-r--r--wg-container-identity/README.md1
-rw-r--r--wg-kubeadm-adoption/README.md1
-rwxr-xr-xwg-machine-learning/README.md1
-rw-r--r--wg-multitenancy/README.md1
-rw-r--r--wg-policy/README.md1
-rw-r--r--wg-resource-management/README.md1
45 files changed, 611 insertions, 415 deletions
diff --git a/generator/aliases.tmpl b/generator/aliases.tmpl
index 32c71cc6..e8c6d4ab 100644
--- a/generator/aliases.tmpl
+++ b/generator/aliases.tmpl
@@ -1,13 +1,16 @@
aliases:
{{- range .Sigs}}
{{.Dir}}-leads:
- {{- range .Leads}}
+ {{- range .Leadership.Chairs}}
+ - {{.GitHub}}
+ {{- end}}
+ {{- range .Leadership.TechnicalLeads}}
- {{.GitHub}}
{{- end}}
{{- end}}
{{- range .WorkingGroups}}
{{.Dir}}-leads:
- {{- range .Leads}}
+ {{- range .Leadership.Chairs}}
- {{.GitHub}}
{{- end}}
{{- end}}
diff --git a/generator/app.go b/generator/app.go
index 2c96eaf8..3a861e28 100644
--- a/generator/app.go
+++ b/generator/app.go
@@ -52,9 +52,8 @@ var (
templateDir = "generator"
)
-// Lead represents a lead engineer for a particular group. There are usually
-// 2 per group.
-type Lead struct {
+// Person represents an individual person holding a role in a group.
+type Person struct {
Name string
Company string
GitHub string
@@ -85,7 +84,7 @@ type GithubTeams struct {
Description string
}
-// Subproject represenst a specific subproject owned by the group
+// Subproject represents a specific subproject owned by the group
type Subproject struct {
Name string
Description string
@@ -93,14 +92,20 @@ type Subproject struct {
Meetings []Meeting
}
+// LeadershipGroup represents the different groups of leaders within a group
+type LeadershipGroup struct {
+ Chairs []Person
+ TechnicalLeads []Person `yaml:"tech_leads"`
+ EmeritusLeads []Person `yaml:"emeritus_leads"`
+}
+
// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
type Group struct {
Name string
Dir string
MissionStatement string `yaml:"mission_statement"`
Label string
- Leads []Lead
- EmeritusLeads []Lead `yaml:"emeritus_leads"`
+ Leadership LeadershipGroup `yaml:"leadership"`
Meetings []Meeting
Contact Contact
Subprojects []Subproject
diff --git a/generator/list.tmpl b/generator/list.tmpl
index 200f73f9..d09989da 100644
--- a/generator/list.tmpl
+++ b/generator/list.tmpl
@@ -13,10 +13,10 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
### Master SIG List
-| Name | Label | Leads | Contact | Meetings |
-|------|--------|-------|---------|----------|
+| Name | Label | Chairs | Contact | Meetings |
+|------|-------|--------|---------|----------|
{{- 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}})|{{- range .Meetings -}}
+|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leadership.Chairs}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{- range .Meetings -}}
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>
{{- end -}}
{{- range .Subprojects -}}
@@ -32,5 +32,5 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
| Name | Organizers | Contact | Meetings |
|------|------------|---------|----------|
{{- range .WorkingGroups}}
-|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
+|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leadership.Chairs}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
{{- end }}
diff --git a/generator/sig_readme.tmpl b/generator/sig_readme.tmpl
index 95419750..59bf440c 100644
--- a/generator/sig_readme.tmpl
+++ b/generator/sig_readme.tmpl
@@ -1,5 +1,5 @@
{{- template "header" }}
-# {{.Name}} SIG
+# {{.Name}} Special Interest Group
{{ .MissionStatement }}
{{ if .Meetings }}## Meetings
@@ -13,18 +13,35 @@
{{- end }}
{{- end }}
-{{ end -}}
-## Leads
-{{- range .Leads }}
+{{- end }}
+{{- if .Leadership }}
+
+## Leadership
+{{- if .Leadership.Chairs }}
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+{{ range .Leadership.Chairs }}
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
{{- end }}
-{{- if .EmeritusLeads }}
+{{- end }}
+{{- if .Leadership.TechnicalLeads }}
+
+### Technical Leads
+The Technical Leads of the SIG establish new subprojects, decommission existing
+subprojects, and resolve cross-subproject technical issues and decisions.
+{{ range .Leadership.TechnicalLeads }}
+* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
+{{- end }}
+{{- end }}
+{{- if .Leadership.EmeritusLeads }}
## Emeritus Leads
-{{- range .EmeritusLeads }}
+{{ range .Leadership.EmeritusLeads }}
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
{{- end }}
{{- end }}
+{{- end }}
## Contact
* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
diff --git a/generator/wg_readme.tmpl b/generator/wg_readme.tmpl
index c1381827..28c5bbd1 100644
--- a/generator/wg_readme.tmpl
+++ b/generator/wg_readme.tmpl
@@ -13,11 +13,16 @@
{{- end }}
{{- end }}
-{{ end -}}
+{{- end }}
+{{- if .Leadership }}
+{{- if .Leadership.Chairs }}
+
## Organizers
-{{- range .Leads }}
+{{ range .Leadership.Chairs }}
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
{{- end }}
+{{- end }}
+{{- end }}
## Contact
* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})
diff --git a/sig-api-machinery/README.md b/sig-api-machinery/README.md
index bbe0b9b8..be681156 100644
--- a/sig-api-machinery/README.md
+++ b/sig-api-machinery/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# API Machinery SIG
+# API Machinery Special Interest Group
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.
@@ -15,7 +15,11 @@ Covers all aspects of API server, API registration and discovery, generic API CR
* [Meeting notes and Agenda](https://goo.gl/0lbiM9).
* [Meeting recordings](https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Daniel Smith (**[@lavalamp](https://github.com/lavalamp)**), Google
* David Eads (**[@deads2k](https://github.com/deads2k)**), Red Hat
diff --git a/sig-apps/README.md b/sig-apps/README.md
index aee6bb74..ac3e8da8 100644
--- a/sig-apps/README.md
+++ b/sig-apps/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Apps SIG
+# Apps Special Interest Group
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.
@@ -15,7 +15,11 @@ Covers deploying and operating applications in Kubernetes. We focus on the devel
* [Meeting notes and Agenda](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
* [Meeting recordings](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Matt Farina (**[@mattfarina](https://github.com/mattfarina)**), Samsung SDS
* Adnan Abdulhussein (**[@prydonius](https://github.com/prydonius)**), Bitnami
* Kenneth Owens (**[@kow3ns](https://github.com/kow3ns)**), Google
diff --git a/sig-architecture/README.md b/sig-architecture/README.md
index 3bc11caa..e2057b80 100644
--- a/sig-architecture/README.md
+++ b/sig-architecture/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Architecture SIG
+# Architecture Special Interest Group
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.
@@ -15,7 +15,11 @@ The Architecture SIG maintains and evolves the design principles of Kubernetes,
* [Meeting notes and Agenda](https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit).
* [Meeting recordings](https://www.youtube.com/watch?v=d5ERqm3oHN0&list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Brian Grant (**[@bgrant0607](https://github.com/bgrant0607)**), Google
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
diff --git a/sig-auth/README.md b/sig-auth/README.md
index a74b2110..38692a07 100644
--- a/sig-auth/README.md
+++ b/sig-auth/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Auth SIG
+# Auth Special Interest Group
Covers improvements to Kubernetes authorization, authentication, and cluster security policy.
@@ -15,12 +15,17 @@ Covers improvements to Kubernetes authorization, authentication, and cluster sec
* [Meeting notes and Agenda](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#).
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Eric Chiang (**[@ericchiang](https://github.com/ericchiang)**), CoreOS
* Jordan Liggitt (**[@liggitt](https://github.com/liggitt)**), Red Hat
* Tim Allclair (**[@tallclair](https://github.com/tallclair)**), Google
## Emeritus Leads
+
* Eric Tune (**[@erictune](https://github.com/erictune)**), Google
* David Eads (**[@deads2k](https://github.com/deads2k)**), Red Hat
diff --git a/sig-autoscaling/README.md b/sig-autoscaling/README.md
index 516df480..aafac1b3 100644
--- a/sig-autoscaling/README.md
+++ b/sig-autoscaling/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Autoscaling SIG
+# Autoscaling Special Interest Group
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)
@@ -14,7 +14,11 @@ Covers autoscaling of clusters, horizontal and vertical autoscaling of pods, set
* Regular SIG Meeting: [Mondays at 14:00 UTC](https://zoom.us/my/k8s.sig.autoscaling) (biweekly/triweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=UTC).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Marcin Wielgus (**[@mwielgus](https://github.com/mwielgus)**), Google
* Solly Ross (**[@directxman12](https://github.com/directxman12)**), Red Hat
diff --git a/sig-aws/README.md b/sig-aws/README.md
index 73d8ba14..a1ad795c 100644
--- a/sig-aws/README.md
+++ b/sig-aws/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# AWS SIG
+# AWS Special Interest Group
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
@@ -14,7 +14,11 @@ Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
* Regular SIG Meeting: [Fridays at 9:00 PT (Pacific Time)](https://zoom.us/my/k8ssigaws) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Justin Santa Barbara (**[@justinsb](https://github.com/justinsb)**)
* Kris Nova (**[@kris-nova](https://github.com/kris-nova)**), Heptio
* Bob Wise (**[@countspongebob](https://github.com/countspongebob)**), AWS
diff --git a/sig-azure/README.md b/sig-azure/README.md
index 08d4c84c..9811e2a1 100644
--- a/sig-azure/README.md
+++ b/sig-azure/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Azure SIG
+# Azure Special Interest Group
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on Azure.
@@ -15,7 +15,11 @@ A Special Interest Group for building, deploying, maintaining, supporting, and u
* [Meeting notes and Agenda](https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit).
* [Meeting recordings](https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Jason Hansen (**[@slack](https://github.com/slack)**), Microsoft
* Cole Mickens (**[@colemickens](https://github.com/colemickens)**), Red Hat
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
diff --git a/sig-big-data/README.md b/sig-big-data/README.md
index f3bbc796..5a850ca8 100644
--- a/sig-big-data/README.md
+++ b/sig-big-data/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Big Data SIG
+# Big Data Special Interest Group
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.
@@ -15,7 +15,11 @@ Covers deploying and operating big data applications (Spark, Kafka, Hadoop, Flin
* [Meeting notes and Agenda](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
* [Meeting recordings](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Anirudh Ramanathan (**[@foxish](https://github.com/foxish)**), Google
* Erik Erlandson (**[@erikerlandson](https://github.com/erikerlandson)**), Red Hat
diff --git a/sig-cli/README.md b/sig-cli/README.md
index c56234f9..6c3a1892 100644
--- a/sig-cli/README.md
+++ b/sig-cli/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# CLI SIG
+# CLI Special Interest Group
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.
@@ -15,12 +15,17 @@ Covers kubectl and related tools. We focus on the development and standardizatio
* [Meeting notes and Agenda](https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing).
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Maciej Szulik (**[@soltysh](https://github.com/soltysh)**), Red Hat
* Phillip Wittrock (**[@pwittrock](https://github.com/pwittrock)**), Google
* Tony Ado (**[@AdoHe](https://github.com/AdoHe)**), Alibaba
## Emeritus Leads
+
* Fabiano Franz (**[@fabianofranz](https://github.com/fabianofranz)**), Red Hat
## Contact
diff --git a/sig-cluster-lifecycle/README.md b/sig-cluster-lifecycle/README.md
index 0e5a3771..bf86ebbb 100644
--- a/sig-cluster-lifecycle/README.md
+++ b/sig-cluster-lifecycle/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Cluster Lifecycle SIG
+# Cluster Lifecycle Special Interest Group
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.
@@ -23,7 +23,11 @@ The Cluster Lifecycle SIG examines how we should change Kubernetes to make it ea
* kops Office Hours: [Fridays at 09:00 PT (Pacific Time)](https://zoom.us/my/k8ssigaws) (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/12QkyL0FkNbWPcLFxxRGSPt_tNPBHbmni3YLY-lHny7E/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Luke Marsden (**[@lukemarsden](https://github.com/lukemarsden)**), Weave
* Robert Bailey (**[@roberthbailey](https://github.com/roberthbailey)**), Google
* Lucas Käldström (**[@luxas](https://github.com/luxas)**), Luxas Labs (occasionally contracting for Weaveworks)
diff --git a/sig-cluster-ops/README.md b/sig-cluster-ops/README.md
index a79b2e48..e8244532 100644
--- a/sig-cluster-ops/README.md
+++ b/sig-cluster-ops/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Cluster Ops SIG
+# Cluster Ops Special Interest 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.
@@ -15,7 +15,11 @@ Promote operability and interoperability of Kubernetes clusters. We focus on sha
* [Meeting notes and Agenda](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#).
* [Meeting recordings](https://www.youtube.com/watch?v=7uyy37pCk4U&list=PL69nYSiGNLP3b38liicqy6fm2-jWT4FQR).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Rob Hirschfeld (**[@zehicle](https://github.com/zehicle)**), RackN
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
diff --git a/sig-contributor-experience/README.md b/sig-contributor-experience/README.md
index 2d5a8ba0..b1280d8b 100644
--- a/sig-contributor-experience/README.md
+++ b/sig-contributor-experience/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Contributor Experience SIG
+# Contributor Experience Special Interest Group
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.
@@ -18,7 +18,11 @@ Developing and sustaining a healthy community of contributors is critical to sca
* [Meeting notes and Agenda](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/).
* [Meeting recordings](https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Garrett Rodrigues (**[@grodrigues3](https://github.com/grodrigues3)**), Google
* Elsie Phillips (**[@Phillels](https://github.com/Phillels)**), CoreOS
* Paris Pittman (**[@parispittman](https://github.com/parispittman)**), Google
diff --git a/sig-docs/README.md b/sig-docs/README.md
index a8f44b96..9eda50c1 100644
--- a/sig-docs/README.md
+++ b/sig-docs/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Docs SIG
+# Docs Special Interest Group
Covers documentation, doc processes, and doc publishing for Kubernetes.
@@ -15,7 +15,11 @@ Covers documentation, doc processes, and doc publishing for Kubernetes.
* [Meeting notes and Agenda](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit).
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Zach Corleissen (**[@zacharysarah](https://github.com/zacharysarah)**), Linux Foundation
* Andrew Chen (**[@chenopis](https://github.com/chenopis)**), Google
* Jared Bhatti (**[@jaredbhatti](https://github.com/jaredbhatti)**), Google
diff --git a/sig-gcp/README.md b/sig-gcp/README.md
index c763dca1..7091af2e 100644
--- a/sig-gcp/README.md
+++ b/sig-gcp/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# GCP SIG
+# GCP Special Interest Group
A Special Interest Group for building, deploying, maintaining, supporting, and using Kubernetes on the Google Cloud Platform.
@@ -14,7 +14,11 @@ A Special Interest Group for building, deploying, maintaining, supporting, and u
* Regular SIG Meeting: [Thursdays at 16:00 UTC](https://zoom.us/j/761149873) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Adam Worrall (**[@abgworrall](https://github.com/abgworrall)**), Google
## Contact
diff --git a/sig-instrumentation/README.md b/sig-instrumentation/README.md
index da520e49..a3e63341 100644
--- a/sig-instrumentation/README.md
+++ b/sig-instrumentation/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Instrumentation SIG
+# Instrumentation Special Interest Group
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.
@@ -14,7 +14,11 @@ Covers best practices for cluster observability through metrics, logging, and ev
* Regular SIG Meeting: [Thursdays at 17:30 UTC](https://zoom.us/j/5342565819) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Piotr Szczesniak (**[@piosz](https://github.com/piosz)**), Google
* Frederic Branczyk (**[@brancz](https://github.com/brancz)**), Red Hat
diff --git a/sig-list.md b/sig-list.md
index d7d83274..742d8b3a 100644
--- a/sig-list.md
+++ b/sig-list.md
@@ -20,8 +20,8 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
### Master SIG List
-| Name | Label | Leads | Contact | Meetings |
-|------|--------|-------|---------|----------|
+| Name | Label | Chairs | 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)|* Regular SIG Meeting: [Wednesdays at 11:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/apimachinery)<br>
|[Apps](sig-apps/README.md)|apps|* [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>* (charts) Charts Chat: [Tuesdays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/166909412)<br>* (helm) Helm Developer call: [Thursdays at 9:30 PT (Pacific Time) (weekly)](https://zoom.us/j/4526666954)<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>
@@ -58,7 +58,7 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|------|------------|---------|----------|
|[App Def](wg-app-def/README.md)|* [Antoine Legrand](https://github.com/ant31), CoreOS<br>* [Bryan Liles](https://github.com/bryanl), Heptio<br>* [Gareth Rushgrove](https://github.com/garethr), Docker<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)|* 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/cluster-api)<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/cluster-api)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* Regular WG Meeting: [s at ()]()<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)|* Regular WG Meeting: [Tuesdays at 18:00 UTC (bi-weekly)](https://zoom.us/j/166836%E2%80%8B624)<br>
|[Machine Learning](wg-machine-learning/README.md)|* [Vishnu Kannan](https://github.com/vishh), Google<br>* [Kenneth Owens](https://github.com/kow3ns), Google<br>|* [Slack](https://kubernetes.slack.com/messages/wg-machine-learning)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-machine-learning)|* Regular WG Meeting: [Thursdays at 13:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/4799874685)<br>
diff --git a/sig-multicluster/README.md b/sig-multicluster/README.md
index bf83181e..37a438a5 100644
--- a/sig-multicluster/README.md
+++ b/sig-multicluster/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Multicluster SIG
+# Multicluster Special Interest Group
A Special Interest Group focussed on solving common challenges related to the management of multiple Kubernetes clusters, and applications that exist therein. The SIG will be responsible for designing, discussing, implementing and maintaining API’s, tools and documentation related to multi-cluster administration and application management. This includes not only active automated approaches such as Cluster Federation, but also those that employ batch workflow-style continuous deployment systems like Spinnaker and others. Standalone building blocks for these and other similar systems (for example a cluster registry), and proposed changes to kubernetes core where appropriate will also be in scope.
@@ -18,7 +18,11 @@ A Special Interest Group focussed on solving common challenges related to the ma
* [Meeting notes and Agenda](https://docs.google.com/document/d/1v-Kb1pUs3ww_x0MiKtgcyTXCAuZlbVlz4_A9wS3_HXY/edit).
* [Meeting recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP3iKP5EzMbtNT2zOZv6RCrX).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Christian Bell (**[@csbell](https://github.com/csbell)**), Google
* Quinton Hoole (**[@quinton-hoole](https://github.com/quinton-hoole)**), Huawei
diff --git a/sig-network/README.md b/sig-network/README.md
index 7b2e4d26..42594270 100644
--- a/sig-network/README.md
+++ b/sig-network/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Network SIG
+# Network Special Interest Group
Covers networking in Kubernetes.
@@ -15,7 +15,11 @@ Covers networking in Kubernetes.
* [Meeting notes and Agenda](https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit).
* [Meeting recordings](https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Tim Hockin (**[@thockin](https://github.com/thockin)**), Google
* Dan Williams (**[@dcbw](https://github.com/dcbw)**), Red Hat
* Casey Davenport (**[@caseydavenport](https://github.com/caseydavenport)**), Tigera
diff --git a/sig-node/README.md b/sig-node/README.md
index bf4d8547..afad2120 100644
--- a/sig-node/README.md
+++ b/sig-node/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Node SIG
+# Node Special Interest Group
## Meetings
@@ -14,7 +14,11 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Meeting notes and Agenda](https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing).
* [Meeting recordings](https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Dawn Chen (**[@dchen1107](https://github.com/dchen1107)**), Google
* Derek Carr (**[@derekwaynecarr](https://github.com/derekwaynecarr)**), Red Hat
diff --git a/sig-on-premise/README.md b/sig-on-premise/README.md
index 38ba7049..3212cfc2 100644
--- a/sig-on-premise/README.md
+++ b/sig-on-premise/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# On Premise SIG
+# On Premise Special Interest Group
Brings together member of Kubernetes community interested in running Kubernetes on premise, on bare metal or more generally beyond cloud providers.
@@ -15,7 +15,11 @@ Brings together member of Kubernetes community interested in running Kubernetes
* [Meeting notes and Agenda](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#).
* [Meeting recordings](https://www.youtube.com/watch?v=dyUWqqNYUio&list=PL69nYSiGNLP2MvqC6NeegrgtOl5s1KlYa).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Marco Ceppi (**[@marcoceppi](https://github.com/marcoceppi)**), Canonical
* Dalton Hubble (**[@dghubble](https://github.com/dghubble)**), CoreOS
diff --git a/sig-openstack/README.md b/sig-openstack/README.md
index ca2b6e07..a28e7871 100644
--- a/sig-openstack/README.md
+++ b/sig-openstack/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# OpenStack SIG
+# OpenStack Special Interest Group
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.
@@ -15,7 +15,11 @@ Coordinates the cross-community efforts of the OpenStack and Kubernetes communit
* [Meeting notes and Agenda](https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f).
* [Meeting recordings](https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Chris Hoge (**[@hogepodge](https://github.com/hogepodge)**), OpenStack Foundation
* David Lyle (**[@dklyle](https://github.com/dklyle)**), Intel
* Robert Morse (**[@rjmorse](https://github.com/rjmorse)**), Ticketmaster
diff --git a/sig-product-management/README.md b/sig-product-management/README.md
index 0ab945a2..4cdb235f 100644
--- a/sig-product-management/README.md
+++ b/sig-product-management/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Product Management SIG
+# Product Management Special Interest Group
Focuses on aspects of product management, such as the qualification and successful management of user requests, and aspects of project and program management such as the continued improvement of the processes used by the Kubernetes community to maintain the Kubernetes Project itself.
Besides helping to discover both what to build and how to build it, the PM Group also helps to try and keep the wheels on this spaceship we are all building together; bringing together people who think about Kubernetes as both a vibrant community of humans and technical program is another primary focus of this group.
@@ -18,7 +18,11 @@ It is also important to remember that the role of managing an open source projec
* [Meeting notes and Agenda](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing).
* [Meeting recordings](https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Aparna Sinha (**[@apsinha](https://github.com/apsinha)**), Google
* Ihor Dvoretskyi (**[@idvoretskyi](https://github.com/idvoretskyi)**), CNCF
* Caleb Miles (**[@calebamiles](https://github.com/calebamiles)**), Google
diff --git a/sig-release/README.md b/sig-release/README.md
index c19b7d55..96fc31aa 100644
--- a/sig-release/README.md
+++ b/sig-release/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Release SIG
+# Release Special Interest Group
## Meetings
@@ -14,7 +14,11 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Meeting notes and Agenda](https://docs.google.com/document/d/1vhsixdT58iJFfoGZbpmvI_xnK59XyAjtadu3h6hHPpY/edit?usp=sharing).
* [Meeting recordings](https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Jaice Singer DuMars (**[@jdumars](https://github.com/jdumars)**), Microsoft
* Caleb Miles (**[@calebamiles](https://github.com/calebamiles)**), Google
diff --git a/sig-scalability/README.md b/sig-scalability/README.md
index 2dce8b5f..a22134e2 100644
--- a/sig-scalability/README.md
+++ b/sig-scalability/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Scalability SIG
+# Scalability Special Interest Group
Responsible for answering scalability related questions such as:
What size clusters do we think that we should support with Kubernetes in the short to medium term? How performant do we think that the control system should be at scale? What resource overhead should the Kubernetes control system reasonably consume?
@@ -17,7 +17,11 @@ For more details about our objectives please review our [Scaling And Performance
* [Meeting notes and Agenda](https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web).
* [Meeting recordings](https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Wojciech Tyczynski (**[@wojtek-t](https://github.com/wojtek-t)**), Google
* Bob Wise (**[@countspongebob](https://github.com/countspongebob)**), Samsung SDS
diff --git a/sig-scheduling/README.md b/sig-scheduling/README.md
index 41583b36..750699f3 100644
--- a/sig-scheduling/README.md
+++ b/sig-scheduling/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Scheduling SIG
+# Scheduling Special Interest Group
## Meetings
@@ -14,7 +14,11 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Meeting notes and Agenda](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit).
* [Meeting recordings](https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Bobby (Babak) Salamat (**[@bsalamat](https://github.com/bsalamat)**), Google
* Timothy St. Clair (**[@timothysc](https://github.com/timothysc)**), Heptio
diff --git a/sig-service-catalog/README.md b/sig-service-catalog/README.md
index 949aa6bf..480019c2 100644
--- a/sig-service-catalog/README.md
+++ b/sig-service-catalog/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Service Catalog SIG
+# Service Catalog Special Interest Group
To develop a Kubernetes API for the CNCF service broker and Kubernetes broker implementation.
@@ -15,7 +15,11 @@ To develop a Kubernetes API for the CNCF service broker and Kubernetes broker im
* [Meeting notes and Agenda](https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit).
* [Meeting recordings](https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Paul Morie (**[@pmorie](https://github.com/pmorie)**), Red Hat
* Aaron Schlesinger (**[@arschles](https://github.com/arschles)**), Microsoft
* Ville Aikas (**[@vaikas-google](https://github.com/vaikas-google)**), Google
diff --git a/sig-storage/README.md b/sig-storage/README.md
index daf61965..be5121aa 100644
--- a/sig-storage/README.md
+++ b/sig-storage/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Storage SIG
+# Storage Special Interest Group
Covers storage and volume plugins.
@@ -15,7 +15,11 @@ Covers storage and volume plugins.
* [Meeting notes and Agenda](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
* [Meeting recordings](https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Saad Ali (**[@saad-ali](https://github.com/saad-ali)**), Google
* Bradley Childs (**[@childsb](https://github.com/childsb)**), Red Hat
diff --git a/sig-testing/README.md b/sig-testing/README.md
index af9fdc90..2381d8b2 100644
--- a/sig-testing/README.md
+++ b/sig-testing/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Testing SIG
+# Testing Special Interest Group
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.
@@ -15,7 +15,11 @@ Interested in how we can most effectively test Kubernetes. We're interested spec
* [Meeting notes and Agenda](https://bit.ly/k8s-sig-testing-notes).
* [Meeting recordings](https://bit.ly/k8s-sig-testing-videos).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Aaron Crickenberger (**[@spiffxp](https://github.com/spiffxp)**), Samsung SDS
* Erick Feja (**[@fejta](https://github.com/fejta)**), Google
* Steve Kuznetsov (**[@stevekuznetsov](https://github.com/stevekuznetsov)**), Red Hat
diff --git a/sig-ui/README.md b/sig-ui/README.md
index c3845281..cd258229 100644
--- a/sig-ui/README.md
+++ b/sig-ui/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# UI SIG
+# UI Special Interest Group
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.
@@ -14,7 +14,11 @@ Covers all things UI related. Efforts are centered around Kubernetes Dashboard:
* Regular SIG Meeting: [Thursdays at 18:00 CET (Central European Time)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=CET%20%28Central%20European%20Time%29).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Dan Romlein (**[@danielromlein](https://github.com/danielromlein)**), Google
* Sebastian Florek (**[@floreks](https://github.com/floreks)**), Fujitsu
diff --git a/sig-windows/README.md b/sig-windows/README.md
index fc1dee2d..92028664 100644
--- a/sig-windows/README.md
+++ b/sig-windows/README.md
@@ -6,7 +6,7 @@ sigs.yaml file in the project root.
To understand how this file is generated, see https://git.k8s.io/community/generator/README.md
-->
-# Windows SIG
+# Windows Special Interest Group
Focuses on supporting Windows Server Containers for Kubernetes.
@@ -15,7 +15,11 @@ Focuses on supporting Windows Server Containers for Kubernetes.
* [Meeting notes and Agenda](https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431).
* [Meeting recordings](https://www.youtube.com/watch?v=7zawb3KT9Xk&list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4).
-## Leads
+## Leadership
+
+### Chairs
+The Chairs of the SIG run operations and processes governing the SIG.
+
* Michael Michael (**[@michmike](https://github.com/michmike)**), Apprenda
## Contact
diff --git a/sigs.yaml b/sigs.yaml
index f45b2e93..27f01da9 100644
--- a/sigs.yaml
+++ b/sigs.yaml
@@ -7,13 +7,14 @@ sigs:
defaulting, persistence layer (etcd), OpenAPI, CustomResourceDefinition,
garbage collection, and client libraries.
label: api-machinery
- leads:
- - name: Daniel Smith
- company: Google
- github: lavalamp
- - name: David Eads
- company: Red Hat
- github: deads2k
+ leadership:
+ chairs:
+ - name: Daniel Smith
+ company: Google
+ github: lavalamp
+ - name: David Eads
+ company: Red Hat
+ github: deads2k
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -114,16 +115,17 @@ sigs:
and projects, and discuss areas of friction that can lead to suggesting
improvements or feature requests.
label: apps
- leads:
- - name: Matt Farina
- github: mattfarina
- company: Samsung SDS
- - name: Adnan Abdulhussein
- github: prydonius
- company: Bitnami
- - name: Kenneth Owens
- github: kow3ns
- company: Google
+ leadership:
+ chairs:
+ - name: Matt Farina
+ github: mattfarina
+ company: Samsung SDS
+ - name: Adnan Abdulhussein
+ github: prydonius
+ company: Bitnami
+ - name: Kenneth Owens
+ github: kow3ns
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Monday
@@ -226,13 +228,14 @@ sigs:
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.
label: architecture
- leads:
- - name: Brian Grant
- github: bgrant0607
- company: Google
- - name: Jaice Singer DuMars
- github: jdumars
- company: Microsoft
+ leadership:
+ chairs:
+ - name: Brian Grant
+ github: bgrant0607
+ company: Google
+ - name: Jaice Singer DuMars
+ github: jdumars
+ company: Microsoft
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -276,23 +279,24 @@ sigs:
Covers improvements to Kubernetes authorization, authentication, and
cluster security policy.
label: auth
- leads:
- - name: Eric Chiang
- github: ericchiang
- company: CoreOS
- - name: Jordan Liggitt
- github: liggitt
- company: Red Hat
- - name: Tim Allclair
- github: tallclair
- company: Google
- emeritus_leads:
- - name: Eric Tune
- github: erictune
- company: Google
- - name: David Eads
- github: deads2k
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Eric Chiang
+ github: ericchiang
+ company: CoreOS
+ - name: Jordan Liggitt
+ github: liggitt
+ company: Red Hat
+ - name: Tim Allclair
+ github: tallclair
+ company: Google
+ emeritus_leads:
+ - name: Eric Tune
+ github: erictune
+ company: Google
+ - name: David Eads
+ github: deads2k
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -327,13 +331,14 @@ sigs:
setting initial resources for pods, topics related to monitoring pods and
gathering their metrics (e.g.: Heapster)
label: autoscaling
- leads:
- - name: Marcin Wielgus
- github: mwielgus
- company: Google
- - name: Solly Ross
- github: directxman12
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Marcin Wielgus
+ github: mwielgus
+ company: Google
+ - name: Solly Ross
+ github: directxman12
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Monday
@@ -372,15 +377,16 @@ sigs:
mission_statement: >
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
label: aws
- leads:
- - name: Justin Santa Barbara
- github: justinsb
- - name: Kris Nova
- github: kris-nova
- company: Heptio
- - name: Bob Wise
- github: countspongebob
- company: AWS
+ leadership:
+ chairs:
+ - name: Justin Santa Barbara
+ github: justinsb
+ - name: Kris Nova
+ github: kris-nova
+ company: Heptio
+ - name: Bob Wise
+ github: countspongebob
+ company: AWS
meetings:
- description: Regular SIG Meeting
day: Friday
@@ -399,23 +405,23 @@ sigs:
- name: cloud-provider-aws
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-aws/master/OWNERS
-
- name: Azure
dir: sig-azure
mission_statement: >
A Special Interest Group for building, deploying, maintaining, supporting,
and using Kubernetes on Azure.
label: azure
- leads:
- - name: Jason Hansen
- github: slack
- company: Microsoft
- - name: Cole Mickens
- github: colemickens
- company: Red Hat
- - name: Jaice Singer DuMars
- github: jdumars
- company: Microsoft
+ leadership:
+ chairs:
+ - name: Jason Hansen
+ github: slack
+ company: Microsoft
+ - name: Cole Mickens
+ github: colemickens
+ company: Red Hat
+ - name: Jaice Singer DuMars
+ github: jdumars
+ company: Microsoft
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -435,7 +441,6 @@ sigs:
- name: cloud-provider-azure
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-azure/master/OWNERS
-
- name: Big Data
dir: sig-big-data
mission_statement: >
@@ -443,13 +448,14 @@ sigs:
Hadoop, Flink, Storm, etc) on Kubernetes. We focus on integrations with
big data applications and architecting the best ways to run them on Kubernetes.
label: big-data
- leads:
- - name: Anirudh Ramanathan
- github: foxish
- company: Google
- - name: Erik Erlandson
- github: erikerlandson
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Anirudh Ramanathan
+ github: foxish
+ company: Google
+ - name: Erik Erlandson
+ github: erikerlandson
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -486,20 +492,21 @@ sigs:
and improving the command line tools from a developer and devops user
experience and usability perspective.
label: cli
- leads:
- - name: Maciej Szulik
- github: soltysh
- company: Red Hat
- - name: Phillip Wittrock
- github: pwittrock
- company: Google
- - name: Tony Ado
- github: AdoHe
- company: Alibaba
- emeritus_leads:
- - name: Fabiano Franz
- github: fabianofranz
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Maciej Szulik
+ github: soltysh
+ company: Red Hat
+ - name: Phillip Wittrock
+ github: pwittrock
+ company: Google
+ - name: Tony Ado
+ github: AdoHe
+ company: Alibaba
+ emeritus_leads:
+ - name: Fabiano Franz
+ github: fabianofranz
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -540,19 +547,20 @@ sigs:
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.
label: cluster-lifecycle
- leads:
- - name: Luke Marsden
- github: lukemarsden
- company: Weave
- - name: Robert Bailey
- github: roberthbailey
- company: Google
- - name: Lucas Käldström
- github: luxas
- company: Luxas Labs (occasionally contracting for Weaveworks)
- - name: Timothy St. Clair
- github: timothysc
- company: Heptio
+ leadership:
+ chairs:
+ - name: Luke Marsden
+ github: lukemarsden
+ company: Weave
+ - name: Robert Bailey
+ github: roberthbailey
+ company: Google
+ - name: Lucas Käldström
+ github: luxas
+ company: Luxas Labs (occasionally contracting for Weaveworks)
+ - name: Timothy St. Clair
+ github: timothysc
+ company: Heptio
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -640,13 +648,14 @@ sigs:
to make Kubernetes broadly accessible with a common baseline reference.
We also organize operators as a sounding board and advocacy group.
label: cluster-ops
- leads:
- - name: Rob Hirschfeld
- github: zehicle
- company: RackN
- - name: Jaice Singer DuMars
- github: jdumars
- company: Microsoft
+ leadership:
+ chairs:
+ - name: Rob Hirschfeld
+ github: zehicle
+ company: RackN
+ - name: Jaice Singer DuMars
+ github: jdumars
+ company: Microsoft
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -668,16 +677,17 @@ sigs:
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.
label: contributor-experience
- leads:
- - name: Garrett Rodrigues
- github: grodrigues3
- company: Google
- - name: Elsie Phillips
- github: Phillels
- company: CoreOS
- - name: Paris Pittman
- github: parispittman
- company: Google
+ leadership:
+ chairs:
+ - name: Garrett Rodrigues
+ github: grodrigues3
+ company: Google
+ - name: Elsie Phillips
+ github: Phillels
+ company: CoreOS
+ - name: Paris Pittman
+ github: parispittman
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -733,16 +743,17 @@ sigs:
mission_statement: >
Covers documentation, doc processes, and doc publishing for Kubernetes.
label: docs
- leads:
- - name: Zach Corleissen
- github: zacharysarah
- company: Linux Foundation
- - name: Andrew Chen
- github: chenopis
- company: Google
- - name: Jared Bhatti
- github: jaredbhatti
- company: Google
+ leadership:
+ chairs:
+ - name: Zach Corleissen
+ github: zacharysarah
+ company: Linux Foundation
+ - name: Andrew Chen
+ github: chenopis
+ company: Google
+ - name: Jared Bhatti
+ github: jaredbhatti
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -779,10 +790,11 @@ sigs:
A Special Interest Group for building, deploying, maintaining,
supporting, and using Kubernetes on the Google Cloud Platform.
label: gcp
- leads:
- - name: Adam Worrall
- github: abgworrall
- company: Google
+ leadership:
+ chairs:
+ - name: Adam Worrall
+ github: abgworrall
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -821,13 +833,14 @@ sigs:
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.
label: instrumentation
- leads:
- - name: Piotr Szczesniak
- github: piosz
- company: Google
- - name: Frederic Branczyk
- github: brancz
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Piotr Szczesniak
+ github: piosz
+ company: Google
+ - name: Frederic Branczyk
+ github: brancz
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -880,13 +893,14 @@ sigs:
similar systems (for example a cluster registry), and proposed changes to kubernetes
core where appropriate will also be in scope.
label: multicluster
- leads:
- - name: Christian Bell
- github: csbell
- company: Google
- - name: Quinton Hoole
- github: quinton-hoole
- company: Huawei
+ leadership:
+ chairs:
+ - name: Christian Bell
+ github: csbell
+ company: Google
+ - name: Quinton Hoole
+ github: quinton-hoole
+ company: Huawei
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -922,22 +936,22 @@ sigs:
description: Test Failures and Triage
- name: sig-mutlicluster-proposals
description: Design Proposals
-# subprojects: (Kept in custom header)
- name: Network
dir: sig-network
mission_statement: >
Covers networking in Kubernetes.
label: network
- leads:
- - name: Tim Hockin
- github: thockin
- company: Google
- - name: Dan Williams
- github: dcbw
- company: Red Hat
- - name: Casey Davenport
- github: caseydavenport
- company: Tigera
+ leadership:
+ chairs:
+ - name: Tim Hockin
+ github: thockin
+ company: Google
+ - name: Dan Williams
+ github: dcbw
+ company: Red Hat
+ - name: Casey Davenport
+ github: caseydavenport
+ company: Tigera
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -992,13 +1006,14 @@ sigs:
dir: sig-node
mission_statement: >
label: node
- leads:
- - name: Dawn Chen
- github: dchen1107
- company: Google
- - name: Derek Carr
- github: derekwaynecarr
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Dawn Chen
+ github: dchen1107
+ company: Google
+ - name: Derek Carr
+ github: derekwaynecarr
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -1057,13 +1072,14 @@ sigs:
Kubernetes on premise, on bare metal or more generally beyond cloud
providers.
label: onprem
- leads:
- - name: Marco Ceppi
- github: marcoceppi
- company: Canonical
- - name: Dalton Hubble
- github: dghubble
- company: CoreOS
+ leadership:
+ chairs:
+ - name: Marco Ceppi
+ github: marcoceppi
+ company: Canonical
+ - name: Dalton Hubble
+ github: dghubble
+ company: CoreOS
meetings:
- description: Regular SIG Meeting
day: Wednesday
@@ -1100,16 +1116,17 @@ sigs:
service provider for Kubernetes; a collection of applications to run on
Kubernetes.
label: openstack
- leads:
- - name: Chris Hoge
- github: hogepodge
- company: OpenStack Foundation
- - name: David Lyle
- github: dklyle
- company: Intel
- - name: Robert Morse
- github: rjmorse
- company: Ticketmaster
+ leadership:
+ chairs:
+ - name: Chris Hoge
+ github: hogepodge
+ company: OpenStack Foundation
+ - name: David Lyle
+ github: dklyle
+ company: Intel
+ - name: Robert Morse
+ github: rjmorse
+ company: Ticketmaster
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -1141,7 +1158,6 @@ sigs:
- name: cloud-provider-openstack
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-openstack/master/OWNERS
-
- name: Product Management
dir: sig-product-management
mission_statement: >
@@ -1164,16 +1180,17 @@ sigs:
as Kubernetes; we are learning too and we are excited to learn how we
can best serve the community of users and contributors.
label: none
- leads:
- - name: Aparna Sinha
- github: apsinha
- company: Google
- - name: Ihor Dvoretskyi
- github: idvoretskyi
- company: CNCF
- - name: Caleb Miles
- github: calebamiles
- company: Google
+ leadership:
+ chairs:
+ - name: Aparna Sinha
+ github: apsinha
+ company: Google
+ - name: Ihor Dvoretskyi
+ github: idvoretskyi
+ company: CNCF
+ - name: Caleb Miles
+ github: calebamiles
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -1193,13 +1210,14 @@ sigs:
- name: Release
dir: sig-release
label: release
- leads:
- - name: Jaice Singer DuMars
- github: jdumars
- company: Microsoft
- - name: Caleb Miles
- github: calebamiles
- company: Google
+ leadership:
+ chairs:
+ - name: Jaice Singer DuMars
+ github: jdumars
+ company: Microsoft
+ - name: Caleb Miles
+ github: calebamiles
+ company: Google
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -1256,13 +1274,14 @@ sigs:
For more details about our objectives please review our
[Scaling And Performance Goals](https://git.k8s.io/community/sig-scalability/goals.md)
label: scalability
- leads:
- - name: Wojciech Tyczynski
- github: wojtek-t
- company: Google
- - name: Bob Wise
- github: countspongebob
- company: Samsung SDS
+ leadership:
+ chairs:
+ - name: Wojciech Tyczynski
+ github: wojtek-t
+ company: Google
+ - name: Bob Wise
+ github: countspongebob
+ company: Samsung SDS
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -1302,13 +1321,14 @@ sigs:
dir: sig-scheduling
mission_statement: >
label: scheduling
- leads:
- - name: Bobby (Babak) Salamat
- github: bsalamat
- company: Google
- - name: Timothy St. Clair
- github: timothysc
- company: Heptio
+ leadership:
+ chairs:
+ - name: Bobby (Babak) Salamat
+ github: bsalamat
+ company: Google
+ - name: Timothy St. Clair
+ github: timothysc
+ company: Heptio
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -1356,19 +1376,20 @@ sigs:
To develop a Kubernetes API for the CNCF service broker and Kubernetes
broker implementation.
label: service-catalog
- leads:
- - name: Paul Morie
- github: pmorie
- company: Red Hat
- - name: Aaron Schlesinger
- github: arschles
- company: Microsoft
- - name: Ville Aikas
- github: vaikas-google
- company: Google
- - name: Doug Davis
- github: duglin
- company: IBM
+ leadership:
+ chairs:
+ - name: Paul Morie
+ github: pmorie
+ company: Red Hat
+ - name: Aaron Schlesinger
+ github: arschles
+ company: Microsoft
+ - name: Ville Aikas
+ github: vaikas-google
+ company: Google
+ - name: Doug Davis
+ github: duglin
+ company: IBM
meetings:
- description: Regular SIG Meeting
day: Monday
@@ -1405,13 +1426,14 @@ sigs:
mission_statement: >
Covers storage and volume plugins.
label: storage
- leads:
- - name: Saad Ali
- github: saad-ali
- company: Google
- - name: Bradley Childs
- github: childsb
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Saad Ali
+ github: saad-ali
+ company: Google
+ - name: Bradley Childs
+ github: childsb
+ company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -1460,19 +1482,20 @@ sigs:
tests and contribute test results, to ensure Kubernetes is stable across
a variety of cluster configurations and cloud providers.
label: testing
- leads:
- - name: Aaron Crickenberger
- github: spiffxp
- company: Samsung SDS
- - name: Erick Feja
- github: fejta
- company: Google
- - name: Steve Kuznetsov
- github: stevekuznetsov
- company: Red Hat
- - name: Timothy St. Clair
- github: timothysc
- company: Heptio
+ leadership:
+ chairs:
+ - name: Aaron Crickenberger
+ github: spiffxp
+ company: Samsung SDS
+ - name: Erick Feja
+ github: fejta
+ company: Google
+ - name: Steve Kuznetsov
+ github: stevekuznetsov
+ company: Red Hat
+ - name: Timothy St. Clair
+ github: timothysc
+ company: Heptio
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -1528,13 +1551,14 @@ sigs:
allows users to manage applications running in the cluster and
troubleshoot them, as well as manage the cluster itself.
label: ui
- leads:
- - name: Dan Romlein
- github: danielromlein
- company: Google
- - name: Sebastian Florek
- github: floreks
- company: Fujitsu
+ leadership:
+ chairs:
+ - name: Dan Romlein
+ github: danielromlein
+ company: Google
+ - name: Sebastian Florek
+ github: floreks
+ company: Fujitsu
meetings:
- description: Regular SIG Meeting
day: Thursday
@@ -1556,10 +1580,11 @@ sigs:
mission_statement: >
Focuses on supporting Windows Server Containers for Kubernetes.
label: windows
- leads:
- - name: Michael Michael
- github: michmike
- company: Apprenda
+ leadership:
+ chairs:
+ - name: Michael Michael
+ github: michmike
+ company: Apprenda
meetings:
- description: Regular SIG Meeting
day: Tuesday
@@ -1584,13 +1609,14 @@ workinggroups:
dir: wg-resource-management
mission_statement: >
Designing and shepherding cross-cutting features around compute resource isolation and utilization.
- leads:
- - name: Vishnu Kannan
- github: vishh
- company: Google
- - name: Derek Carr
- github: derekwaynecarr
- company: Red Hat
+ leadership:
+ chairs:
+ - name: Vishnu Kannan
+ github: vishh
+ company: Google
+ - name: Derek Carr
+ github: derekwaynecarr
+ company: Red Hat
meetings:
- description: Regular WG Meeting
day: Wednesday
@@ -1607,13 +1633,14 @@ workinggroups:
dir: wg-container-identity
mission_statement: >
Ensure containers are able to interact with external systems and acquire secure identities for communication, integrating with external solutions as necessary.
- leads:
- - name: Clayton Coleman
- github: smarterclayton
- company: Red Hat
- - name: Greg Gastle
- github: destijl
- company: Google
+ leadership:
+ chairs:
+ - name: Clayton Coleman
+ github: smarterclayton
+ company: Red Hat
+ - name: Greg Gastle
+ github: destijl
+ company: Google
meetings:
- description: Regular WG Meeting
day: Tuesday
@@ -1631,12 +1658,13 @@ workinggroups:
mission_statement: >
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.
- leads:
- - name: Lucas Käldström
- github: luxas
- company: Luxas Labs (occasionally contracting for Weaveworks)
- - name: Justin Santa Barbara
- github: justinsb
+ leadership:
+ chairs:
+ - name: Lucas Käldström
+ github: luxas
+ company: Luxas Labs (occasionally contracting for Weaveworks)
+ - name: Justin Santa Barbara
+ github: justinsb
meetings:
- description: Regular WG Meeting
day: Tuesday
@@ -1653,13 +1681,16 @@ workinggroups:
dir: wg-cluster-api
mission_statement: >
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).
- leads:
- - name: Kris Nova
- github: kris-nova
- company: Heptio
- - name: Robert Bailey
- github: roberthbailey
- company: Google
+ leadership:
+ chairs:
+ - name: Kris Nova
+ github: kris-nova
+ company: Heptio
+ - name: Robert Bailey
+ github: roberthbailey
+ company: Google
+ meetings:
+ - description: Regular WG Meeting
archive_url: https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit
contact:
slack: cluster-api
@@ -1673,16 +1704,17 @@ workinggroups:
and common principles.
Charter can be found [here](https://docs.google.com/document/d/1TzRwzWYRulx4o8Fii8k7ToIx4LR4MSncxxLdJ9TkOAs/edit#)
- leads:
- - name: Antoine Legrand
- github: ant31
- company: CoreOS
- - name: Bryan Liles
- github: bryanl
- company: Heptio
- - name: Gareth Rushgrove
- github: garethr
- company: Docker
+ leadership:
+ chairs:
+ - name: Antoine Legrand
+ github: ant31
+ company: CoreOS
+ - name: Bryan Liles
+ github: bryanl
+ company: Heptio
+ - name: Gareth Rushgrove
+ github: garethr
+ company: Docker
meetings:
- description: Regular WG Meeting
day: Wednesday
@@ -1699,13 +1731,14 @@ workinggroups:
label: cloud-provider
mission_statement: >
Charter can be found [here](https://docs.google.com/document/d/1m4Kvnh_u_9cENEE9n1ifYowQEFSgiHnbw43urGJMB64/edit#)
- leads:
- - name: Sidhartha Mani
- github: wlan0
- company: Caascade Labs
- - name: Jago Macleod
- github: jagosan
- company: Google
+ leadership:
+ chairs:
+ - name: Sidhartha Mani
+ github: wlan0
+ company: Caascade Labs
+ - name: Jago Macleod
+ github: jagosan
+ company: Google
meetings:
- description: Regular WG Meeting
day: Wednesday
@@ -1717,18 +1750,18 @@ workinggroups:
contact:
slack: wg-cloud-provider
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-cloud-provider
-
- name: Multitenancy
dir: wg-multitenancy
mission_statement: >
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.
- leads:
- - name: David Oppenheimer
- github: davidopp
- company: Google
- - name: Jessie Frazelle
- github: jessfraz
- company: Microsoft
+ leadership:
+ chairs:
+ - name: David Oppenheimer
+ github: davidopp
+ company: Google
+ - name: Jessie Frazelle
+ github: jessfraz
+ company: Microsoft
meetings:
- description: Regular WG Meeting
day: Wednesday
@@ -1744,22 +1777,23 @@ workinggroups:
dir: wg-policy
mission_statement: >
Provide an overall architecture that describes both the current policy related implementations as well as future policy related proposals in Kubernetes. Through a collaborative method, we want to present both dev and end user a universal view of policy architecture in Kubernetes.
- leads:
- - name: Howard Huang
- github: hannibalhuang
- company: Huawei
- - name: Torin Sandall
- github: tsandall
- company: Styra
- - name: David Oppenheimer
- github: davidopp
- company: Google
- - name: Clayton Coleman
- github: smarterclayton
- company: Red Hat
- - name: Xuan Jia
- github: xuanjia
- company: China Mobile
+ leadership:
+ chairs:
+ - name: Howard Huang
+ github: hannibalhuang
+ company: Huawei
+ - name: Torin Sandall
+ github: tsandall
+ company: Styra
+ - name: David Oppenheimer
+ github: davidopp
+ company: Google
+ - name: Clayton Coleman
+ github: smarterclayton
+ company: Red Hat
+ - name: Xuan Jia
+ github: xuanjia
+ company: China Mobile
meetings:
- description: Regular WG Meeting
day: Thursday
@@ -1775,13 +1809,14 @@ workinggroups:
dir: wg-machine-learning
mission_statement: >
Identify and fix gaps in Kubernetes to better support Machine Learning applications
- leads:
- - name: Vishnu Kannan
- github: vishh
- company: Google
- - name: Kenneth Owens
- github: kow3ns
- company: Google
+ leadership:
+ chairs:
+ - name: Vishnu Kannan
+ github: vishh
+ company: Google
+ - name: Kenneth Owens
+ github: kow3ns
+ company: Google
meetings:
- description: Regular WG Meeting
day: Thursday
diff --git a/wg-app-def/README.md b/wg-app-def/README.md
index 7c290de1..ea3e5c53 100644
--- a/wg-app-def/README.md
+++ b/wg-app-def/README.md
@@ -16,6 +16,7 @@ Charter can be found [here](https://docs.google.com/document/d/1TzRwzWYRulx4o8Fi
* [Meeting notes and Agenda](https://docs.google.com/document/d/1Pxc-qwAt4FvuISZ_Ib5KdUwlynFkGueuzPx5Je_lbGM/edit).
## Organizers
+
* Antoine Legrand (**[@ant31](https://github.com/ant31)**), CoreOS
* Bryan Liles (**[@bryanl](https://github.com/bryanl)**), Heptio
* Gareth Rushgrove (**[@garethr](https://github.com/garethr)**), Docker
diff --git a/wg-cloud-provider/README.md b/wg-cloud-provider/README.md
index 8d917eab..7d997f21 100644
--- a/wg-cloud-provider/README.md
+++ b/wg-cloud-provider/README.md
@@ -15,6 +15,7 @@ Charter can be found [here](https://docs.google.com/document/d/1m4Kvnh_u_9cENEE9
* [Meeting notes and Agenda](https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp).
## Organizers
+
* Sidhartha Mani (**[@wlan0](https://github.com/wlan0)**), Caascade Labs
* Jago Macleod (**[@jagosan](https://github.com/jagosan)**), Google
diff --git a/wg-cluster-api/README.md b/wg-cluster-api/README.md
index 9a0c94b0..35555090 100644
--- a/wg-cluster-api/README.md
+++ b/wg-cluster-api/README.md
@@ -10,7 +10,12 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
Define a portable API that represents a Kubernetes cluster. The API will contain the control plane and its configuration and the underlying infrastructure (nodes, node pools, etc).
+## Meetings
+* Regular WG Meeting: [s at ]() (). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=&tz=).
+ * [Meeting notes and Agenda](https://docs.google.com/document/d/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/edit).
+
## Organizers
+
* Kris Nova (**[@kris-nova](https://github.com/kris-nova)**), Heptio
* Robert Bailey (**[@roberthbailey](https://github.com/roberthbailey)**), Google
diff --git a/wg-container-identity/README.md b/wg-container-identity/README.md
index 0a0972a1..623f3c1b 100644
--- a/wg-container-identity/README.md
+++ b/wg-container-identity/README.md
@@ -15,6 +15,7 @@ Ensure containers are able to interact with external systems and acquire secure
* [Meeting notes and Agenda](https://docs.google.com/document/d/1uH60pNr1-jBn7N2pEcddk6-6NTnmV5qepwKUJe9tMRo/edit).
## Organizers
+
* Clayton Coleman (**[@smarterclayton](https://github.com/smarterclayton)**), Red Hat
* Greg Gastle (**[@destijl](https://github.com/destijl)**), Google
diff --git a/wg-kubeadm-adoption/README.md b/wg-kubeadm-adoption/README.md
index 7d6dcb1e..5b8a5863 100644
--- a/wg-kubeadm-adoption/README.md
+++ b/wg-kubeadm-adoption/README.md
@@ -16,6 +16,7 @@ Boost adoption of the kubeadm tool. kubeadm is a tool for creating new Kubernete
* [Meeting recordings](https://www.youtube.com/watch?v=-Xlcrm5iT80&list=PLPgAK4Icr0ehh93BiMC3djAc5KoW7WIkl).
## Organizers
+
* Lucas Käldström (**[@luxas](https://github.com/luxas)**), Luxas Labs (occasionally contracting for Weaveworks)
* Justin Santa Barbara (**[@justinsb](https://github.com/justinsb)**)
diff --git a/wg-machine-learning/README.md b/wg-machine-learning/README.md
index 94fd420c..f2209abc 100755
--- a/wg-machine-learning/README.md
+++ b/wg-machine-learning/README.md
@@ -15,6 +15,7 @@ Identify and fix gaps in Kubernetes to better support Machine Learning applicati
* [Meeting notes and Agenda](https://goo.gl/gBCdt1).
## Organizers
+
* Vishnu Kannan (**[@vishh](https://github.com/vishh)**), Google
* Kenneth Owens (**[@kow3ns](https://github.com/kow3ns)**), Google
diff --git a/wg-multitenancy/README.md b/wg-multitenancy/README.md
index 7f6f2c03..92131bac 100644
--- a/wg-multitenancy/README.md
+++ b/wg-multitenancy/README.md
@@ -15,6 +15,7 @@ Define the models of multitenancy that Kubernetes will support. Discuss and exec
* [Meeting notes and Agenda](https://docs.google.com/document/d/1fj3yzmeU2eU8ZNBCUJG97dk_wC7228-e_MmdcmTNrZY/edit?usp=sharing).
## Organizers
+
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
* Jessie Frazelle (**[@jessfraz](https://github.com/jessfraz)**), Microsoft
diff --git a/wg-policy/README.md b/wg-policy/README.md
index 895cfe54..d1c62b29 100644
--- a/wg-policy/README.md
+++ b/wg-policy/README.md
@@ -15,6 +15,7 @@ Provide an overall architecture that describes both the current policy related i
* [Meeting notes and Agenda](https://docs.google.com/document/d/1ihFfEfgViKlUMbY2NKxaJzBkgHh-Phk5hqKTzK-NEEs/edit?usp=sharing).
## Organizers
+
* Howard Huang (**[@hannibalhuang](https://github.com/hannibalhuang)**), Huawei
* Torin Sandall (**[@tsandall](https://github.com/tsandall)**), Styra
* David Oppenheimer (**[@davidopp](https://github.com/davidopp)**), Google
diff --git a/wg-resource-management/README.md b/wg-resource-management/README.md
index 3fa63c56..ade83ee5 100644
--- a/wg-resource-management/README.md
+++ b/wg-resource-management/README.md
@@ -16,6 +16,7 @@ Designing and shepherding cross-cutting features around compute resource isolati
* [Meeting recordings](https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4).
## Organizers
+
* Vishnu Kannan (**[@vishh](https://github.com/vishh)**), Google
* Derek Carr (**[@derekwaynecarr](https://github.com/derekwaynecarr)**), Red Hat