From 6103df1dad7637a9dec710a20799fa969c40b2fc Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Mon, 12 Nov 2018 11:42:46 -0800 Subject: [PATCH 1/6] Create charter.md As per the request, drafted SIG API Machinery charter file. --- sig-api-machinery/charter.md | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 sig-api-machinery/charter.md diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md new file mode 100644 index 00000000000..968c2bc5080 --- /dev/null +++ b/sig-api-machinery/charter.md @@ -0,0 +1,50 @@ +# SIG API Machinery Charter + +This charter is a WIP. + +This charter adheres to the conventions described in the [Kubernetes Charter README] and uses +the Roles and Organization Management outlined in [sig-governance]. + +## Scope + +SIG API Machinery is responsible for the development and enhancement of Kubernetes master node. The scope covers API server, persistence layer (etcd), controller manager, cloud controller manager, CustomResourceDefinition, scheduler and webhooks. + +### In scope + +#### Code, Binaries and Services + +All aspects of API server, API registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, CustomResourceDefinition, webhooks, garbage collection, namespace lifecycle, and client libraries. + +#### Cross-cutting and Externally Facing Processes + +N/A + +### Out of scope + +The contents of individual APIs are owned by SIG Architecture + +## Roles and Organization Management + +This sig follows adheres to the Roles and Organization Management outlined in [sig-governance] +and opts-in to updates and modifications to [sig-governance]. + +### Additional responsibilities of Chairs + +N/A + +### Additional responsibilities of Tech Leads + +N/A + +### Deviations from [sig-governance] + +N/A + +### Subproject Creation + +1. SIG Technical Leads + + +[sig-governance]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md +[sig-subprojects]: https://github.com/kubernetes/community/blob/master/sig-YOURSIG/README.md#subprojects +[Kubernetes Charter README]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md From f3f86d111fe7ceefe078433e378dda0fd92a97a9 Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Mon, 12 Nov 2018 13:07:34 -0800 Subject: [PATCH 2/6] Update charter.md --- sig-api-machinery/charter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md index 968c2bc5080..33d1f2c9edc 100644 --- a/sig-api-machinery/charter.md +++ b/sig-api-machinery/charter.md @@ -42,9 +42,9 @@ N/A ### Subproject Creation -1. SIG Technical Leads - +SIG Auth delegates subproject approval to Technical Leads. See [Subproject creation - Option 1.] +[Subproject creation - Option 1.]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md#subproject-creation [sig-governance]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md [sig-subprojects]: https://github.com/kubernetes/community/blob/master/sig-YOURSIG/README.md#subprojects [Kubernetes Charter README]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md From 6da9a6bd090d4426d8159592703bb31ffa7f4e95 Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Mon, 12 Nov 2018 17:50:14 -0800 Subject: [PATCH 3/6] Update charter.md Removed WIP statement and added "Technical leads seeded by legacy SIG chairs from existing subproject owners" --- sig-api-machinery/charter.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md index 33d1f2c9edc..efebc6d1798 100644 --- a/sig-api-machinery/charter.md +++ b/sig-api-machinery/charter.md @@ -1,7 +1,5 @@ # SIG API Machinery Charter -This charter is a WIP. - This charter adheres to the conventions described in the [Kubernetes Charter README] and uses the Roles and Organization Management outlined in [sig-governance]. @@ -30,7 +28,7 @@ and opts-in to updates and modifications to [sig-governance]. ### Additional responsibilities of Chairs -N/A +Technical leads seeded by legacy SIG chairs from existing subproject owners ### Additional responsibilities of Tech Leads From b7ab6240f369ee5eb1a57f76b21c187052694b8b Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Wed, 14 Nov 2018 11:24:21 -0800 Subject: [PATCH 4/6] Update charter.md Added bullets to scope list. Added 'The informer libraries' to scope. Added 'Client library releases' to ### Cross-cutting and Externally Facing Processes --- sig-api-machinery/charter.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md index efebc6d1798..82473299e59 100644 --- a/sig-api-machinery/charter.md +++ b/sig-api-machinery/charter.md @@ -5,17 +5,32 @@ the Roles and Organization Management outlined in [sig-governance]. ## Scope -SIG API Machinery is responsible for the development and enhancement of Kubernetes master node. The scope covers API server, persistence layer (etcd), controller manager, cloud controller manager, CustomResourceDefinition, scheduler and webhooks. +SIG API Machinery is responsible for the development and enhancement of Kubernetes cluster control plane. The scope covers API server, persistence layer (etcd), controller manager, cloud controller manager, CustomResourceDefinition, scheduler and webhooks. ### In scope #### Code, Binaries and Services -All aspects of API server, API registration and discovery, generic API CRUD semantics, admission control, encoding/decoding, conversion, defaulting, persistence layer (etcd), OpenAPI, CustomResourceDefinition, webhooks, garbage collection, namespace lifecycle, and client libraries. +All aspects of +* API server +* API registration and discovery +* Generic API CRUD semantics +* Admission control +* Encoding/decoding +* Conversion +* Defaulting +* Persistence layer (etcd) +* OpenAPI +* The informer libraries +* CustomResourceDefinition +* Webhooks +* Garbage collection +* Namespace lifecycle +* Client libraries #### Cross-cutting and Externally Facing Processes -N/A +Client library releases ### Out of scope From 64f7327ff41450f312d70eee473485cf17b163cb Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Tue, 20 Nov 2018 18:42:04 -0800 Subject: [PATCH 5/6] Update charter.md Fixed the link to README.md. --- sig-api-machinery/charter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md index 82473299e59..9686c8810bb 100644 --- a/sig-api-machinery/charter.md +++ b/sig-api-machinery/charter.md @@ -55,9 +55,9 @@ N/A ### Subproject Creation -SIG Auth delegates subproject approval to Technical Leads. See [Subproject creation - Option 1.] +SIG delegates subproject approval to Technical Leads. See [Subproject creation - Option 1.] [Subproject creation - Option 1.]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md#subproject-creation [sig-governance]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/sig-governance.md -[sig-subprojects]: https://github.com/kubernetes/community/blob/master/sig-YOURSIG/README.md#subprojects +[sig-subprojects]: https://github.com/kubernetes/community/blob/master/sig-api-machinery/README.md#subprojects [Kubernetes Charter README]: https://github.com/kubernetes/community/blob/master/committee-steering/governance/README.md From cc7f60be1374ca20057c0d19543a524463fe9903 Mon Sep 17 00:00:00 2001 From: maulin9 <42282257+maulin9@users.noreply.github.com> Date: Sat, 24 Nov 2018 10:31:18 -0800 Subject: [PATCH 6/6] Updated charter.md Removed scheduler from the scope as scheduler is the responsibility of SIG Scheduler. --- sig-api-machinery/charter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sig-api-machinery/charter.md b/sig-api-machinery/charter.md index 9686c8810bb..28baf5f0d1d 100644 --- a/sig-api-machinery/charter.md +++ b/sig-api-machinery/charter.md @@ -5,7 +5,7 @@ the Roles and Organization Management outlined in [sig-governance]. ## Scope -SIG API Machinery is responsible for the development and enhancement of Kubernetes cluster control plane. The scope covers API server, persistence layer (etcd), controller manager, cloud controller manager, CustomResourceDefinition, scheduler and webhooks. +SIG API Machinery is responsible for the development and enhancement of Kubernetes cluster control plane. The scope covers API server, persistence layer (etcd), controller manager, cloud controller manager, CustomResourceDefinition and webhooks. ### In scope