summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Crickenberger <spiffxp@gmail.com>2018-01-10 12:49:04 -0800
committerAaron Crickenberger <spiffxp@gmail.com>2018-02-07 16:11:54 -0700
commit170a99a651b57791156cf62d61a013bc51ebc661 (patch)
treee20b77ed41ce877a350197544fb44faa81519d08
parentee9d051a206064f82eaf0210fc4497ebdb6714e2 (diff)
Add strawman implementation of subprojects
A subproject is a one-to-many mapping of a name to a list of OWNERS urls. This allows for a subproject to be a single repo (eg: helm), or a subproject to be a list of multiple subdirectories across one or more repos (eg: workloads api) SIG meetings dedicated to a single subproject moved down to subproject meetings
-rw-r--r--generator/app.go9
-rw-r--r--generator/sig_readme.tmpl29
-rw-r--r--sig-api-machinery/README.md79
-rw-r--r--sig-apps/README.md54
-rw-r--r--sig-architecture/README.md16
-rw-r--r--sig-autoscaling/README.md10
-rw-r--r--sig-big-data/README.md7
-rw-r--r--sig-cli/README.md10
-rw-r--r--sig-cluster-lifecycle/README.md34
-rw-r--r--sig-contributor-experience/README.md10
-rw-r--r--sig-docs/README.md16
-rw-r--r--sig-instrumentation/README.md16
-rw-r--r--sig-list.md9
-rw-r--r--sig-multicluster/README.md10
-rw-r--r--sig-network/README.md19
-rw-r--r--sig-node/README.md25
-rw-r--r--sig-product-management/README.md7
-rw-r--r--sig-release/README.md10
-rw-r--r--sig-scalability/README.md7
-rw-r--r--sig-scheduling/README.md13
-rw-r--r--sig-service-catalog/README.md7
-rw-r--r--sig-storage/README.md13
-rw-r--r--sig-testing/README.md17
-rw-r--r--sig-windows/README.md7
-rw-r--r--sigs.yaml357
25 files changed, 759 insertions, 32 deletions
diff --git a/generator/app.go b/generator/app.go
index d2f9f6aa..c2d0d448 100644
--- a/generator/app.go
+++ b/generator/app.go
@@ -83,6 +83,14 @@ type GithubTeams struct {
Description string
}
+// Subproject represenst a specific subproject owned by the group
+type Subproject struct {
+ Name string
+ Description string
+ Owners []string
+ Meetings []Meeting
+}
+
// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
type Group struct {
Name string
@@ -92,6 +100,7 @@ type Group struct {
Leads []Lead
Meetings []Meeting
Contact Contact
+ Subprojects []Subproject
}
// DirName returns the directory that a group's documentation will be
diff --git a/generator/sig_readme.tmpl b/generator/sig_readme.tmpl
index 2b3582ef..ad500107 100644
--- a/generator/sig_readme.tmpl
+++ b/generator/sig_readme.tmpl
@@ -25,6 +25,35 @@
{{- if .Label }}
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2F{{.Label}})
{{- end }}
+{{- if .Subprojects }}
+
+## Subprojects
+
+The following subprojects are owned by this SIG:
+
+{{- range .Subprojects }}
+- **{{.Name}}**
+{{- if .Description }}
+ - Description: {{ .Description }}
+{{- end }}
+ - Owners:
+{{- range .Owners }}
+ - {{.}}
+{{- end }}
+{{- if .Meetings }}
+ - Meetings:
+{{- range .Meetings }}
+ - {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}).
+{{- if .ArchiveURL }}
+ - [Meeting notes and Agenda]({{.ArchiveURL}}).
+{{- end }}
+{{- if .RecordingsURL }}
+ - [Meeting recordings]({{.RecordingsURL}}).
+{{- end }}
+{{- end }}
+{{- end }}
+{{- end }}
+{{- end }}
{{ if .Contact.GithubTeams }}
## GitHub Teams
diff --git a/sig-api-machinery/README.md b/sig-api-machinery/README.md
index 7cee4028..15bff6ee 100644
--- a/sig-api-machinery/README.md
+++ b/sig-api-machinery/README.md
@@ -24,6 +24,85 @@ Covers all aspects of API server, API registration and discovery, generic API CR
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fapi-machinery)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **api**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/api/master/OWNERS
+- **apiextensions-apiserver**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/apiextensions-apiserver/master/OWNERS
+- **apimachinery**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
+- **apiserver**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/apiserver/master/OWNERS
+- **apiserver-builder**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/apiserver-builder/master/OWNERS
+- **client-go**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/client-go/master/OWNERS
+- **client-python**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/client-python/master/OWNERS
+- **code-generator**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
+- **community**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/community/master/OWNERS
+- **csharp**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/csharp/master/OWNERS
+- **gen**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
+- **gengo**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS
+- **go**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/go/master/OWNERS
+- **go-base**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/go-base/master/OWNERS
+- **haskell**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/haskell/master/OWNERS
+- **java**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/java/master/OWNERS
+- **javascript**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/javascript/master/OWNERS
+- **kube-aggregator**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-aggregator/master/OWNERS
+- **kube-openapi**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-openapi/master/OWNERS
+- **python-base**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/python-base/master/OWNERS
+- **ruby**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/ruby/master/OWNERS
+- **sample-apiserver**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
+- **sample-controller**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
+- **typescript**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-client/typescript/master/OWNERS
+- **utils**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/utils/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-apps/README.md b/sig-apps/README.md
index 9d20db78..de266415 100644
--- a/sig-apps/README.md
+++ b/sig-apps/README.md
@@ -14,10 +14,6 @@ Covers deploying and operating applications in Kubernetes. We focus on the devel
* Regular SIG Meeting: [Mondays at 9:00 PT (Pacific Time)](https://zoom.us/my/sig.apps) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=9:00&tz=PT%20%28Pacific%20Time%29).
* [Meeting notes and Agenda](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
* [Meeting recordings](https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3).
-* Helm Developer call: [Thursdays at 9:30 PT (Pacific Time)](https://zoom.us/j/4526666954) (weekly). [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/1d-6xJEx0C78csIYSPKJzRPeWaHG_8W1Hjl72OJggwdc/edit).
-* Charts Chat: [Tuesdays at 9:00 PT (Pacific Time)](https://zoom.us/j/166909412) (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/1h6UTTuNRbFI81higrN3JUV2XxyzqqVjZET4Xz4WTR-8/edit#heading=h.57pbxthvt6k3).
## Leads
* Matt Farina (**[@mattfarina](https://github.com/mattfarina)**), Samsung SDS
@@ -29,6 +25,56 @@ Covers deploying and operating applications in Kubernetes. We focus on the devel
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fapps)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **chart-testing**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/chart-testing/master/OWNERS
+- **chartmuseum**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/chartmuseum/master/OWNERS
+- **charts**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/charts/master/OWNERS
+ - Meetings:
+ - Charts Chat: [Tuesdays at 9:00 PT (Pacific Time)](https://zoom.us/j/166909412) (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/1h6UTTuNRbFI81higrN3JUV2XxyzqqVjZET4Xz4WTR-8/edit#heading=h.57pbxthvt6k3).
+- **charts-tooling**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/charts-tooling/master/OWNERS
+- **community**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/community/master/OWNERS
+- **examples**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/examples/master/OWNERS
+- **helm**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/helm/master/OWNERS
+ - Meetings:
+ - Helm Developer call: [Thursdays at 9:30 PT (Pacific Time)](https://zoom.us/j/4526666954) (weekly). [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/1elWRfvH3AkHdr8pOaqyPbqSZ6ONR-l1Sb9_gapqh8ZA/edit).
+- **kompose**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kompose/master/OWNERS
+- **monocular**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/monocular/master/OWNERS
+- **rudder-federation**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/rudder-federation/master/OWNERS
+- **workloads-api**
+ - Description: The core workloads API, which is composed of the DaemonSet, Deployment, ReplicaSet, and StatefulSet kinds
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/daemon/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/deployment/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/history/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/replicaset/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/statefulset/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/apps/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/apps/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-architecture/README.md b/sig-architecture/README.md
index bf6c809e..48a43539 100644
--- a/sig-architecture/README.md
+++ b/sig-architecture/README.md
@@ -24,6 +24,22 @@ The Architecture SIG maintains and evolves the design principles of Kubernetes,
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Farchitecture)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **k8s.io**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/k8s.io/master/OWNERS
+- **kubernetes-template-project**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-template-project/master/OWNERS
+- **spartakus**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/spartakus/master/OWNERS
+- **steering**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/steering/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-autoscaling/README.md b/sig-autoscaling/README.md
index 98e4ea9d..ef95bd28 100644
--- a/sig-autoscaling/README.md
+++ b/sig-autoscaling/README.md
@@ -23,6 +23,16 @@ Covers autoscaling of clusters, horizontal and vertical autoscaling of pods, set
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fautoscaling)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **autoscaler**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
+- **metrics**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/metrics/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-big-data/README.md b/sig-big-data/README.md
index f3bbc796..96e6cb11 100644
--- a/sig-big-data/README.md
+++ b/sig-big-data/README.md
@@ -24,6 +24,13 @@ Covers deploying and operating big data applications (Spark, Kafka, Hadoop, Flin
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fbig-data)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **application-images**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/application-images/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-cli/README.md b/sig-cli/README.md
index 7f283f2f..4b10b62a 100644
--- a/sig-cli/README.md
+++ b/sig-cli/README.md
@@ -25,6 +25,16 @@ Covers kubectl and related tools. We focus on the development and standardizatio
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fcli)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **common**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/common/master/OWNERS
+- **kubectl**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubectl/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-cluster-lifecycle/README.md b/sig-cluster-lifecycle/README.md
index 50079fef..96378059 100644
--- a/sig-cluster-lifecycle/README.md
+++ b/sig-cluster-lifecycle/README.md
@@ -34,6 +34,40 @@ The Cluster Lifecycle SIG examines how we should change Kubernetes to make it ea
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fcluster-lifecycle)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **bootkube**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/bootkube/master/OWNERS
+- **cluster-proportional-autoscaler**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-autoscaler/master/OWNERS
+- **cluster-proportional-vertical-autoscaler**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-vertical-autoscaler/master/OWNERS
+- **kops**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kops/master/OWNERS
+- **kube-aws**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kube-aws/master/OWNERS
+- **kube-deploy**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-deploy/master/OWNERS
+- **kubeadm**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
+- **kubernetes-anywhere**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-anywhere/master/OWNERS
+- **kubespray**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kubespray/master/OWNERS
+- **minikube**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/minikube/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-contributor-experience/README.md b/sig-contributor-experience/README.md
index f7b8828f..a7c85baa 100644
--- a/sig-contributor-experience/README.md
+++ b/sig-contributor-experience/README.md
@@ -28,6 +28,16 @@ Developing and sustaining a healthy community of contributors is critical to sca
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fcontributor-experience)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **community**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/community/master/OWNERS
+- **repo-infra**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/repo-infra/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-docs/README.md b/sig-docs/README.md
index 9aec7ece..a2faaf2a 100644
--- a/sig-docs/README.md
+++ b/sig-docs/README.md
@@ -24,6 +24,22 @@ Covers documentation, doc processes, and doc publishing for Kubernetes.
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fdocs)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **kubernetes-bootcamp**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-bootcamp/master/OWNERS
+- **kubernetes-docs-cn**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-docs-cn/master/OWNERS
+- **reference-docs**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/reference-docs/master/OWNERS
+- **website**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/website/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-instrumentation/README.md b/sig-instrumentation/README.md
index df7cceaf..6c4c98f1 100644
--- a/sig-instrumentation/README.md
+++ b/sig-instrumentation/README.md
@@ -23,6 +23,22 @@ Covers best practices for cluster observability through metrics, logging, and ev
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Finstrumentation)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **custom-metrics-apiserver**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/custom-metrics-apiserver/master/OWNERS
+- **heapster**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/heapster/master/OWNERS
+- **kube-state-metrics**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-state-metrics/master/OWNERS
+- **metrics-server**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/metrics-server/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-list.md b/sig-list.md
index c5c88989..38cf1149 100644
--- a/sig-list.md
+++ b/sig-list.md
@@ -22,8 +22,8 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
| Name | Label | Leads | Contact | Meetings |
|------|--------|-------|---------|----------|
-|[API Machinery](sig-api-machinery/README.md)|api-machinery|* [Daniel Smith](https://github.com/lavalamp), Google<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>* Helm Developer call: [Thursdays at 9:30 PT (Pacific Time) (weekly)](https://zoom.us/j/4526666954)<br>* Charts Chat: [Tuesdays at 9:00 PT (Pacific Time) (biweekly)](https://zoom.us/j/166909412)<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>
+|[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>
|[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)|* 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)|* Regular SIG Meeting: [Mondays at 14:00 UTC (biweekly/triweekly)](https://zoom.us/my/k8s.sig.autoscaling)<br>
@@ -31,7 +31,7 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|[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)|* 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)|* 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)|* Regular SIG Meeting: [Tuesdays at 09:00 PT (Pacific Time) (weekly)](https://zoom.us/j/166836%E2%80%8B624)<br>* kubeadm Office Hours: [Wednesdays at 09:00 PT (Pacific Time) (weekly)](https://zoom.us/j/166836%E2%80%8B624)<br>* Cluster API working group: [Wednesdays at 10:00 PT (Pacific Time) (weekly)](https://zoom.us/j/166836%E2%80%8B624)<br>* kops Office Hours: [Fridays at 09:00 PT (Pacific Time) (biweekly)](https://zoom.us/my/k8ssigaws)<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)|* 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>* [Paris Pittman](https://github.com/parispittman), Google<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>* Off Week Sync (Contributor Guide, Mentorship): [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)|* Regular SIG Meeting: [Tuesdays at 17:30 UTC (weekly)](https://zoom.us/j/678394311)<br>
@@ -48,7 +48,7 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|[Scheduling](sig-scheduling/README.md)|scheduling|* [Bobby (Babak) Salamat](https://github.com/bsalamat), Google<br>* [Timothy St. Clair](https://github.com/timothysc), Heptio<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* Regular SIG Meeting: [Thursdays at 20:00 UTC (biweekly)](https://zoom.us/j/7767391691)<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)|* 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)|* Regular SIG Meeting: [Tuesdays at 13:00 PT (Pacific Time) (weekly)](https://zoom.us/my/k8s.sig.testing)<br>* Testing Commons: [Wednesdays at 07:30 PT (Pacific Time) (bi-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)|* 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)|* Regular SIG Meeting: [Tuesdays at 12:30 Eastern Standard Time (EST) (weekly)](https://zoom.us/my/sigwindows)<br>
@@ -62,7 +62,6 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|[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>
|[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)|
-|[Policy](wg-policy/README.md)|* [Howard Huang](https://github.com/hannibalhuang), Huawei<br>* [Torin Sandall](https://github.com/tsandall), Google<br>* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Clayton Coleman](https://github.com/smarterclayton), Red Hat<br>* [Xuan Jia](https://github.com/xuanjia), China Mobile<br>|* [Slack](https://kubernetes.slack.com/messages/wg-policy)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-policy)|* Regular WG Meeting: [Thursdays at 17:00 PT (Pacific Time) (weekly)](https://zoom.us/j/421702434)<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) (biweekly (On demand))](https://zoom.us/j/4799874685)<br>
<!-- BEGIN CUSTOM CONTENT -->
diff --git a/sig-multicluster/README.md b/sig-multicluster/README.md
index d84c67ab..310aa450 100644
--- a/sig-multicluster/README.md
+++ b/sig-multicluster/README.md
@@ -24,6 +24,16 @@ A Special Interest Group focussed on solving common challenges related to the m
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fmulticluster)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **cluster-registry**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/cluster-registry/master/OWNERS
+- **federation**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/federation/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-network/README.md b/sig-network/README.md
index 10a899d0..2e951e40 100644
--- a/sig-network/README.md
+++ b/sig-network/README.md
@@ -25,6 +25,25 @@ Covers networking in Kubernetes.
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-network)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fnetwork)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **dns**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/dns/master/OWNERS
+- **external-dns**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/external-dns/master/OWNERS
+- **ingress-gce**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/ingress-gce/master/OWNERS
+- **ingress-nginx**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/OWNERS
+- **ip-masq-agent**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/ip-masq-agent/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-node/README.md b/sig-node/README.md
index 474d9721..a7d50398 100644
--- a/sig-node/README.md
+++ b/sig-node/README.md
@@ -23,6 +23,31 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-node)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fnode)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **cri-containerd**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-containerd/master/OWNERS
+- **cri-o**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-o/master/OWNERS
+- **cri-tools**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-tools/master/OWNERS
+- **frakti**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/frakti/master/OWNERS
+- **node-feature-discovery**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/node-feature-discovery/master/OWNERS
+- **node-problem-detector**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/node-problem-detector/master/OWNERS
+- **rktlet**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/rktlet/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-product-management/README.md b/sig-product-management/README.md
index 74d6eb92..618b2485 100644
--- a/sig-product-management/README.md
+++ b/sig-product-management/README.md
@@ -28,6 +28,13 @@ It is also important to remember that the role of managing an open source projec
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-pm)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fnone)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **features**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/features/master/OWNERS
+
<!-- BEGIN CUSTOM CONTENT -->
## Common activities
- Collecting and generalizing user feedback to help drive project direction and priorities: delivering on user needs while enforcing vendor neutrality
diff --git a/sig-release/README.md b/sig-release/README.md
index e83617ac..9d8f15af 100644
--- a/sig-release/README.md
+++ b/sig-release/README.md
@@ -23,6 +23,16 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-release)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Frelease)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **release**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/release/master/OWNERS
+- **sig-release**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/sig-release/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-scalability/README.md b/sig-scalability/README.md
index 44d76d91..d114b05e 100644
--- a/sig-scalability/README.md
+++ b/sig-scalability/README.md
@@ -26,6 +26,13 @@ For more details about our objectives please review our [Scaling And Performance
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fscalability)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **perf-tests**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/perf-tests/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-scheduling/README.md b/sig-scheduling/README.md
index bd9b6bf2..0cdf3b6d 100644
--- a/sig-scheduling/README.md
+++ b/sig-scheduling/README.md
@@ -23,6 +23,19 @@ To understand how this file is generated, see https://git.k8s.io/community/gener
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fscheduling)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **cluster-capacity**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-capacity/master/OWNERS
+- **descheduler**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/descheduler/master/OWNERS
+- **kube-arbitrator**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kube-arbitrator/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-service-catalog/README.md b/sig-service-catalog/README.md
index ef949933..0be6438b 100644
--- a/sig-service-catalog/README.md
+++ b/sig-service-catalog/README.md
@@ -26,6 +26,13 @@ To develop a Kubernetes API for the CNCF service broker and Kubernetes broker im
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fservice-catalog)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **service-catalog**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/service-catalog/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-storage/README.md b/sig-storage/README.md
index 4e9b98b0..61cb860d 100644
--- a/sig-storage/README.md
+++ b/sig-storage/README.md
@@ -24,6 +24,19 @@ Covers storage and volume plugins.
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fstorage)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **external-storage**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/external-storage/master/OWNERS
+- **git-sync**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/git-sync/master/OWNERS
+- **nfs-provisioner**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/nfs-provisioner/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-testing/README.md b/sig-testing/README.md
index d4e656fb..c88ca67a 100644
--- a/sig-testing/README.md
+++ b/sig-testing/README.md
@@ -14,8 +14,6 @@ Interested in how we can most effectively test Kubernetes. We're interested spec
* Regular SIG Meeting: [Tuesdays at 13:00 PT (Pacific Time)](https://zoom.us/my/k8s.sig.testing) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=13:00&tz=PT%20%28Pacific%20Time%29).
* [Meeting notes and Agenda](https://bit.ly/k8s-sig-testing-notes).
* [Meeting recordings](https://bit.ly/k8s-sig-testing-videos).
-* Testing Commons: [Wednesdays at 07:30 PT (Pacific Time)](https://zoom.us/my/k8s.sig.testing) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=07:30&tz=PT%20%28Pacific%20Time%29).
- * [Meeting notes and Agenda](https://docs.google.com/document/d/1TOC8vnmlkWw6HRNHoe5xSv5-qv7LelX6XK3UVCHuwb0/edit#heading=h.tnoevy5f439o).
## Leads
* Aaron Crickenberger (**[@spiffxp](https://github.com/spiffxp)**), Samsung SDS
@@ -28,6 +26,21 @@ Interested in how we can most effectively test Kubernetes. We're interested spec
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-testing)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Ftesting)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **test-infra**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/test-infra/master/OWNERS
+- **testing-commons**
+ - Description: The Testing Commons is a subproject within the Kubernetes sig-testing community interested code structure, layout, and execution of common test code used throughout the kubernetes project.
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes-sig-testing/frameworks/master/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/OWNERS
+ - Meetings:
+ - Testing Commons: [Wednesdays at 07:30 PT (Pacific Time)](https://zoom.us/my/k8s.sig.testing) (bi-weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=07:30&tz=PT%20%28Pacific%20Time%29).
+ - [Meeting notes and Agenda](https://docs.google.com/document/d/1TOC8vnmlkWw6HRNHoe5xSv5-qv7LelX6XK3UVCHuwb0/edit#heading=h.tnoevy5f439o).
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sig-windows/README.md b/sig-windows/README.md
index fc1dee2d..898a05cc 100644
--- a/sig-windows/README.md
+++ b/sig-windows/README.md
@@ -23,6 +23,13 @@ Focuses on supporting Windows Server Containers for Kubernetes.
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-windows)
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fwindows)
+## Subprojects
+
+The following subprojects are owned by this SIG:
+- **dashboard**
+ - Owners:
+ - https://raw.githubusercontent.com/kubernetes/dashboard/master/OWNERS
+
## GitHub Teams
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
diff --git a/sigs.yaml b/sigs.yaml
index b3bbc0ef..0880a3ac 100644
--- a/sigs.yaml
+++ b/sigs.yaml
@@ -41,6 +41,82 @@ sigs:
description: Design Proposals
- name: sig-api-machinery-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: api
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/api/master/OWNERS
+ - name: apiextensions-apiserver
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/apiextensions-apiserver/master/OWNERS
+ - name: apimachinery
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
+ - name: apiserver
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/apiserver/master/OWNERS
+ - name: apiserver-builder
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/apiserver-builder/master/OWNERS
+ - name: client-go
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/client-go/master/OWNERS
+ - name: client-python
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/client-python/master/OWNERS
+ - name: code-generator
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
+ - name: community
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/community/master/OWNERS
+ - name: csharp
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/csharp/master/OWNERS
+ - name: gen
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
+ - name: gengo
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS
+ - name: go
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/go/master/OWNERS
+ - name: go-base
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/go-base/master/OWNERS
+ - name: haskell
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/haskell/master/OWNERS
+ - name: java
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/java/master/OWNERS
+ - name: javascript
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/javascript/master/OWNERS
+ - name: kube-aggregator
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-aggregator/master/OWNERS
+ - name: kube-openapi
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-openapi/master/OWNERS
+ - name: python-base
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/python-base/master/OWNERS
+ - name: ruby
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/ruby/master/OWNERS
+ - name: sample-apiserver
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
+ - name: sample-controller
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
+ - name: typescript
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-client/typescript/master/OWNERS
+ - name: utils
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/utils/master/OWNERS
- name: Apps
dir: sig-apps
mission_statement: >
@@ -69,20 +145,6 @@ sigs:
url: https://zoom.us/my/sig.apps
archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
recordings_url: https://www.youtube.com/watch?v=hn23Z-vL_cM&list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
- - description: Helm Developer call
- day: Thursday
- time: "9:30"
- tz: "PT (Pacific Time)"
- frequency: weekly
- url: https://zoom.us/j/4526666954
- archive_url: https://docs.google.com/document/d/1d-6xJEx0C78csIYSPKJzRPeWaHG_8W1Hjl72OJggwdc/edit
- - description: Charts Chat
- day: Tuesday
- time: "9:00"
- tz: "PT (Pacific Time)"
- frequency: biweekly
- url: https://zoom.us/j/166909412
- archive_url: https://docs.google.com/document/d/1h6UTTuNRbFI81higrN3JUV2XxyzqqVjZET4Xz4WTR-8/edit#heading=h.57pbxthvt6k3
contact:
slack: sig-apps
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-apps
@@ -101,6 +163,63 @@ sigs:
description: Design Proposals
- name: sig-apps-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: chart-testing
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/chart-testing/master/OWNERS
+ - name: chartmuseum
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/chartmuseum/master/OWNERS
+ - name: charts
+ meetings:
+ - description: Charts Chat
+ day: Tuesday
+ time: "9:00"
+ tz: "PT (Pacific Time)"
+ frequency: biweekly
+ url: https://zoom.us/j/166909412
+ archive_url: https://docs.google.com/document/d/1h6UTTuNRbFI81higrN3JUV2XxyzqqVjZET4Xz4WTR-8/edit#heading=h.57pbxthvt6k3
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/charts/master/OWNERS
+ - name: charts-tooling
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/charts-tooling/master/OWNERS
+ - name: community
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/community/master/OWNERS
+ - name: examples
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/examples/master/OWNERS
+ - name: helm
+ meetings:
+ - description: Helm Developer call
+ day: Thursday
+ time: "9:30"
+ tz: "PT (Pacific Time)"
+ frequency: weekly
+ url: https://zoom.us/j/4526666954
+ archive_url: https://docs.google.com/document/d/1elWRfvH3AkHdr8pOaqyPbqSZ6ONR-l1Sb9_gapqh8ZA/edit
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/helm/master/OWNERS
+ - name: kompose
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kompose/master/OWNERS
+ - name: monocular
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/monocular/master/OWNERS
+ - name: rudder-federation
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-helm/rudder-federation/master/OWNERS
+ - name: workloads-api
+ description: The core workloads API, which is composed of the DaemonSet, Deployment, ReplicaSet, and StatefulSet kinds
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/daemon/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/deployment/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/history/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/replicaset/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/statefulset/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/apps/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/apps/OWNERS
- name: Architecture
dir: sig-architecture
mission_statement: >
@@ -141,6 +260,19 @@ sigs:
description: Design Proposals
- name: sig-architecture-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: k8s.io
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/k8s.io/master/OWNERS
+ - name: kubernetes-template-project
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-template-project/master/OWNERS
+ - name: spartakus
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/spartakus/master/OWNERS
+ - name: steering
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/steering/master/OWNERS
- name: Auth
dir: sig-auth
mission_statement: >
@@ -224,6 +356,13 @@ sigs:
description: Design Proposals
- name: sig-autoscaling-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: autoscaler
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
+ - name: metrics
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/metrics/master/OWNERS
- name: AWS
dir: sig-aws
mission_statement: >
@@ -374,6 +513,13 @@ sigs:
description: Design Proposals
- name: sig-cli-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: common
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/common/master/OWNERS
+ - name: kubectl
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubectl/master/OWNERS
- name: Cluster Lifecycle
dir: sig-cluster-lifecycle
mission_statement: >
@@ -443,6 +589,37 @@ sigs:
description: Design Proposals
- name: sig-cluster-lifecycle-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: bootkube
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/bootkube/master/OWNERS
+ - name: cluster-proportional-autoscaler
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-autoscaler/master/OWNERS
+ - name: cluster-proportional-vertical-autoscaler
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-vertical-autoscaler/master/OWNERS
+ - name: kops
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kops/master/OWNERS
+ - name: kube-aws
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kube-aws/master/OWNERS
+ - name: kube-deploy
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-deploy/master/OWNERS
+ - name: kubeadm
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
+ - name: kubernetes-anywhere
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-anywhere/master/OWNERS
+ - name: kubespray
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kubespray/master/OWNERS
+ - name: minikube
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/minikube/master/OWNERS
- name: Cluster Ops
dir: sig-cluster-ops
mission_statement: >
@@ -522,6 +699,20 @@ sigs:
description: Design Proposals
- name: sig-contributor-experience-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: community
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/community/master/OWNERS
+ - name: community-management
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/community/master/communication/OWNERS
+ https://raw.githubusercontent.com/kubernetes/community/master/events/OWNERS
+ - name: contributors-guide
+ owners:
+ - https://raw.githubusercontent.comkubernetes/community/blob/master/contributors/guide/OWNERS
+ - name: repo-infra
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/repo-infra/master/OWNERS
- name: Docs
dir: sig-docs
mission_statement: >
@@ -551,6 +742,19 @@ sigs:
description: Documentation Maintainers
- name: sig-docs-pr-reviews
description: Documentation PR Reviewers
+ subprojects:
+ - name: kubernetes-bootcamp
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-bootcamp/master/OWNERS
+ - name: kubernetes-docs-cn
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kubernetes-docs-cn/master/OWNERS
+ - name: reference-docs
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/reference-docs/master/OWNERS
+ - name: website
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/website/master/OWNERS
- name: GCP
dir: sig-gcp
mission_statement: >
@@ -627,6 +831,19 @@ sigs:
description: Design Proposals
- name: sig-instrumentation-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: custom-metrics-apiserver
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/custom-metrics-apiserver/master/OWNERS
+ - name: heapster
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/heapster/master/OWNERS
+ - name: kube-state-metrics
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/kube-state-metrics/master/OWNERS
+ - name: metrics-server
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/metrics-server/master/OWNERS
- name: Multicluster
dir: sig-multicluster
mission_statement: >
@@ -674,6 +891,13 @@ sigs:
description: Test Failures and Triage
- name: sig-mutlicluster-proposals
description: Design Proposals
+ subprojects:
+ - name: cluster-registry
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/cluster-registry/master/OWNERS
+ - name: federation
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/federation/master/OWNERS
- name: Network
dir: sig-network
mission_statement: >
@@ -716,6 +940,22 @@ sigs:
description: Design Proposals
- name: sig-network-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: dns
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/dns/master/OWNERS
+ - name: external-dns
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/external-dns/master/OWNERS
+ - name: ingress-gce
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/ingress-gce/master/OWNERS
+ - name: ingress-nginx
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/OWNERS
+ - name: ip-masq-agent
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/ip-masq-agent/master/OWNERS
- name: Node
dir: sig-node
mission_statement: >
@@ -752,6 +992,28 @@ sigs:
description: Design Proposals
- name: sig-node-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: cri-containerd
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-containerd/master/OWNERS
+ - name: cri-o
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-o/master/OWNERS
+ - name: cri-tools
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cri-tools/master/OWNERS
+ - name: frakti
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/frakti/master/OWNERS
+ - name: node-feature-discovery
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/node-feature-discovery/master/OWNERS
+ - name: node-problem-detector
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/node-problem-detector/master/OWNERS
+ - name: rktlet
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/rktlet/master/OWNERS
- name: On Premise
dir: sig-on-premise
mission_statement: >
@@ -883,6 +1145,10 @@ sigs:
contact:
slack: kubernetes-pm
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-pm
+ subprojects:
+ - name: features
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/features/master/OWNERS
- name: Release
dir: sig-release
label: release
@@ -924,6 +1190,13 @@ sigs:
description: Design Proposals
- name: sig-release-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: release
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/release/master/OWNERS
+ - name: sig-release
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/sig-release/master/OWNERS
- name: Scalability
dir: sig-scalability
mission_statement: >
@@ -971,6 +1244,10 @@ sigs:
description: Design Proposals
- name: sig-scalability-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: perf-tests
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/perf-tests/master/OWNERS
- name: Scheduling
dir: sig-scheduling
mission_statement: >
@@ -1009,6 +1286,16 @@ sigs:
description: Design Proposals
- name: sig-scheduling-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: cluster-capacity
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/cluster-capacity/master/OWNERS
+ - name: descheduler
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/descheduler/master/OWNERS
+ - name: kube-arbitrator
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/kube-arbitrator/master/OWNERS
- name: Service Catalog
dir: sig-service-catalog
mission_statement: >
@@ -1055,6 +1342,10 @@ sigs:
description: Design Proposals
- name: sig-service-catalog-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: service-catalog
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/service-catalog/master/OWNERS
- name: Storage
dir: sig-storage
mission_statement: >
@@ -1094,6 +1385,16 @@ sigs:
description: Design Proposals
- name: sig-storage-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: external-storage
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/external-storage/master/OWNERS
+ - name: git-sync
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/git-sync/master/OWNERS
+ - name: nfs-provisioner
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-incubator/nfs-provisioner/master/OWNERS
- name: Testing
dir: sig-testing
mission_statement: >
@@ -1124,13 +1425,6 @@ sigs:
url: https://zoom.us/my/k8s.sig.testing
archive_url: https://bit.ly/k8s-sig-testing-notes
recordings_url: https://bit.ly/k8s-sig-testing-videos
- - description: Testing Commons
- day: Wednesday
- time: "07:30"
- tz: "PT (Pacific Time)"
- frequency: bi-weekly
- url: https://zoom.us/my/k8s.sig.testing
- archive_url: https://docs.google.com/document/d/1TOC8vnmlkWw6HRNHoe5xSv5-qv7LelX6XK3UVCHuwb0/edit#heading=h.tnoevy5f439o
contact:
slack: sig-testing
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
@@ -1149,6 +1443,23 @@ sigs:
description: Design Proposals
- name: sig-testing-test-failures
description: Test Failures and Triage
+ subprojects:
+ - name: test-infra
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/test-infra/master/OWNERS
+ - name: testing-commons
+ description: "The Testing Commons is a subproject within the Kubernetes sig-testing community interested code structure, layout, and execution of common test code used throughout the kubernetes project."
+ owners:
+ - https://raw.githubusercontent.com/kubernetes-sig-testing/frameworks/master/OWNERS
+ - https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/OWNERS
+ meetings:
+ - description: Testing Commons
+ day: Wednesday
+ time: "07:30"
+ tz: "PT (Pacific Time)"
+ frequency: bi-weekly
+ url: https://zoom.us/my/k8s.sig.testing
+ archive_url: https://docs.google.com/document/d/1TOC8vnmlkWw6HRNHoe5xSv5-qv7LelX6XK3UVCHuwb0/edit#heading=h.tnoevy5f439o
- name: UI
dir: sig-ui
mission_statement: >
@@ -1204,6 +1515,10 @@ sigs:
description: Feature Requests
- name: sig-windows-misc
description: General Discussion
+ subprojects:
+ - name: dashboard
+ owners:
+ - https://raw.githubusercontent.com/kubernetes/dashboard/master/OWNERS
workinggroups:
- name: Resource Management
dir: wg-resource-management