Merge pull request #687 from jamiehannaford/output-dir

Add CI scripts
This commit is contained in:
Joe Beda 2017-06-07 08:16:53 -07:00 committed by GitHub
commit 9f00b6b211
31 changed files with 743 additions and 526 deletions

9
.travis.yml Normal file
View File

@ -0,0 +1,9 @@
sudo: required
language: bash
services:
- docker
script:
- bash ./scripts/verify.sh

View File

@ -1,12 +1,15 @@
all: \
build-sigdocs \
run-sigdocs \
build-image \
gen-docs \
reset-docs:
git checkout HEAD -- sig-list.md sig-*
build-sigdocs:
build-image:
docker build -t sigdocs -f generator/Dockerfile generator
run-sigdocs:
gen-doc:
docker run -e SIG=${SIG} -v $(shell pwd):/go/src/app sigdocs
gen-docs:
docker run -v $(shell pwd):/go/src/app sigdocs

View File

@ -17,6 +17,15 @@ To (re)build documentation for all the SIGs, run these commands:
make all
```
To build docs for one SIG, run these commands:
```bash
make SIG=sig-apps gen-doc
make SIG=sig-testing gen-doc
```
where the `SIG` var refers to the directory being built.
## Adding custom content to your SIG's README
If your SIG wishes to add custom content, you can do so by placing it within

View File

@ -179,9 +179,15 @@ func writeLastGenerated(f *os.File) {
}
func createReadmeFiles(ctx SigEntries) error {
selectedSig := os.Getenv("SIG")
for _, sig := range ctx.Sigs {
dirName := fmt.Sprintf("sig-%s", strings.ToLower(strings.Replace(sig.Name, " ", "-", -1)))
if selectedSig != "" && selectedSig != dirName {
fmt.Printf("Skipping %s\n", dirName)
continue
}
createDirIfNotExists(dirName)
prefix := sig.Contact.GithubTeamPrefix

38
scripts/verify.sh Normal file
View File

@ -0,0 +1,38 @@
#!/bin/bash
export CRTDIR=$(pwd)
export TMPDIR=/tmp/testgendocs
mkdir $TMPDIR
cp -r sig* Makefile generator $TMPDIR
cd $TMPDIR
make all
mismatches=0
break=$(printf "=%.0s" $(seq 1 68))
for file in $(ls $CRTDIR/sig-*/README.md $CRTDIR/sig-list.md); do
real=${file#$CRTDIR/}
if ! diff -q <(sed -e '/Last generated/d' $file) <(sed -e '/Last generated/d' $TMPDIR/$real) &>/dev/null; then
echo "$file does not match $TMPDIR/$real";
mismatches=$((mismatches+1))
fi;
done
if [ $mismatches -gt "0" ]; then
echo ""
echo $break
noun="mismatch was"
if [ $mismatches -gt "0" ]; then
noun="mismatches were"
fi
echo "$mismatches $noun detected."
echo "Do not manually edit sig-list.md or anything inside the sig folders."
echo "Instead make your changes to sigs.yaml and run \`make all\`.";
echo $break
exit 1;
fi
rm -rf $TMPDIR
exit 0

View File

@ -1,13 +1,35 @@
Kubernetes Special Interest Group for API Machinery (SIG API Machinery)
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# API Machinery SIG
Covers all aspects of API server, API registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, third-party resource, garbage collection, and client libraries.
## Meetings
* [Wednesdays at 18:00 UTC](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://goo.gl/x5nWrF).
## Leads
* [Daniel Smith](https://github.com/lavalamp), Google
* [David Eads](https://github.com/deads2k), Red Hat
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery)
<!-- BEGIN CUSTOM CONTENT -->
## Additional links
Links/Info:
* Github team: https://github.com/orgs/kubernetes/teams/sig-api-machinery-misc (Use @kubernetes/sig-api-machinery-misc on github to notify team members.)
* Mailing list: https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery
* Slack channel: https://kubernetes.slack.com/messages/sig-api-machinery/
* [Mission Doc](https://goo.gl/x5nWrF)
* [Meeting Agenda & Notes](https://goo.gl/0lbiM9) - join [mailing list](https://goo.gl/q0UT3A) for access
* [Zoom Link](https://zoom.us/my/apimachinery) - meetings at 11am PDT every other Wednesday
* Telephone: Dial: +1 646 558 8656 (US Toll) or +1 408 638 0968 (US Toll), Meeting ID: 911 134 1817
* [International Numbers Available](https://zoom.us/zoomconference?m=WjeVtfBRSWyv2-lLfrVQ-ZAMisJqkK93)
* [YouTube Playlist](https://www.youtube.com/playlist?list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R) - find meeting recordings here
* Areas: apiserver, api registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, third-party resource, garbage collection, client libraries
## Areas
apiserver, api registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, third-party resource, garbage collection, client libraries
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,19 +1,30 @@
# SIG Apps
<!---
This is an autogenerated file!
A Special Interest Group for deploying and operating applications in Kubernetes.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
We focus on the developer and devops experience of running applications in Kubernetes. We discuss how to define and run apps in Kubernetes, demo relevant tools and projects, and discuss areas of friction that can lead to suggesting improvements or feature requests.
To understand how this file is generated, see generator/README.md.
-->
# Apps SIG
## Contact us:
* via [Slack](https://kubernetes.slack.com/messages/sig-apps/)
* via [Google Groups](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)
Covers deploying and operating applications in Kubernetes. We focus on the developer and devops experience of running applications in Kubernetes. We discuss how to define and run apps in Kubernetes, demo relevant tools and projects, and discuss areas of friction that can lead to suggesting improvements or feature requests.
## Meeting:
* Meetings: Mondays 9:00AM PST
* Zoom Link: [https://zoom.us/my/sig.apps](https://zoom.us/j/4526666954)
* Check out the [Agenda and Minutes](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#)! _Note, for meetings on and prior to August 3, 2016 see the minutes in [their prior location](minutes/)._
## Meetings
* [Mondays at 16:00 UTC](https://zoom.us/j/4526666954) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
## Goals:
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#).
## Leads
* [Michelle Noorali](https://github.com/michelleN), Microsoft
* [Matt Farina](https://github.com/mattfarina), HPE
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-apps)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)
<!-- BEGIN CUSTOM CONTENT -->
## Goals
* Discuss running applications in k8s
* Discuss how to define and run apps in k8s (APIs, CLIs, SDKs, package management tools, etc.)
* Suggest k8s features where we see friction
@ -21,13 +32,11 @@ We focus on the developer and devops experience of running applications in Kuber
* Help people get involved in the kubernetes community
* Show early features/demos of tools that make running apps easier
## Non-goals:
## Non-goals
* Our job is not to go implement stacks. We're helping people to help themselves. We will help connect people to the right folks * but we do not want to own a set of examples (as a group)
* Do not endorse one particular tool
* Do not pick which apps to run on top of the platform
* Do not recommend one way to do things
<!-- END CUSTOM CONTENT -->
## Organizers:
* Michelle Noorali <michelle@deis.com>, Deis
* Matt Farina <matt@mattfarina.com>, HPE
* Adnan Abdulhussein <adnan@bitnami.com>, Bitnami
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,24 +1,38 @@
Kubernetes SIG-Auth
Kubernetes Special Interest Group for Authentication and Authorization
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
Goals for this SIG:
Discuss improvements Kubernetes Authorization and Authentication, and cluster security policy.
Not in scope for this SIG:
To report specific vulnerabilities in Kubernetes, please report using these instructions: http://kubernetes.io/v1.1/docs/reporting-security-issues.html
To understand how this file is generated, see generator/README.md.
-->
# Auth SIG
General discussion of Linux security, or of containers is better directed to a non-Kubernetes mailing list.
Covers improvements to Kubernetes authorization, authentication, and cluster security policy.
Proactive or general security discussion about Kubelet should go to kubernetes-sig-node@googlegroups.com.
## Meetings
* [Wednesdays at 18:00 UTC](https://zoom.us/my/k8s.sig.auth) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC).
Proactive or general security discussion about the API server should go to kubernetes-sig-api-machinery@googlegroups.com.
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#).
## Leads
* [Eric Chiang](https://github.com/ericchiang), CoreOS
* [Jordan Liggitt](https://github.com/liggitt), Red Hat
* [David Eads](https://github.com/deads2k), Red Hat
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-auth)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-auth)
Links/info:
* Mailing list: https://groups.google.com/forum/#!forum/kubernetes-sig-auth
* Github team: https://github.com/orgs/kubernetes/teams/sig-auth (Use @kubernetes/sig-auth on github to notify team members.)
* Slack channel: https://kubernetes.slack.com/messages/sig-auth/
* Meeting frequency & time: Biweekly on Wednesdays, 11am Pacific (see agenda for which Wednesdays)
* Agenda & meeting notes: https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#
* Hangout link: [https://zoom.us/my/k8s.sig.auth](https://zoom.us/my/k8s.sig.auth)
<!-- BEGIN CUSTOM CONTENT -->
## Goals
* Discuss improvements Kubernetes Authorization and Authentication, and cluster security policy.
## Non-goals
* To report specific vulnerabilities in Kubernetes, please report using these instructions: http://kubernetes.io/v1.1/docs/reporting-security-issues.html
* General discussion of Linux security, or of containers is better directed to a non-Kubernetes mailing list.
* Proactive or general security discussion about Kubelet should go to kubernetes-sig-node@googlegroups.com.
* Proactive or general security discussion about the API server should go to kubernetes-sig-api-machinery@googlegroups.com.
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,12 +1,34 @@
This is the wiki page of Kubernetes Autoscaling SIG: a special interest group for autoscaling related topics. The scope of our SIG includes (but is not limited to):
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# Autoscaling SIG
Covers autoscaling of clusters, horizontal and vertical autoscaling of pods, setting initial resources for pods, topics related to monitoring pods and gathering their metrics (e.g.: Heapster)
## Meetings
* [Thursdays at 15:30 UTC](https://plus.google.com/hangouts/_/google.com/k8s-autoscaling) (biweekly/triweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:30&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit).
## Leads
* [Filip Grządkowski](https://github.com/fgrzadkowski), Google
* [Solly Ross](https://github.com/directxman12), Red Hat
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-autoscaling)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling)
<!-- BEGIN CUSTOM CONTENT -->
## Concerns
* autoscaling of clusters,
* horizontal and vertical autoscaling of pods,
* setting initial resources for pods,
* topics related to monitoring pods and gathering their metrics (e.g.: Heapster)
<!-- END CUSTOM CONTENT -->
[Meeting Notes](https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit)
[Hangout](https://plus.google.com/hangouts/_/google.com/k8s-autoscaling)
Mailing list: kubernetes-sig-autoscaling@googlegroups.com
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,28 +1,32 @@
# SIG AWS
<!---
This is an autogenerated file!
A Special Interest Group for maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## Meeting
To understand how this file is generated, see generator/README.md.
-->
# AWS SIG
Meetings are hosted on [Zoom](https://zoom.us/my/k8ssigaws) video
conference on Fridays at [5pm UTC / 9 am US Pacific](http://www.worldtimebuddy.com/?pl=1&lid=100,5,8,12) every other week, on _even week numbers_.
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
You can check if the current week is _even_ by running:
## Meetings
* [Fridays at 17:00 UTC](https://zoom.us/my/k8ssigaws) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:00&tz=UTC).
```bash
date +%V
```
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit).
- Meeting Chanages: notification will be sent out via the [group mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)
- Meeting Holidays: we typically follow Google's US offices holiday schedule, but will notify via the group above.
- Agenda: [Google Doc](https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit)
## Leads
* [Justin Santa Barbara](https://github.com/justinsb)
* [Kris Nova](https://github.com/kris-nova), Microsoft
* [Chris Love](https://github.com/chrislovecnm)
* [Mackenzie Burnett](https://github.com/mfburnett), Redspread
## Organizers:
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-aws)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)
| Name | Contact |
| ------------- | ------------- |
| Justin Santa Barbara | [justinsb](https://github.com/justinsb) |
| Kris Nova | [kris-nova](https://github.com/kris-nova) |
| Mackenzie Burnett | [mfburnett](https://github.com/mfburnett) |
<!-- BEGIN CUSTOM CONTENT -->
The meeting is open to all and we encourage you to join. Feel free to join the zoom call at your convenience.
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,26 +1,38 @@
# SIG Big Data
<!---
This is an autogenerated file!
A Special Interest Group for deploying and operating big data applications (Spark, Kafka, Hadoop, Flink, Storm, etc) on Kubernetes. We focus on integrations with big data applications and architecting the best ways to run them on Kubernetes.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## Meeting:
To understand how this file is generated, see generator/README.md.
-->
# Big Data SIG
* Meetings: Wednesdays 10:00 AM PST
* Video Conference Link: updated in [the official group](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)
* Check out the [Agenda and Minutes](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit)! Note: this SIG was operational briefly in 2015. Minutes for those meetings are in [their prior location](https://docs.google.com/document/u/1/d/1YhNLN39f5oZ4AHn_g7vBp0LQd7k37azL7FkWG8CEDrE/edit).
* Slack: https://kubernetes.slack.com/messages/sig-big-data/
Covers deploying and operating big data applications (Spark, Kafka, Hadoop, Flink, Storm, etc) on Kubernetes. We focus on integrations with big data applications and architecting the best ways to run them on Kubernetes.
## Goals:
## Meetings
* [Wednesdays at 17:00 UTC](https://zoom.us/my/sig.big.data) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit).
## Leads
* [Anirudh Ramanathan](https://github.com/foxish), Google
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-big-data)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)
<!-- BEGIN CUSTOM CONTENT -->
## Goals
* Design and architect ways to run big data applications effectively on Kubernetes
* Discuss ongoing implementation efforts
* Discuss resource sharing and multi-tenancy (in the context of big data applications)
* Suggest Kubernetes features where we see a need
## Non-goals:
## Non-goals
* Endorsing any particular tool/framework
<!-- END CUSTOM CONTENT -->
## Organizers:
* [Anirudh Ramanathan](https://github.com/foxish), Google
* [Kenneth Owens](https://github.com/kow3ns), Google
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,43 +1,31 @@
# SIG CLI
<!---
This is an autogenerated file!
The Kubernetes Command Line Interface SIG (sig-cli) is a working group for the contributor community interested in `kubectl` and related tools.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
We focus on the development and standardization of the CLI [framework](https://github.com/kubernetes/kubernetes/tree/master/pkg/kubectl) and its dependencies, the establishment of [conventions](contributors/devel/kubectl-conventions.md) for writing CLI commands, POSIX compliance, and improving the command line tools from a developer and devops user experience and usability perspective.
To understand how this file is generated, see generator/README.md.
-->
# CLI SIG
## Meetings:
* Bi-weekly on Wednesdays @ 9am [America/Los_Angeles](http://time.is/Los_Angeles) (check [the calendar](https://calendar.google.com/calendar/embed?src=cgnt364vd8s86hr2phapfjc6uk%40group.calendar.google.com&ctz=America/Los_Angeles))
* Zoom Link: <https://zoom.us/my/sigcli>
* Meeting [Agenda and Minutes](https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing)
Covers kubectl and related tools. We focus on the development and standardization of the CLI framework and its dependencies, the establishment of conventions for writing CLI commands, POSIX compliance, and improving the command line tools from a developer and devops user experience and usability perspective.
## Communication:
* Slack: <https://kubernetes.slack.com/messages/sig-cli> ([archive](http://kubernetes.slackarchive.io/sig-cli))
* Google Group: <https://groups.google.com/forum/#!forum/kubernetes-sig-cli>
## Meetings
* [Wednesdays at 16:00 UTC](https://zoom.us/my/sigcli) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing).
## Leads
* [Fabiano Franz](https://github.com/fabianofranz), Red Hat
* [Phillip Wittrock](https://github.com/pwittrock), Google
* [Tony Ado](https://github.com/AdoHe), Alibaba
**Note:** Escalate to these folks if you cannot get help from slack or the Google group
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-cli)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)
* Fabiano Franz <ffranz@redhat.com>, Red Hat
- slack / github: @fabianofranz
* Phillip Wittrock <pwittroc@google.com>, Google
- slack / github: @pwittrock
* Tony Ado <coolhzb@gmail.com>, Alibaba
- slack / github: @adohe
<!-- BEGIN CUSTOM CONTENT -->
## Contributing
See [this document](CONTRIBUTING.md) for contributing instructions.
## Sig-cli teams
Mention one or more of
| Name | Description |
|------------------------------------|--------------------------------------------------|
|@kubernetes/sig-cli-bugs | For bugs in kubectl |
|@kubernetes/sig-cli-feature-requests| For initial discussion of new feature requests |
|@kubernetes/sig-cli-proposals | For in depth discussion of new feature proposals |
|@kubernetes/sig-cli-pr-reviews | For PR code reviews |
|@kubernetes/sig-test-failures | For e2e test flakes |
|@kubernetes/sig-cli-misc | For general discussion and escalation |
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,19 +1,28 @@
# SIG Cluster Lifecycle
<!---
This is an autogenerated file!
**Leads:** [@lukemarsden (Luke Marsden, Weave)] (https://github.com/lukemarsden)
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
**Slack Channel:** [#sig-cluster-lifecycle](https://kubernetes.slack.com/messages/sig-cluster-lifecycle/)
**Mailing List:** [kubernetes-sig-cluster-lifecycle](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)
**Meetings:**
- [Zoom Meeting](https://zoom.us/j/166836624) Tuesdays 9am (PDT)
- [Notes](https://docs.google.com/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit)
To understand how this file is generated, see generator/README.md.
-->
# Cluster Lifecycle SIG
## Meetings
* [Tuesdays at 16:00 UTC](https://zoom.us/j/166836%E2%80%8B624) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
Mission
-------
Meeting notes and Agenda can be found [here](https://docs.google.com/a/weave.works/document/d/1deJYPIF4LmhGjDVaqrswErIrV7mtwJgovtLnPCDxP7U/edit).
[Work-in-progress](https://docs.google.com/document/d/1E4cspBTKfzXGxlfMJRIpk-zC4CzoDz8VF_DyofcBNeo/edit)
## Leads
* [Luke Marsden](https://github.com/lukemarsden), Weave
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,22 +1,30 @@
SIG Cluster Ops
===============
<!---
This is an autogenerated file!
[Meeting Notes](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#)
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
Meeting Time: Thursday @ 1 PT (so we can end the week with Ops)
To understand how this file is generated, see generator/README.md.
-->
# Cluster Ops SIG
[Google Group](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)
Promote operability and interoperability of Kubernetes clusters. We focus on shared operations practices for Kubernetes clusters with a goal to make Kubernetes broadly accessible with a common baseline reference. We also organize operators as a sounding board and advocacy group.
[Slack](https://kubernetes.slack.com/messages/sig-cluster-ops/)
## Meetings
* [Thursdays at 20:00 UTC](https://zoom.us/j/297937771) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
Co-leaders
* Rob Hirschfeld (@zehicle, rob@rackn.com)
* Jason Singer DuMars (@jaydumars)
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1IhN5v6MjcAUrvLd9dAWtKcGWBWSaRU8DNyPiof3gYMY/edit#).
Mission
-------
## Leads
* [Rob Hirschfeld](https://github.com/zehicle), RackN
* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft
SIG Cluster Ops Mission is to promote operability and interoperability of Kubernetes clusters. We focus on shared operations practices for Kubernetes clusters with a goal to make Kubernetes broadly accessible with a common baseline reference. We also organize operators as a sounding board and advocacy group.
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)
<!-- BEGIN CUSTOM CONTENT -->
[Zoom](https://zoom.us/j/297937771), Biweekly Thursday at 1PM PST
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,39 +1,31 @@
# SIG Contributor Experience
<!---
This is an autogenerated file!
We need your help!!!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
Developing and sustaining a healthy community of contributors is critical to scaling the project
and growing the ecosystem. We need to ensure our contributors are happy and productive, we need
to break the [commit-rate ceiling we hit in July 2015](https://github.com/kubernetes/kubernetes/graphs/contributors),
and we need to get the monotonically growing PR merge latency and numbers of open PRs and issues under control.
To understand how this file is generated, see generator/README.md.
-->
# Contributor Experience SIG
## Meeting:
* Meetings: Wednesdays 9:30AM PST (biweekly and changing soon)
* Zoom Link: https://zoom.us/j/7658488911
* Check out the [Agenda and Minutes](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/ )!
* [ContribX Google Group](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)
Developing and sustaining a healthy community of contributors is critical to scaling the project and growing the ecosystem. We need to ensure our contributors are happy and productive, we need to break the commit-rate ceiling we hit in July 2015, and we need to get the monotonically growing PR merge latency and numbers of open PRs and issues under control.
## Goals:
* Ensure contributors are happy and productive.
* Owns project PR and issue automation.
* Help people get involved in the [Kubernetes Community](https://kubernetes.io/community/).
## Meetings
* [Wednesdays at 16:30 UTC](https://zoom.us/j/7658488911) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:30&tz=UTC).
## Organizers:
* Garrett Rodrigues grod@google.com, @grodrigues3, Google
* Elsie Phillips elsie.phillips@coreos.com, @Phillels, CoreOS
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/).
## Issues:
* [Detailed backlog](https://github.com/orgs/kubernetes/projects/1)
* [velocity-improvement issues](https://github.com/kubernetes/contrib/labels/kind%2Fvelocity-improvement)
* Too many notifications, which are insufficiently targeted and have too little context, as well as missing
notifications for important events
* [Too-coarse ACLs](https://github.com/kubernetes/contrib/issues/1908)
* Inadequate PR reviewer assignment and processes, with too small a reviewer pool
* Lack of a sustainable approach to issue management (we have thousands of open issues, with over 100 new ones each week)
* Lack of processes for growing leadership within the community
* Trying to maintain a [large monorepo in github](https://github.com/kubernetes/kubernetes/issues/24343), which is intended for small repos and teams
* Insufficient project-wide (cross-SIG) communication and coordination
* Need to make [slackarchive](http://kubernetes.slackarchive.io/kubernetes-dev) more discoverable
* [Too many flaky tests](https://github.com/kubernetes/kubernetes/issues/24753)
* Excessive PR rebases due to checking in generated files
* Inadequate and out-of-date contributor documentation
## Leads
* [Garrett Rodrigues](https://github.com/grodrigues3), Google
* [Phillip Witrock](https://github.com/pwittrock), Google
* [Elsie Phillips](https://github.com/Phillels), CoreOS
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-contribex)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,23 +1,36 @@
# SIG Docs
<!---
This is an autogenerated file!
A Special Interest Group for documentation, doc processes, and doc publishing for Kubernetes.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## Meeting:
* Meetings: Tuesdays @ 10:30AM PST
* Zoom Link: https://zoom.us/j/678394311
* Check out the [Agenda and Minutes](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit)
To understand how this file is generated, see generator/README.md.
-->
# Docs SIG
## Comms:
* Slack: [kubernetes.slack.com #sig-docs](https://kubernetes.slack.com/messages/sig-docs/)
* Google Group: [kubernetes-sig-docs@googlegroups.com](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
Covers documentation, doc processes, and doc publishing for Kubernetes.
## Goals:
## Meetings
* [Tuesdays at 17:30 UTC](https://zoom.us/j/678394311) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:30&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit).
## Leads
* [Philip Wittrock](https://github.com/pwittrock), Google
* [Devin Donnelly](https://github.com/devin-donnelly), Google
* [Jared Bhatti](https://github.com/jaredbhatti), Google
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-docs)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
<!-- BEGIN CUSTOM CONTENT -->
## Goals
* Discuss documentation and docs issues for kubernetes.io
* Plan docs releases for kubernetes
* Suggest improvements to user onboarding through better documentation on Kubernetes.io
* Identify and implement ways to get documentation feedback and metrics
* Help community contributors get involved in kubernetes documentation
<!-- END CUSTOM CONTENT -->
## Organizers:
* Devin Donnelly <ddonnelly@google.com>, Google
* Jared Bhatti <jaredb@google.com>, Google
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,17 +1,30 @@
This is a SIG focused on Federation of Kubernetes Clusters and related topics. This includes:
<!---
This is an autogenerated file!
* Application resiliency against availability zone outages
* Hybrid clouds
* Spanning of multiple could providers
* Application migration from private to public clouds (and vice versa)
* ... and other similar subjects.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## Meetings:
* Weekly on Tuesdays @ 9:30am [America/Los_Angeles](http://time.is/Los_Angeles) (check [the calendar](https://calendar.google.com/calendar/embed?src=cgnt364vd8s86hr2phapfjc6uk%40group.calendar.google.com&ctz=America/Los_Angeles))
* Hangouts link: <https://plus.google.com/hangouts/_/google.com/k8s-federation>
* [Working Group Notes](https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit)
* Meeting recording videos: <https://www.youtube.com/playlist?list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0->
To understand how this file is generated, see generator/README.md.
-->
# Federation SIG
## Communication:
* Slack: <https://kubernetes.slack.com/messages/sig-federation> ([archive](http://kubernetes.slackarchive.io/sig-federation))
* Google Group: <https://groups.google.com/forum/#!forum/kubernetes-sig-federation>
Covers the Federation of Kubernetes Clusters and related topics. This includes: application resiliency against availability zone outages; hybrid clouds; spanning of multiple could providers; application migration from private to public clouds (and vice versa); and other similar subjects.
## Meetings
* [Tuesdays at 16:30 UTC](https://plus.google.com/hangouts/_/google.com/k8s-federation) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:30&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit).
## Leads
* [Christian Bell](https://github.com/csbell), Google
* [Quinton Hoole](https://github.com/quinton-hoole), Huawei
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-federation)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-federation)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,8 +1,29 @@
# SIG Instrumentation
<!---
This is an autogenerated file!
**Leads:** [@piosz (Piotr Szczesniak, Google)](https://github.com/piosz), [@fabxc (Fabian Reinartz, CoreOS)](https://github.com/fabxc)
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
**Mailing List:** [kubernetes-sig-instrumentation](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)
**Slack Channel:** [#sig-instrumentation](https://kubernetes.slack.com/messages/sig-instrumentation)
**Meeting Notes:** [https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit)
To understand how this file is generated, see generator/README.md.
-->
# Instrumentation SIG
## Meetings
* [Thursdays at 16:30 UTC](https://zoom.us/j/5342565819) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:30&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1gWuAATtlmI7XJILXd31nA4kMq6U9u63L70382Y3xcbM/edit).
## Leads
* [Piotr Szczesniak](https://github.com/piosz), Google
* [Fabian Reinartz](https://github.com/fabxc), CoreOS
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,43 +1,54 @@
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# SIGs and Working Groups
Most community activity is organized into Special Interest Groups (SIGs),
time bounded Working Groups, and the [community meeting](communication.md#Meeting).
SIGs follow these [guidelines](governance.md) although each of these groups may operate a little differently
depending on their needs and workflow.
Each group's material is in its subdirectory in this project.
When the need arises, a [new SIG can be created](sig-governance.md#sig-creation-procedure)
When the need arises, a [new SIG can be created](sig-creation-procedure.md)
### Master SIG List
| Name | Leads | Group | Slack Channel | Meetings |
|------|-------|-------|---------------|----------|
| [API Machinery](sig-api-machinery/README.md) | [@lavalamp](https://github.com/lavalamp) Daniel Smith, Google <br> [@deads2k](https://github.com/deads2k) David Eads, Red Hat| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery) | [#sig-api-machinery](https://kubernetes.slack.com/messages/sig-api-machinery/) | [Every other Wednesday at 11:00 AM PST](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig) |
| [Apps](sig-apps/README.md) | [@michelleN (Michelle Noorali, Deis)](https://github.com/michelleN)<br>[@mattfarina (Matt Farina, HPE)](https://github.com/mattfarina) <br>[@prydonius (Adnan Abdulhussein, Bitnami)](https://github.com/prydonius) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-apps) | [#sig-apps](https://kubernetes.slack.com/messages/sig-apps) | [Mondays 9:00AM PST](https://zoom.us/j/4526666954) |
| [Auth](sig-auth/README.md) | [@ericchiang (Eric Chiang, CoreOS)](https://github.com/ericchiang)<br> [@liggitt (Jordan Liggitt, Red Hat)](https://github.com/liggitt) <br> [@deads2k (David Eads, Red Hat)](https://github.com/deads2k) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-auth) | [#sig-auth](https://kubernetes.slack.com/messages/sig-auth/) | Biweekly [Wednesdays at 1100 to 1200 PT](https://zoom.us/my/k8s.sig.auth) |
| [Autoscaling](sig-autoscaling/README.md) | [@fgrzadkowski (Filip Grządkowski, Google)](https://github.com/fgrzadkowski)<br> [@directxman12 (Solly Ross, Red Hat)](https://github.com/directxman12) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling) | [#sig-autoscaling](https://kubernetes.slack.com/messages/sig-autoscaling/) | Biweekly (or triweekly) on [Thurs at 0830 PT](https://plus.google.com/hangouts/_/google.com/k8s-autoscaling) |
| [AWS](sig-aws/README.md) | [@justinsb (Justin Santa Barbara)](https://github.com/justinsb)<br>[@kris-nova (Kris Nova)](https://github.com/kris-nova)<br>[@chrislovecnm (Chris Love)](https://github.com/chrislovecnm)<br>[@mfburnett (Mackenzie Burnett)](https://github.com/mfburnett) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-aws) | [#sig-aws](https://kubernetes.slack.com/messages/sig-aws/) | We meet on [Zoom](https://zoom.us/my/k8ssigaws), and the calls are scheduled via the official [group mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-aws) |
| [Big Data](sig-big-data/README.md) | [@foxish (Anirudh Ramanathan, Google)](https://github.com/foxish)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data) | [#sig-big-data](https://kubernetes.slack.com/messages/sig-big-data/) | Wednesdays at 10am PST, link posted in [the official group](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data). |
| [CLI](sig-cli/README.md) | [@fabianofranz (Fabiano Franz, Red Hat)](https://github.com/fabianofranz)<br>[@pwittrock (Phillip Wittrock, Google)](https://github.com/pwittrock)<br>[@AdoHe (Tony Ado, Alibaba)](https://github.com/AdoHe) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-cli) | [#sig-cli](https://kubernetes.slack.com/messages/sig-cli) | Bi-weekly Wednesdays at 9:00 AM PT on [Zoom](https://zoom.us/my/sigcli) |
| [Cluster Lifecycle](sig-cluster-lifecycle/README.md) | [@lukemarsden (Luke Marsden, Weave)](https://github.com/lukemarsden) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle) | [#sig-cluster-lifecycle](https://kubernetes.slack.com/messages/sig-cluster-lifecycle) | Tuesdays at 09:00 AM PST on [Zoom](https://zoom.us/j/166836624) |
| [Cluster Ops](sig-cluster-ops/README.md) | [@zehicle (Rob Hirschfeld, RackN)](https://github.com/zehicle) <br> [@jdumars (Jason Singer DuMars, Microsoft](https://github.com/jdumars) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops) | [#sig-cluster-ops](https://kubernetes.slack.com/messages/sig-cluster-ops) | Biweekly on Thursday at 1:00 PM PST on [Zoom](https://zoom.us/j/297937771)|
| [Contributor Experience](sig-contributor-experience/README.md) | [@grodrigues3 (Garrett Rodrigues, Google)](https://github.com/Grodrigues3) <br> [@pwittrock (Phillip Witrock, Google)](https://github.com/pwittrock) <br> [@Phillels (Elsie Phillips, CoreOS)](https://github.com/Phillels) | [Group](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex) | [#sig-contribex](https://kubernetes.slack.com/messages/sig-contribex) | Biweekly Wednesdays 9:30 AM PST on [zoom](https://zoom.us/j/7658488911) |
| [Docs](sig-docs/README.md) | [@pwittrock (Philip Wittrock, Google)](https://github.com/pwittrock) <br> [@devin-donnelly (Devin Donnelly, Google)](https://github.com/devin-donnelly) <br> [@jaredbhatti (Jared Bhatti, Google)](https://github.com/jaredbhatti)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-docs) | [#sig-docs](https://kubernetes.slack.com/messages/sig-docs) | Bi-weekly on Tuesdays @ 10:30AM PST on [Zoom](https://zoom.us/j/678394311) |
| [Federation](sig-federation/README.md) | [@csbell (Christian Bell, Google)](https://github.com/csbell) <br> [@quinton-hoole (Quinton Hoole, Huawei)](https://github.com/quinton-hoole) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-federation) | [#sig-federation](https://kubernetes.slack.com/messages/sig-federation/) | Bi-weekly on Monday at 9:00 AM PST on [hangouts](https://plus.google.com/hangouts/_/google.com/ubernetes) |
| [Instrumentation](sig-instrumentation/README.md) | [@piosz (Piotr Szczesniak, Google)](https://github.com/piosz) <br> [@fabxc (Fabian Reinartz, CoreOS)](https://github.com/fabxc) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation) | [#sig-instrumentation](https://kubernetes.slack.com/messages/sig-instrumentation) | [Thursdays at 9.30 AM PST](https://zoom.us/j/5342565819) |
| [Network](sig-network/README.md) | [@thockin (Tim Hockin, Google)](https://github.com/thockin)<br> [@dcbw (Dan Williams, Red Hat)](https://github.com/dcbw)<br> [@caseydavenport (Casey Davenport, Tigera)](https://github.com/caseydavenport) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-network) | [#sig-network](https://kubernetes.slack.com/messages/sig-network/) | Thursdays at 2:00 PM PST on [Zoom](https://zoom.us/j/5806599998) |
| [Node](sig-node/README.md) | [@dchen1107 (Dawn Chen, Google)](https://github.com/dchen1107)<br>[@derekwaynecarr (Derek Carr, Red Hat)](https://github.com/derekwaynecarr) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-node) | [#sig-node](https://kubernetes.slack.com/messages/sig-node/) | [Tuesdays at 10:00 PT](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0) |
| [On Prem](sig-on-premise/README.md) | [@josephjacks (Joseph Jacks, Apprenda)](https://github.com/josephjacks) <br> [@zen (Tomasz Napierala, Mirantis)](https://github.com/zen)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem) | [#sig-onprem](https://kubernetes.slack.com/messages/sig-onprem/) | Every two weeks on Wednesday at 9 PM PST / 12 PM EST |
| [OpenStack](sig-openstack/README.md) | [@idvoretskyi (Ihor Dvoretskyi, Mirantis)](https://github.com/idvoretskyi) <br> [@xsgordon (Steve Gordon, Red Hat)](https://github.com/xsgordon)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack) | [#sig-openstack](https://kubernetes.slack.com/messages/sig-openstack/) | Every second Wednesday at 5 PM PDT / 2 PM EDT |
| [PM](sig-product-management/README.md) | [@apsinha (Aparna Sinha, Google)](https://github.com/apsinha) <br> [@idvoretskyi (Ihor Dvoretskyi, Mirantis)](https://github.com/idvoretskyi) <br> [@calebamiles (Caleb Miles, CoreOS)](https://github.com/calebamiles)| [Group](https://groups.google.com/forum/#!forum/kubernetes-pm) | [#kubernetes-pm](https://kubernetes.slack.com/messages/kubernetes-pm/) | Every two weeks on Tuesday 8:00 AM PST/4:00 PM UTC |
| [Release](sig-release/README.md) | [@pwittrock (Phillip Wittrock, Google)](https://github.com/pwittrock) <br> [@calebamiles (Caleb Miles, CoreOS)](https://github.com/calebamiles)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-release) | [#sig-release](https://kubernetes.slack.com/messages/C56HWQ0TH/) | TBD |
| [Scalability](sig-scalability/README.md) | [@lavalamp (Daniel Smith, Google)](https://github.com/lavalamp)<br>[@countspongebob (Bob Wise, Samsung SDS)](https://github.com/countspongebob)<br>[@jbeda (Joe Beda)](https://github.com/jbeda) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-scale) | [#sig-scale](https://kubernetes.slack.com/messages/sig-scale/) | [Thursdays at 09:00 PT](https://zoom.us/j/989573207) |
| [Scheduling](sig-scheduling/README.md) | [@davidopp (David Oppenheimer, Google)](https://github.com/davidopp)<br>[@timothysc (Timothy St. Clair, Red Hat)](https://github.com/timothysc) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling) | [#sig-scheduling](https://kubernetes.slack.com/messages/sig-scheduling/) | Alternate between Mondays at 1 PM PT and Wednesdays at 12:30 AM PT on [Zoom](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) |
| [Service Catalog](sig-service-catalog/README.md) | [@pmorie (Paul Morie, Red Hat)](https://github.com/pmorie) <br> [@arschles (Aaron Schlesinger, Microsoft (formerly Deis)](https://github.com/arschles) <br> [@vaikas-google (Ville Aikas, Google)](https://github.com/vaikas-google) <br> [@duglin (Doug Davis, IBM)](https://github.com/duglin)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog) | [#sig-service-catalog](https://kubernetes.slack.com/messages/sig-service-catalog/) | [Mondays at 1 PM PST](https://zoom.us/j/7201225346) |
| [Storage](sig-storage/README.md) | [@saad-ali (Saad Ali, Google)](https://github.com/saad-ali)<br>[@childsb (Brad Childs, Red Hat)](https://github.com/childsb) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-storage) | [#sig-storage](https://kubernetes.slack.com/messages/sig-storage/) | Bi-weekly Thursdays 9 AM PST (or more frequently) on [Zoom](https://zoom.us/j/614261834) |
| [Testing](sig-testing/README.md) | [@spiffxp (Aaron Crickenberger, Samsung SDS)](https://github.com/spiffxp)<br>[@fejta (Erick Fejta, Google)](https://github.com/fejta)<br>[@timothysc (Timothy St. Clair, Heptio)](https://github.com/timothysc) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-testing) | [#sig-testing](https://kubernetes.slack.com/messages/sig-testing/) | [Tuesdays at 1:00PM PT](https://zoom.us/j/553910341) |
| [UI](sig-ui/README.md) | [@romlein (Dan Romlein, Apprenda)](https://github.com/danielromlein)<br> [@bryk (Piotr Bryk, Google)](https://github.com/bryk) | [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-ui) | [#sig-ui](https://kubernetes.slack.com/messages/sig-ui/) | Wednesdays at 4:00 PM CEST |
| [Windows](sig-windows/README.md) | [@michmike77 (Michael Michael, Apprenda)](https://github.com/michmike)| [Group](https://groups.google.com/forum/#!forum/kubernetes-sig-windows) | [#sig-windows](https://kubernetes.slack.com/messages/sig-windows) | Bi-weekly Tuesdays at 9:30 AM PT |
| Name | Leads | Contact | Meetings |
|------|-------|---------|----------|
|[API Machinery](sig-api-machinery/README.md)|* [Daniel Smith](https://github.com/lavalamp), Google<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-api-machinery)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery)|* [Wednesdays at 18:00 UTC (biweekly)](https://staging.talkgadget.google.com/hangouts/_/google.com/kubernetes-sig)<br>
|[AWS](sig-aws/README.md)|* [Justin Santa Barbara](https://github.com/justinsb)<br>* [Kris Nova](https://github.com/kris-nova), Microsoft<br>* [Chris Love](https://github.com/chrislovecnm)<br>* [Mackenzie Burnett](https://github.com/mfburnett), Redspread<br>|* [Slack](https://kubernetes.slack.com/messages/sig-aws)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-aws)|* [Fridays at 17:00 UTC (biweekly)](https://zoom.us/my/k8ssigaws)<br>
|[Apps](sig-apps/README.md)|* [Michelle Noorali](https://github.com/michelleN), Microsoft<br>* [Matt Farina](https://github.com/mattfarina), HPE<br>|* [Slack](https://kubernetes.slack.com/messages/sig-apps)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-apps)|* [Mondays at 16:00 UTC (weekly)](https://zoom.us/j/4526666954)<br>
|[Auth](sig-auth/README.md)|* [Eric Chiang](https://github.com/ericchiang), CoreOS<br>* [Jordan Liggitt](https://github.com/liggitt), Red Hat<br>* [David Eads](https://github.com/deads2k), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-auth)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-auth)|* [Wednesdays at 18:00 UTC (biweekly)](https://zoom.us/my/k8s.sig.auth)<br>
|[Autoscaling](sig-autoscaling/README.md)|* [Filip Grządkowski](https://github.com/fgrzadkowski), 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)|* [Thursdays at 15:30 UTC (biweekly/triweekly)](https://plus.google.com/hangouts/_/google.com/k8s-autoscaling)<br>
|[Big Data](sig-big-data/README.md)|* [Anirudh Ramanathan](https://github.com/foxish), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-big-data)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-big-data)|* [Wednesdays at 17:00 UTC (weekly)](https://zoom.us/my/sig.big.data)<br>
|[CLI](sig-cli/README.md)|* [Fabiano Franz](https://github.com/fabianofranz), Red Hat<br>* [Phillip Wittrock](https://github.com/pwittrock), Google<br>* [Tony Ado](https://github.com/AdoHe), Alibaba<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cli)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cli)|* [Wednesdays at 16:00 UTC (biweekly)](https://zoom.us/my/sigcli)<br>
|[Cluster Lifecycle](sig-cluster-lifecycle/README.md)|* [Luke Marsden](https://github.com/lukemarsden), Weave<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-lifecycle)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle)|* [Tuesdays at 16:00 UTC (weekly)](https://zoom.us/j/166836%E2%80%8B624)<br>
|[Cluster Ops](sig-cluster-ops/README.md)|* [Rob Hirschfeld](https://github.com/zehicle), RackN<br>* [Jaice Singer DuMars](https://github.com/jdumars), Microsoft<br>|* [Slack](https://kubernetes.slack.com/messages/sig-cluster-ops)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-ops)|* [Thursdays at 20:00 UTC (biweekly)](https://zoom.us/j/297937771)<br>
|[Contributor Experience](sig-contributor-experience/README.md)|* [Garrett Rodrigues](https://github.com/grodrigues3), Google<br>* [Phillip Witrock](https://github.com/pwittrock), Google<br>* [Elsie Phillips](https://github.com/Phillels), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-contribex)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-wg-contribex)|* [Wednesdays at 16:30 UTC (biweekly)](https://zoom.us/j/7658488911)<br>
|[Docs](sig-docs/README.md)|* [Philip Wittrock](https://github.com/pwittrock), Google<br>* [Devin Donnelly](https://github.com/devin-donnelly), Google<br>* [Jared Bhatti](https://github.com/jaredbhatti), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-docs)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)|* [Tuesdays at 17:30 UTC (biweekly)](https://zoom.us/j/678394311)<br>
|[Federation](sig-federation/README.md)|* [Christian Bell](https://github.com/csbell), Google<br>* [Quinton Hoole](https://github.com/quinton-hoole), Huawei<br>|* [Slack](https://kubernetes.slack.com/messages/sig-federation)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-federation)|* [Tuesdays at 16:30 UTC (weekly)](https://plus.google.com/hangouts/_/google.com/k8s-federation)<br>
|[Instrumentation](sig-instrumentation/README.md)|* [Piotr Szczesniak](https://github.com/piosz), Google<br>* [Fabian Reinartz](https://github.com/fabxc), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/sig-instrumentation)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation)|* [Thursdays at 16:30 UTC (weekly)](https://zoom.us/j/5342565819)<br>
|[Network](sig-network/README.md)|* [Tim Hockin](https://github.com/thockin), Google<br>* [Dan Williams](https://github.com/dcbw), Red Hat<br>* [Casey Davenport](https://github.com/caseydavenport), Tigera<br>|* [Slack](https://kubernetes.slack.com/messages/sig-network)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-network)|* [Tuesdays at 21:00 UTC (weekly)](https://zoom.us/j/5806599998)<br>
|[Node](sig-node/README.md)|* [Dawn Chen](https://github.com/dchen1107), Google<br>* [Derek Carr](https://github.com/derekwaynecarr), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-node)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-node)|* [Tuesdays at 17:00 UTC (weekly)](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0)<br>
|[On Premise](sig-on-premise/README.md)|* [Joseph Jacks](https://github.com/josephjacks), Apprenda<br>* [Tomasz Napierala](https://github.com/zen), Mirantis<br>|* [Slack](https://kubernetes.slack.com/messages/sig-onprem)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem)|* [Wednesdays at 16:00 UTC (weekly)](https://zoom.us/my/k8s.sig.onprem)<br>
|[OpenStack](sig-openstack/README.md)|* [Ihor Dvoretskyi](https://github.com/idvoretskyi), Mirantis<br>* [Steve Gordon](https://github.com/xsgordon), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-openstack)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)|* [Wednesdays at 15:00 UTC (biweekly)](https://zoom.us/j/417251241)<br>
|[Product Management](sig-product-management/README.md)|* [Aparna Sinha](https://github.com/apsinha), Google<br>* [Ihor Dvoretskyi](https://github.com/idvoretskyi), Mirantis<br>* [Caleb Miles](https://github.com/calebamiles), CoreOS<br>|* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-pm)|* [Tuesdays at 15:00 UTC (biweekly)](https://zoom.us/j/845373595)<br>
|[Scalability](sig-scalability/README.md)|* [Daniel Smith](https://github.com/lavalamp), Google<br>* [Bob Wise](https://github.com/countspongebob), Samsung SDS<br>* [Joe Beda](https://github.com/jbeda), Heptio<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scalability)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)|* [Thursdays at 16:00 UTC (weekly)](https://zoom.us/j/989573207)<br>
|[Scheduling](sig-scheduling/README.md)|* [David Oppenheimer](https://github.com/davidopp), Google<br>* [Timothy St. Clair](https://github.com/timothysc), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)|* [Mondays at 20:00 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)<br>* [Wednesdays at 07:30 UTC (biweekly)](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)<br>
|[Service Catalog](sig-service-catalog/README.md)|* [Paul Morie](https://github.com/pmorie), Red Hat<br>* [Aaron Schlesinger](https://github.com/arschles), Microsoft<br>* [Ville Aikas](https://github.com/vaikas-google), Google<br>* [Doug Davis](https://github.com/duglin), IBM<br>|* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)|* [Mondays at 20:00 UTC (weekly)](https://zoom.us/j/7201225346)<br>
|[Storage](sig-storage/README.md)|* [Saad Ali](https://github.com/saad-ali), Google<br>* [Bradley Childs](https://github.com/childsb), Red Hat<br>|* [Slack](https://kubernetes.slack.com/messages/sig-storage)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)|* [Thursdays at 16:00 UTC (biweekly)](https://zoom.us/j/614261834)<br>
|[Testing](sig-testing/README.md)|* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS<br>* [Erick Feja](https://github.com/fejta), Google<br>* [Timothy St. Clair](https://github.com/timothysc), Heptio<br>|* [Slack](https://kubernetes.slack.com/messages/sig-testing)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-testing)|* [Tuesdays at 20:00 UTC (weekly)](https://zoom.us/j/2419653117)<br>
|[UI](sig-ui/README.md)|* [Dan Romlein](https://github.com/romlein), Apprenda<br>* [Piotr Bryk](https://github.com/bryk), Google<br>|* [Slack](https://kubernetes.slack.com/messages/sig-ui)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)|* [Wednesdays at 14:00 UTC (weekly)](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)<br>
|[Windows](sig-windows/README.md)|* [Michael Michael](https://github.com/michmike77), Apprenda<br>|* [Slack](https://kubernetes.slack.com/messages/sig-windows)<br>* [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-windows)|* [Tuesdays at 16:30 UTC (weekly)](https://zoom.us/my/sigwindows)<br>
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:57

View File

@ -1,22 +1,30 @@
# SIG Network
<!---
This is an autogenerated file!
A Special Interest Group for networking in Kubernetes.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# Network SIG
Covers networking in Kubernetes.
## Meetings
* [Tuesdays at 21:00 UTC](https://zoom.us/j/5806599998) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=21:00&tz=UTC).
* Meetings: Every other Thursday @ 14:00 Pacific time
* [SIG Network Calendar](https://calendar.google.com/calendar/embed?src=ODhmZTFsM3FmbjJiNnIxMWs4dW01YW03NmNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ)
* Zoom Link: [https://zoom.us/j/5806599998](https://zoom.us/j/5806599998)
* [Agenda and Minutes](https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit)
* Recorded meetings are on the [SIG Network YouTube channel](https://www.youtube.com/playlist?list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb)
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit).
## Google Group / Mailing List
## Leads
* [Tim Hockin](https://github.com/thockin), Google
* [Dan Williams](https://github.com/dcbw), Red Hat
* [Casey Davenport](https://github.com/caseydavenport), Tigera
Join the [SIG network mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-network)
Most discussion happens on the Google Group and the weekly meetings help more quickly resolve issues
that come up in PRs or on the group.
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-network)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-network)
<!-- BEGIN CUSTOM CONTENT -->
## Areas of Responsibility
SIG Network is responsible for the following Kubernetes subsystems:
@ -35,9 +43,6 @@ SIG Network is responsible for a number of issues and PRs. A summary can be foun
## Documents
* [2017 Planning](https://docs.google.com/document/d/1fBxC36UCBnqY_w3m3TjdnXFsIT--GS6HmKb5o0nhkTk/edit#)
<!-- END CUSTOM CONTENT -->
## Organizers:
* Casey Davenport <casey@tigera.io>, Tigera
* Dan Williams <dcbw@redhat.com>, Red Hat
* Tim Hockin <thockin@google.com>, Google
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,9 +1,29 @@
# SIG Node
<!---
This is an autogenerated file!
A Special Interest Group focused on topics related to the Kubernetes node, such as the Kubelet and
container runtime. It is an open and active community, and we always welcome new additions!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## Goals:
To understand how this file is generated, see generator/README.md.
-->
# Node SIG
## Meetings
* [Tuesdays at 17:00 UTC](https://plus.google.com/hangouts/_/google.com/sig-node-meetup?authuser=0) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=17:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing).
## Leads
* [Dawn Chen](https://github.com/dchen1107), Google
* [Derek Carr](https://github.com/derekwaynecarr), Red Hat
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-node)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-node)
<!-- BEGIN CUSTOM CONTENT -->
## Goals
Topics include, but are not limited to:
@ -20,42 +40,6 @@ Topics include, but are not limited to:
* ...
We also work closely with [sig-storage](../sig-storage) and [sig-networking](../sig-networking). As you can see, this is a very cross-functional team!
<!-- END CUSTOM CONTENT -->
## Contact us:
* via [Slack](https://kubernetes.slack.com/messages/sig-node/) (new users can register [here](http://slack.k8s.io))
* via [Google Groups](https://groups.google.com/forum/#!forum/kubernetes-sig-node)
## GitHub Aliases:
* sig-node-api-reviews - For @mentions on PRs that affect the Kubelet API, or node-specific parts of the core API
* sig-node-bugs - For @mentions on `kind/bug` issues
* sig-node-feature-requests - For @mentions on feature requests, and `kind/feature` issues, and [feature tracking](https://github.com/kubernetes/features)
* sig-node-pr-reviews - For @mentions on PRs that affect the Kubelet or other node level components
* sig-node-proposals - For @mentions on node related [proposals](../contributors/design-proposals)
* sig-node-test-failures - For @mentions on test failure issues that might be related to a node component
## Meetings:
### SIG Node Weekly
* We meet weekly on Tuesdays at 10:00AM PST (UTC-8)
* Hangouts Link: https://plus.google.com/hangouts/_/google.com/sig-node-meetup (It may take a minute to join)
* [Meeting Notes](https://docs.google.com/document/d/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing)
### Resource Management Working Group
The resource management working group is a cross-team effort with sig-scheduling with a focus on
improving Kubernetes resource management.
* The working group meets Tuesdays at 11:00AM PST (UTC-8)
* Zoom Link: https://zoom.us/j/4799874685
* [Agenda doc](https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU/edit#)
* [Meeting Recordings](https://www.youtube.com/playlist?list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG)
## Team:
* Lead: [Dawn Chen](https://github.com/dchen1107) <dawnchen@google.com>, Google
* Lead: [Derek Carr](https://github.com/derekwaynecarr) <decarr@redhat.com>, Red Hat
* Reviewers: See [OWNERS_ALIASES#sig-node-reviewers](https://github.com/kubernetes/kubernetes/blob/master/OWNERS_ALIASES)
* And too many regular contributors to list here...
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,21 +1,40 @@
# SIG On-Prem
<!---
This is an autogenerated file!
This is the wiki page of the Kubernetes SIG On-Prem: a special interest group
that brings together member of Kubernetes community interested in running
Kubernetes on premise, on bare metal or more generally beyond cloud
providers.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
We use **sig-onprem** label to track on premise efforts in PRs and issues:
To understand how this file is generated, see generator/README.md.
-->
# On Premise SIG
[Issues](https://github.com/kubernetes/kubernetes/issues?utf8=%E2%9C%93&q=is%3Aopen%20label%3Asig%2Fonprem%20is%3Aissue%20)
[Pull Requests](https://github.com/kubernetes/kubernetes/pulls?q=is%3Aopen%20is%3Apr%20label%3Asig%2Fonprem)
Brings together member of Kubernetes community interested in running Kubernetes on premise, on bare metal or more generally beyond cloud providers.
**Leads:** Joseph Jacks (@josephjacks) and Tomasz Napierala (@zen)
## Meetings
* [Wednesdays at 16:00 UTC](https://zoom.us/my/k8s.sig.onprem) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
**Slack Channel:** [#sig-onprem](https://kubernetes.slack.com/messages/sig-onprem/). [Archive](http://kubernetes.slackarchive.io/sig-onprem/)
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#).
**Mailing List:** [kubernetes-sig-on-prem](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem)
## Leads
* [Joseph Jacks](https://github.com/josephjacks), Apprenda
* [Tomasz Napierala](https://github.com/zen), Mirantis
**Effort tracking document** [On-Prem related projects](https://docs.google.com/spreadsheets/d/1Ca9ZpGXM4PfycYv0Foi7Y4vmN4KVXrGYcJipbH8_xLY/edit#gid=0)
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-onprem)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-on-prem)
**Meetings:** Every second Wednesday at 0900 PST (12 AM ET / 6 PM CET) - [Connect using Zoom](https://zoom.us/my/k8s.sig.onprem), [Agenda/Notes](https://docs.google.com/document/d/1AHF1a8ni7iMOpUgDMcPKrLQCML5EMZUAwP4rro3P6sk/edit#)
## GitHub Teams
* [@onprem-misc](https://github.com/kubernetes/teams/onprem-misc)
* [@onprem-test-failures](https://github.com/kubernetes/teams/onprem-test-failures)
* [@onprem-bugs](https://github.com/kubernetes/teams/onprem-bugs)
* [@onprem-feature-requests](https://github.com/kubernetes/teams/onprem-feature-requests)
* [@onprem-proposals](https://github.com/kubernetes/teams/onprem-proposals)
* [@onprem-pr-reviews](https://github.com/kubernetes/teams/onprem-pr-reviews)
* [@onprem-api-reviews](https://github.com/kubernetes/teams/onprem-api-reviews)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,60 +1,40 @@
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# OpenStack SIG
This is the community page of the Kubernetes OpenStack SIG: a special
interest group coordinating the cross-community efforts of the OpenStack
and Kubernetes communities. This includes OpenStack-related contributions
to Kubernetes projects with OpenStack as:
* a deployment platform for Kubernetes,
* a service provider for Kubernetes,
* a collection of applications to run on Kubernetes.
Coordinates the cross-community efforts of the OpenStack and Kubernetes communities. This includes OpenStack-related contributions to Kubernetes projects with OpenStack as: a deployment platform for Kubernetes; a service provider for Kubernetes; a collection of applications to run on Kubernetes.
## Meetings
* [Wednesdays at 15:00 UTC](https://zoom.us/j/417251241) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
Meetings are held every second Wednesday at 1500 UTC. To check the date and
agenda for the next meeting refer to the
[Kubernetes-SIG-OpenStack Working Doc](https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f).
Meeting reminders are also sent to the [kubernetes-sig-openstack](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)
list. Meetings are held on [Zoom](https://zoom.us) in the room at
[https://zoom.us/j/417251241](https://zoom.us/j/417251241).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1iAQ3LSF_Ky6uZdFtEZPD_8i6HXeFxIeW4XtGcUJtPyU/edit?usp=sharing_eixpa_nl&ts=588b986f).
## Leads
* [Ihor Dvoretskyi](https://github.com/idvoretskyi), Mirantis
* [Steve Gordon](https://github.com/xsgordon), Red Hat
Steve Gordon (@xsgordon) and Ihor Dvoretskyi (@idvoretskyi)
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-openstack)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)
## Slack Channel
[#sig-openstack](https://kubernetes.slack.com/messages/sig-openstack/). [Archive](http://kubernetes.slackarchive.io/sig-openstack/)
## GitHub Teams
* [@sig-openstack-misc](https://github.com/kubernetes/teams/sig-openstack-misc)
* [@sig-openstack-test-failures](https://github.com/kubernetes/teams/sig-openstack-test-failures)
* [@sig-openstack-bugs](https://github.com/kubernetes/teams/sig-openstack-bugs)
* [@sig-openstack-feature-requests](https://github.com/kubernetes/teams/sig-openstack-feature-requests)
* [@sig-openstack-proposals](https://github.com/kubernetes/teams/sig-openstack-proposals)
* [@sig-openstack-pr-reviews](https://github.com/kubernetes/teams/sig-openstack-pr-reviews)
* [@sig-openstack-api-reviews](https://github.com/kubernetes/teams/sig-openstack-api-reviews)
## Mailing Lists
<!-- BEGIN CUSTOM CONTENT -->
The OpenStack SIG has a number of mailing lists, most activities are
co-ordinated via the general discussion list with the remainder used for
following Github notifications where the SIG is tagged in a comment.
<!-- END CUSTOM CONTENT -->
The general discussion regarding the SIG occurs on the [kubernetes-sig-openstack](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack)
mailing list.
## GitHub Teams
There are a number of GitHub teams set up that can be tagged in an issue or PR
to bring them to the attention of the team. These notifications are also sent
to the mailing list attached to each GitHub team for archival purposes. It is
not intended that discussion occur on these lists directly.
| Name | Archival List |
|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
|@kubernetes/sig-openstack-api-reviews | [kubernetes-sig-openstack-api-reviews](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-api-reviews) |
|@kubernetes/sig-openstack-bugs | [kubernetes-sig-openstack-bugs](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-bugs) |
|@kubernetes/sig-openstack-feature-requests| [kubernetes-sig-openstack-feature-requests](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-feature-requests) |
|@kubernetes/sig-openstack-proposals | [kubernetes-sig-openstack-proposals](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-proposals) |
|@kubernetes/sig-openstack-pr-reviews | [kubernetes-sig-openstack-pr-reviews](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-pr-reviews) |
|@kubernetes/sig-openstack-misc | [kubernetes-sig-openstack-misc](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-misc) |
|@kubernetes/sig-openstack-test-failures | [kubernetes-sig-openstack-test-failures](https://groups.google.com/forum/#!forum/kubernetes-sig-openstack-test-failures) |
## Issues and Bugs
Relevant [Issues](https://github.com/kubernetes/kubernetes/issues?q=is%3Aopen%20label%3Asig%2Fopenstack%20is%3Aissue)
and [Pull Requests](https://github.com/kubernetes/kubernetes/pulls?q=is%3Aopen%20is%3Apr%20label%3Asig%2Fopenstack)
are tagged with the **sig/openstack** label.
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,16 +1,34 @@
## The Kubernetes PM Group
<!---
This is an autogenerated file!
### Focus
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
The Kubernetes PM Group focuses on aspects of product management, such as the qualification and successful management of user requests, and aspects of project and program management such as the continued improvement of the processes used by the Kubernetes community to maintain the Kubernetes Project itself.
Besides helping to discover both what to build and how to build it, the PM Group also helps to try and keep the wheels on this spaceship we are all building together; bringing together people who think about Kubernetes as both a vibrant community of humans and technical program is another primary focus of this group.
Members of the Kubernetes PM Group can assume [certain additional](https://github.com/kubernetes/community/blob/master/project-managers/README.md) responsibilities to help maintain the Kubernetes Project itself.
To understand how this file is generated, see generator/README.md.
-->
# Product Management SIG
Focuses on aspects of product management, such as the qualification and successful management of user requests, and aspects of project and program management such as the continued improvement of the processes used by the Kubernetes community to maintain the Kubernetes Project itself.
Besides helping to discover both what to build and how to build it, the PM Group also helps to try and keep the wheels on this spaceship we are all building together; bringing together people who think about Kubernetes as both a vibrant community of humans and technical program is another primary focus of this group.
Members of the Kubernetes PM Group can assume certain additional responsibilities to help maintain the Kubernetes Project itself.
It is also important to remember that the role of managing an open source project is very new and largely unscoped for a project as large as Kubernetes; we are learning too and we are excited to learn how we can best serve the community of users and contributors.
### Common activities
## Meetings
* [Tuesdays at 15:00 UTC](https://zoom.us/j/845373595) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=15:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing).
## Leads
* [Aparna Sinha](https://github.com/apsinha), Google
* [Ihor Dvoretskyi](https://github.com/idvoretskyi), Mirantis
* [Caleb Miles](https://github.com/calebamiles), CoreOS
## Contact
* [Slack](https://kubernetes.slack.com/messages/kubernetes-pm)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-pm)
<!-- 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
- Supporting collaboration across the community by working to improve the communication of roadmap and workload of other [Special Interest Groups](https://github.com/kubernetes/community#special-interest-groups-sig-and-working-groups)
- Supporting the continued effort to improve the stability and extensibility of Kubernetes Project
@ -20,18 +38,6 @@ It is also important to remember that the role of managing an open source projec
- Coordinating project wide policy changes for Kubernetes and the Kubernetes Incubator
- Onboarding large groups of corporate contributors and welcoming them into the Kubernetes Community
- Whatever is needed to help make the project go!
<!-- END CUSTOM CONTENT -->
### Contact us
- via [Slack](https://kubernetes.slack.com/messages/kubernetes-pm/)
- via [Google Groups](https://groups.google.com/forum/#!forum/kubernetes-pm)
### Regular Meetings
Every second Tuesday, 8:00 AM PT/4:00 PM UTC
- [Zoom link](https://zoom.us/j/845373595)
- [Meeting Notes](https://docs.google.com/document/d/1YqIpyjz4mV1jjvzhLx9JYy8LAduedzaoBMjpUKGUJQo/edit?usp=sharing)
### Leaders
- Aparna Sinha apsinha@google.com, Google
- Ihor Dvoretskyi ihor@dvoretskyi.com, Mirantis
- Caleb Miles caleb.miles@coreos.com, CoreOS
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,34 +1,32 @@
# SIG Scalability
<!---
This is an autogenerated file!
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# Scalability SIG
Responsible for answering scalability related questions such as:
What size clusters do we think that we should support with Kubernetes in the short to
medium term? How performant do we think that the control system should be at scale?
What resource overhead should the Kubernetes control system reasonably consume?
For more details about our objectives please review [Scaling And Performance Goals](goals.md)
## Organizers
- Bob Wise (@countspongebob), Samsung-CNCT
- Joe Beda (@jbeda), Heptio
What size clusters do we think that we should support with Kubernetes in the short to medium term? How performant do we think that the control system should be at scale? What resource overhead should the Kubernetes control system reasonably consume?
For more details about our objectives please review our [Scaling And Performance Goals](https://github.com/kubernetes/community/blob/master/sig-scalability/goals.md)
## Meetings
* [Thursdays at 16:00 UTC](https://zoom.us/j/989573207) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
- **Every Thursday at 9am pacific.**
- Contact Joe or Bob for invite.
- [Zoom link](https://zoom.us/j/989573207)
- [Agenda items](https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web)
Meeting notes and Agenda can be found [here](https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web).
## Slack / Google Groups
- [Slack: #sig-scale](https://kubernetes.slack.com/messages/sig-scale/).
- [Slack Archive](http://kubernetes.slackarchive.io/sig-scale/)
## Leads
* [Daniel Smith](https://github.com/lavalamp), Google
* [Bob Wise](https://github.com/countspongebob), Samsung SDS
* [Joe Beda](https://github.com/jbeda), Heptio
- [kubernetes-sig-scale](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)
## Docs
- [Extending SLO definitions](extending_slo.md)
- [Scaling And Performance Goals](goals.md)
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-scalability)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-scale)
<!-- BEGIN CUSTOM CONTENT -->
## Scalability SLOs
We officially support two different SLOs:
@ -44,3 +42,6 @@ This should be valid on appropriate hardware up to a 5000 node cluster with 30 p
For more details how do we measure those, you can look at: http://blog.kubernetes.io/2015_09_01_archive.html
We are working on refining existing SLOs and defining more for other areas of the system.
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,20 +1,30 @@
# sig-scheduling
<!---
This is an autogenerated file!
## Organizers
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# Scheduling SIG
- [David Oppenheimer](https://github.com/davidopp) / Google
- [Tim St. Clair](https://github.com/timothysc) / RedHat
## Meetings
* [Mondays at 20:00 UTC](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
* [Wednesdays at 07:30 UTC](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=07:30&tz=UTC).
- [Meeting agenda](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit)
Add your topics here. This doc lists regular meeting times and contact details
for joining the video conference. _NOTE: Since meetings are occasionally
canceled due to lack of content, if you have topics to discuss please also
write a message to the list._
- [Meeting link](https://zoom.us/zoomconference?m=rN2RrBUYxXgXY4EMiWWgQP6Vslgcsn86)
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit).
## Communication
## Leads
* [David Oppenheimer](https://github.com/davidopp), Google
* [Timothy St. Clair](https://github.com/timothysc), Red Hat
- [Slack](https://kubernetes.slack.com/messages/sig-scheduling) ([archive](http://kubernetes.slackarchive.io/sig-scheduling))
- [Google Group](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-scheduling)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,19 +1,32 @@
# SIG Service Catalog
<!---
This is an autogenerated file!
**Leads:** Paul Morie (@pmorie, Red Hat), Aaron Schlesinger (@arschles, Microsoft), Ville Aikas (@vaikas-google, Google), Doug Davis (@duglin, IBM)
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
**Slack Channel:** [#sig-service-catalog](https://kubernetes.slack.com/messages/sig-service-catalog/). [Archive](http://kubernetes.slackarchive.io/sig-service-catalog/)
To understand how this file is generated, see generator/README.md.
-->
# Service Catalog SIG
**Mailing List:** [kubernetes-sig-service-catalog](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)
To develop a Kubernetes API for the CNCF service broker and Kubernetes broker implementation.
**Meetings:** [Mondays, 4pm Eastern / 1pm Pacific time](https://zoom.us/j/7201225346)
## Meetings
* [Mondays at 20:00 UTC](https://zoom.us/j/7201225346) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
[**Meeting Agenda**](http://goo.gl/A0m24V)
Meeting notes and Agenda can be found [here](http://goo.gl/A0m24V).
[**Meeting Video Playlist**](https://goo.gl/ZmLNX9)
## Leads
* [Paul Morie](https://github.com/pmorie), Red Hat
* [Aaron Schlesinger](https://github.com/arschles), Microsoft
* [Ville Aikas](https://github.com/vaikas-google), Google
* [Doug Davis](https://github.com/duglin), IBM
### SIG Mission
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-service-catalog)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog)
Mission: to develop a Kubernetes API for the CNCF service broker and Kubernetes broker implementation.
<!-- BEGIN CUSTOM CONTENT -->
Incubator repo at [https://github.com/kubernetes-incubator/service-catalog](https://github.com/kubernetes-incubator/service-catalog).
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,41 +1,30 @@
The Kubernetes Storage Special-Interest-Group (SIG) is a working group within the Kubernetes contributor community interested in storage and volume plugins.
<!---
This is an autogenerated file!
### Meeting
We hold a public meeting every two weeks, on Thursdays at 9 AM (PST).
* The meeting is held on Zoom: https://zoom.us/j/614261834
* Agenda and any notes from each meeting are captured in [this document](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
* Contact saadali@google.com to be added to the calendar invite.
* Recordings of past meetings: https://www.youtube.com/playlist?list=PLb1_clREIGYVaqvKaUsVyXxjfcSQDBnmB
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
### Contributing
Interested in contributing to storage features in Kubernetes? [Please read our guide for new contributors](https://github.com/kubernetes/community/blob/master/sig-storage/contributing.md)
To understand how this file is generated, see generator/README.md.
-->
# Storage SIG
### Links
* Public Slack Channel: https://kubernetes.slack.com/messages/sig-storage/details/
* Get invite to join here: http://slack.k8s.io/
* Google Groups
* General storage SIG related discussions.
* [kubernetes-sig-storage](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)
* Archive of Github team notifications:
* [kubernetes-sig-storage-api-reviews](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-api-reviews)
* [kubernetes-sig-storage-bugs](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-bugs)
* [kubernetes-sig-storage-feature-requests](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-feature-requests)
* [kubernetes-sig-storage-misc](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-misc)
* [kubernetes-sig-storage-pr-reviews](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-pr-reviews)
* [kubernetes-sig-storage-proposals](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-proposals)
* [kubernetes-sig-storage-test-failures](https://groups.google.com/forum/#!forum/kubernetes-sig-storage-test-failures)
* Github Teams - These are the teams that should be mentioned on Github PRs and Issues:
* [kubernetes-sig-storage-api-reviews](https://github.com/orgs/kubernetes/teams/sig-storage-api-reviews)
* [kubernetes-sig-storage-bugs](https://github.com/orgs/kubernetes/teams/sig-storage-bugs)
* [kubernetes-sig-storage-feature-requests](https://github.com/orgs/kubernetes/teams/sig-storage-feature-requests)
* [kubernetes-sig-storage-misc](https://github.com/orgs/kubernetes/teams/sig-storage-misc)
* [kubernetes-sig-storage-pr-reviews](https://github.com/orgs/kubernetes/teams/sig-storage-pr-reviews)
* [kubernetes-sig-storage-proposals](https://github.com/orgs/kubernetes/teams/sig-storage-proposals)
* [kubernetes-sig-storage-test-failures](https://github.com/orgs/kubernetes/teams/sig-storage-test-failures)
* Github Issues
* [link](https://github.com/kubernetes/kubernetes/issues?q=is%3Aopen+is%3Aissue+label%3Asig%2Fstorage)
* Documentation for currently supported volume plugins: http://kubernetes.io/docs/user-guide/volumes/
* Code
* [Volume plugins](https://github.com/kubernetes/kubernetes/tree/master/pkg/volume)
* [Volume controllers](https://github.com/kubernetes/kubernetes/tree/master/pkg/controller/volume/)
* [Kubelet volume manager](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/volumemanager/)
Covers storage and volume plugins.
## Meetings
* [Thursdays at 16:00 UTC](https://zoom.us/j/614261834) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing).
## Leads
* [Saad Ali](https://github.com/saad-ali), Google
* [Bradley Childs](https://github.com/childsb), Red Hat
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-storage)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-storage)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,45 +1,31 @@
# sig-testing
<!---
This is an autogenerated file!
The Kubernetes Testing SIG (sig-testing) is a working group within the Kubernetes contributor community interested in how we can most effectively test Kubernetes. We're interested specifically in making it easier for the community to run tests and contribute test results, to ensure Kubernetes is stable across a variety of cluster configurations and cloud providers.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
## video conference
To understand how this file is generated, see generator/README.md.
-->
# Testing SIG
We meet weekly on Tuesdays at 1:00pm PDT (20:00 UTC) at [this zoom room](https://zoom.us/j/2419653117)
Interested in how we can most effectively test Kubernetes. We're interested specifically in making it easier for the community to run tests and contribute test results, to ensure Kubernetes is stable across a variety of cluster configurations and cloud providers.
## agenda
## Meetings
* [Tuesdays at 20:00 UTC](https://zoom.us/j/2419653117) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=20:00&tz=UTC).
We use [a public google doc](https://docs.google.com/document/d/1z8MQpr_jTwhmjLMUaqQyBk1EYG_Y_3D4y4YdMJ7V1Kk) to track proposed agenda items, as well as take notes during meetings.
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1z8MQpr_jTwhmjLMUaqQyBk1EYG_Y_3D4y4YdMJ7V1Kk).
The agenda is open for comment. Please contact the organizers listed below if you'd like to propose a topic. Typically in the absence of anything formal we poll attendees for topics, and discuss tactical work.
## Leads
* [Aaron Crickenberger](https://github.com/spiffxp), Samsung SDS
* [Erick Feja](https://github.com/fejta), Google
* [Timothy St. Clair](https://github.com/timothysc), Heptio
## slack
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-testing)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-testing)
[#sig-testing](https://kubernetes.slack.com/messages/sig-testing/) on kubernetes.slack.com
Signup for access at http://slack.kubernetes.io/
<!-- BEGIN CUSTOM CONTENT -->
## github
<!-- END CUSTOM CONTENT -->
We use the following GitHub teams to notify SIG members of particular issues or PR's of interest:
- [@kubernetes/sig-testing-api-reviews](https://github.com/orgs/kubernetes/teams/sig-testing-api-reviews)
- [@kubernetes/sig-testing-bugs](https://github.com/orgs/kubernetes/teams/sig-testing-bugs)
- [@kubernetes/sig-testing-feature-requests](https://github.com/orgs/kubernetes/teams/sig-testing-feature-requests)
- [@kubernetes/sig-testing-misc](https://github.com/orgs/kubernetes/teams/sig-testing-misc)
- [@kubernetes/sig-testing-pr-reviews](https://github.com/orgs/kubernetes/teams/sig-testing-pr-reviews)
- [@kubernetes/sig-testing-proposals](https://github.com/orgs/kubernetes/teams/sig-testing-proposals)
- [@kubernetes/sig-testing-test-failures](https://github.com/orgs/kubernetes/teams/sig-testing-test-failures)
Note, you will need to be a member of the kubernetes GitHub organization to see these teams. The [membership requirements](https://github.com/kubernetes/community/blob/master/community-membership.md#member) are still being fleshed out. In the meantime, if you would like to be added to any of these teams, please contact the organizers listed below.
We use the `sig/testing` label to identify issues that have mentioned any of the above teams
- [issues with `sig/testing` label applied](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3Asig%2Ftesting)
- [PRs with `sig/testing` label applied](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+label%3Asig%2Ftesting)
## google group
https://groups.google.com/forum/#!forum/kubernetes-sig-testing (FWIW this doesn't see a lot of traffic, come find us in slack!)
## organizers
- [Aaron Crickenberger, Samsung SDS](https://github.com/spiffxp), email: spiffxp@gmail.com
- [Erick Fejta, Google](https://github.com/fejta), email: fejta@google.com
- [Timothy St. Clair, Heptio](https://github.com/timothysc), email: tstclair@heptio.com
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,19 +1,30 @@
# SIG UI
All things Kubernetes UI related.
<!---
This is an autogenerated file!
Efforts are centered around [Kubernetes Dashboard](https://github.com/kubernetes/dashboard): a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# UI SIG
## Leads:
* Piotr Bryk (@bryk, _Google_) and Dan Romlein (@danielromlein, _Apprenda_)
## Meetings:
* Wednesdays 4PM CEST
* [Google Group / mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)
* [Meeting Notes](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing)
* [Calendar](https://calendar.google.com/calendar/embed?src=google.com_52lm43hc2kur57dgkibltqc6kc%40group.calendar.google.com&ctz=Europe/Warsaw)
* [Zoom Video Call](https://zoom.us/j/863303289)
Covers all things UI related. Efforts are centered around Kubernetes Dashboard: a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.
## Slack:
* [#sig-ui](https://kubernetes.slack.com/messages/sig-ui/)
* [Archive](http://kubernetes.slackarchive.io/sig-ui/)
## Meetings
* [Wednesdays at 14:00 UTC](https://groups.google.com/forum/#!forum/kubernetes-sig-ui) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=14:00&tz=UTC).
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing).
## Leads
* [Dan Romlein](https://github.com/romlein), Apprenda
* [Piotr Bryk](https://github.com/bryk), Google
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-ui)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-ui)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56

View File

@ -1,19 +1,29 @@
# SIG Windows
<!---
This is an autogenerated file!
A special interest group for bringing Kubernetes support to Windows.
Please do not edit this file directly, but instead make changes to the
sigs.yaml file in the project root.
To understand how this file is generated, see generator/README.md.
-->
# Windows SIG
Focuses on bringing Kubernetes support to Windows.
## Meetings
* Bi-weekly: Tuesday 12:30 PM EST (9:30 AM PST)
* Zoom link: [https://zoom.us/my/sigwindows](https://zoom.us/my/sigwindows)
* To get an invite to the meeting, first join the Google group https://groups.google.com/forum/#!forum/kubernetes-sig-windows, and also ask the SIG Lead for the current invitation
* [Tuesdays at 16:30 UTC](https://zoom.us/my/sigwindows) (weekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=16:30&tz=UTC).
## History
* Recorded Meetings Playlist on Youtube: https://www.youtube.com/playlist?list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4&jct=LZ9EIvD4DGrhr2h4r0ItaBmco7gTgw
* Meeting Notes: https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431).
## Get Involved
* Find us on Slack at https://kubernetes.slack.com/messages/sig-windows
* Find us on Google groups https://groups.google.com/forum/#!forum/kubernetes-sig-windows
* Slack History is archived at http://kubernetes.slackarchive.io/sig-windows/
* **Give it a try** as demonstrated at Google Cloud Next '17 https://github.com/apprenda/kubernetes-ovn-heterogeneous-cluster
## Leads
* [Michael Michael](https://github.com/michmike77), Apprenda
## Contact
* [Slack](https://kubernetes.slack.com/messages/sig-windows)
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-windows)
<!-- BEGIN CUSTOM CONTENT -->
<!-- END CUSTOM CONTENT -->
Last generated: Wed Jun 7 2017 14:27:56