Merge pull request #1674 from spiffxp/sig-ownership-strawman
Initial implementation of subprojects
This commit is contained in:
commit
6a4220c65b
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -16,7 +16,15 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
|
|||
| Name | Label | Leads | Contact | Meetings |
|
||||
|------|--------|-------|---------|----------|
|
||||
{{- range .Sigs}}
|
||||
|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
|
||||
|[{{.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 -}}
|
||||
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>
|
||||
{{- end -}}
|
||||
{{- range .Subprojects -}}
|
||||
{{ $name := .Name }}
|
||||
{{- range .Meetings -}}
|
||||
* ({{ $name }}) {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
|
||||
### Master Working Group List
|
||||
|
|
@ -24,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}})|{{ $save := . }}{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
|
||||
|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{range .Meetings}}* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}} ({{.Frequency}})]({{.URL}})<br>{{end}}
|
||||
{{- end }}
|
||||
|
|
|
|||
|
|
@ -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 sig-{{.Label}}:
|
||||
|
||||
{{- 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
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,53 @@ 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 sig-api-machinery:
|
||||
- **api**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/api/master/OWNERS
|
||||
- **apiserver**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/apiserver/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/apiserver-builder/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
|
||||
- **code-generator**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
|
||||
- **crd**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/apiextensions-apiserver/master/OWNERS
|
||||
- **gen**
|
||||
- Owners:
|
||||
- **IDL**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS
|
||||
- **api-aggregation**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kube-aggregator/master/OWNERS
|
||||
- **kubernetes-client-library**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes-client/community/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/csharp/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/go-base/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/go/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/haskell/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/java/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/javascript/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/python-base/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/ruby/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/typescript/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/client-python/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/client-go/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kube-openapi/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.
|
||||
|
|
|
|||
|
|
@ -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,55 @@ 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 sig-apps:
|
||||
- **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
|
||||
- https://raw.githubusercontent.com/kubernetes-helm/charts-tooling/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).
|
||||
- **examples**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/examples/master/OWNERS
|
||||
- **helm**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/helm/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-helm/community/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 CronJob, DaemonSet, Deployment, Job, ReplicaSet, and StatefulSet kinds
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/cronjob/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/job/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/apis/batch/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.
|
||||
|
|
|
|||
|
|
@ -24,6 +24,19 @@ 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 sig-architecture:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -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 sig-autoscaling:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -25,6 +25,17 @@ 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 sig-cli:
|
||||
- **common**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/common/master/OWNERS
|
||||
- **kubectl**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubectl/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubectl/OWNERS
|
||||
|
||||
## GitHub Teams
|
||||
|
||||
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
|
||||
|
|
|
|||
|
|
@ -34,6 +34,44 @@ 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 sig-cluster-lifecycle:
|
||||
- **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
|
||||
- **kube-up**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/OWNERS
|
||||
- **kubeadm**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubeadm/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.
|
||||
|
|
|
|||
|
|
@ -28,6 +28,25 @@ 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 sig-contributor-experience:
|
||||
- **community**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/community/master/OWNERS
|
||||
- **community-management**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/community/master/communication/OWNERS https://raw.githubusercontent.com/kubernetes/community/master/events/OWNERS
|
||||
- **contributors-guide**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.comkubernetes/community/blob/master/contributors/guide/OWNERS
|
||||
- **k8s.io**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/k8s.io/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.
|
||||
|
|
|
|||
|
|
@ -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 sig-docs:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -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 sig-instrumentation:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ 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>
|
||||
|[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>
|
||||
|[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>
|
||||
|
|
@ -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>* (testing-commons) Testing Commons: [Wednesdays at 07:30 PT (Pacific Time) (bi-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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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 sig-multicluster:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -25,6 +25,33 @@ 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 sig-network:
|
||||
- **services**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/cmd/kube-proxy/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/proxy/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/controller/endpoint/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/controller/service/OWNERS
|
||||
- **kube-dns**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/dns/master/OWNERS
|
||||
- **external-dns**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/external-dns/master/OWNERS
|
||||
- **ingress**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/ingress-gce/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/OWNERS
|
||||
- **pod-networking**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/ip-masq-agent/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/network/OWNERS
|
||||
- **network-policy**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/api/networking/OWNERS
|
||||
|
||||
## GitHub Teams
|
||||
|
||||
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
|
||||
|
|
|
|||
|
|
@ -23,6 +23,35 @@ 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 sig-node:
|
||||
- **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
|
||||
- **kubelet**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubelet/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/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.
|
||||
|
|
|
|||
|
|
@ -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 sig-none:
|
||||
- **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
|
||||
|
|
|
|||
|
|
@ -23,6 +23,21 @@ 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 sig-release:
|
||||
- **hyperkube**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/build/debian-hyperkube-base/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/hyperkube/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/images/hyperkube/OWNERS
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -26,6 +26,17 @@ 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 sig-scalability:
|
||||
- **kubemark**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubemark/master/cmd/kubemark/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubemark/master/pkg/kubemark/OWNERS
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -23,6 +23,23 @@ 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 sig-scheduling:
|
||||
- **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
|
||||
- **scheduler**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kube-scheduler/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kube-scheduler/OWNERS
|
||||
|
||||
## GitHub Teams
|
||||
|
||||
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
|
||||
|
|
|
|||
|
|
@ -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 sig-service-catalog:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -24,6 +24,22 @@ 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 sig-storage:
|
||||
- **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
|
||||
- **volumes**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/volumes/OWNERS
|
||||
|
||||
## GitHub Teams
|
||||
|
||||
The below teams can be mentioned on issues and PRs in order to get attention from the right people.
|
||||
|
|
|
|||
|
|
@ -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 sig-testing:
|
||||
- **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.
|
||||
|
|
|
|||
|
|
@ -23,6 +23,13 @@ Covers all things UI related. Efforts are centered around Kubernetes Dashboard:
|
|||
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)
|
||||
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/sig%2Fui)
|
||||
|
||||
## Subprojects
|
||||
|
||||
The following subprojects are owned by sig-ui:
|
||||
- **dashboard**
|
||||
- Owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/dashboard/master/OWNERS
|
||||
|
||||
<!-- BEGIN CUSTOM CONTENT -->
|
||||
|
||||
<!-- END CUSTOM CONTENT -->
|
||||
|
|
|
|||
357
sigs.yaml
357
sigs.yaml
|
|
@ -41,6 +41,50 @@ 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: apiserver
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/apiserver/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/apiserver-builder/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
|
||||
- name: code-generator
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
|
||||
- name: crd
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/apiextensions-apiserver/master/OWNERS
|
||||
- name: gen
|
||||
owners:
|
||||
- name: IDL
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS
|
||||
- name: api-aggregation
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kube-aggregator/master/OWNERS
|
||||
- name: kubernetes-client-library
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes-client/community/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/csharp/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/go-base/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/go/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/haskell/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/java/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/javascript/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/python-base/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/ruby/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-client/typescript/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/client-python/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/client-go/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kube-openapi/master/OWNERS
|
||||
- name: utils
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/utils/master/OWNERS
|
||||
- name: Apps
|
||||
dir: sig-apps
|
||||
mission_statement: >
|
||||
|
|
@ -69,20 +113,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 +131,62 @@ 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
|
||||
- https://raw.githubusercontent.com/kubernetes-helm/charts-tooling/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
|
||||
- https://raw.githubusercontent.com/kubernetes-helm/community/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 CronJob, DaemonSet, Deployment, Job, ReplicaSet, and StatefulSet kinds
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/cronjob/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/job/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/apis/batch/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/apps/OWNERS
|
||||
- name: Architecture
|
||||
dir: sig-architecture
|
||||
mission_statement: >
|
||||
|
|
@ -141,6 +227,16 @@ sigs:
|
|||
description: Design Proposals
|
||||
- name: sig-architecture-test-failures
|
||||
description: Test Failures and Triage
|
||||
subprojects:
|
||||
- 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 +320,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 +477,14 @@ 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
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubectl/OWNERS
|
||||
- name: Cluster Lifecycle
|
||||
dir: sig-cluster-lifecycle
|
||||
mission_statement: >
|
||||
|
|
@ -443,6 +554,41 @@ 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: kube-up
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/OWNERS
|
||||
- name: kubeadm
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubeadm/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 +668,23 @@ 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: k8s.io
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/k8s.io/master/OWNERS
|
||||
- name: repo-infra
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/repo-infra/master/OWNERS
|
||||
- name: Docs
|
||||
dir: sig-docs
|
||||
mission_statement: >
|
||||
|
|
@ -551,6 +714,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 +803,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 +863,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 +912,30 @@ sigs:
|
|||
description: Design Proposals
|
||||
- name: sig-network-test-failures
|
||||
description: Test Failures and Triage
|
||||
subprojects:
|
||||
- name: services
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/cmd/kube-proxy/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/proxy/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/controller/endpoint/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/pkg/controller/service/OWNERS
|
||||
- name: kube-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
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/ingress-gce/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/OWNERS
|
||||
- name: pod-networking
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes-incubator/ip-masq-agent/master/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/network/OWNERS
|
||||
- name: network-policy
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/api/networking/OWNERS
|
||||
- name: Node
|
||||
dir: sig-node
|
||||
mission_statement: >
|
||||
|
|
@ -752,6 +972,32 @@ 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: kubelet
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubelet/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/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 +1129,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 +1174,18 @@ sigs:
|
|||
description: Design Proposals
|
||||
- name: sig-release-test-failures
|
||||
description: Test Failures and Triage
|
||||
subprojects:
|
||||
- name: hyperkube
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/build/debian-hyperkube-base/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/hyperkube/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/images/hyperkube/OWNERS
|
||||
- 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 +1233,14 @@ sigs:
|
|||
description: Design Proposals
|
||||
- name: sig-scalability-test-failures
|
||||
description: Test Failures and Triage
|
||||
subprojects:
|
||||
- name: kubemark
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubemark/master/cmd/kubemark/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubemark/master/pkg/kubemark/OWNERS
|
||||
- name: perf-tests
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/perf-tests/master/OWNERS
|
||||
- name: Scheduling
|
||||
dir: sig-scheduling
|
||||
mission_statement: >
|
||||
|
|
@ -1009,6 +1279,20 @@ 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: scheduler
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kube-scheduler/OWNERS
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kube-scheduler/OWNERS
|
||||
- name: Service Catalog
|
||||
dir: sig-service-catalog
|
||||
mission_statement: >
|
||||
|
|
@ -1055,6 +1339,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 +1382,19 @@ 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: volumes
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/volumes/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: >
|
||||
|
|
@ -1176,6 +1487,10 @@ sigs:
|
|||
contact:
|
||||
slack: sig-ui
|
||||
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
|
||||
subprojects:
|
||||
- name: dashboard
|
||||
owners:
|
||||
- https://raw.githubusercontent.com/kubernetes/dashboard/master/OWNERS
|
||||
- name: Windows
|
||||
dir: sig-windows
|
||||
mission_statement: >
|
||||
|
|
|
|||
Loading…
Reference in New Issue