From c5036fc5ca9b6d5eefb70aaaf1f6a5c48ca45dd6 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Thu, 26 Mar 2020 15:02:20 +0800 Subject: [PATCH 01/24] add roles.md --- ROLES.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ROLES.md diff --git a/ROLES.md b/ROLES.md new file mode 100644 index 000000000..e2231143f --- /dev/null +++ b/ROLES.md @@ -0,0 +1,40 @@ +# KubeSphere Community Roles + +This document defines a set of roles for the community individuals to join. and describes the requirements, responsibilities and privileges of each role to join or stay in. + +## Contributor + +You need to satisfy the following requirements to become a contributor. + +- Anyone who has at least one non-trivial PR merged into any project under [KubeSphere organization](https://github.com/kubesphere) becomes a contributor. + +You are also encouraged to help the community in the following ways since it is important for you to become a KubeSphere member. + +- Answer questions from the community users in GitHub issues, forum or any communication channels. +- Help test the project or report bugs. +- Write blogs or technical documents including source code analysis to help users better understand and use KubeSphere. +- Help improve KubeSphere user guide. + +## Member + +You need to have notable contribution to the project to become a member of KubeSphere community. + +- Active contribution to the project. +- Nominated by the current member of the project and approved by the lead of the project. +- Help review PR from other contributors. + +## Owner / Lead + +A lead is also the member of the project who is an experienced and active reviewer of the project. + +- Significant contribution to the project. +- Domain expert of any area of the project. +- Nominated by the current member and approved by TOC. + +As a lead, you have the following responsibilities. + +- Review PR from other contributors. +- Approve PR +- Triage issues, set labels on issues. +- Manage code repository and related resources. +- Run SIG and working group. \ No newline at end of file From 4325b86a0c0aa8ba8a4a55cec1d4b0c8488ea218 Mon Sep 17 00:00:00 2001 From: runzexia Date: Fri, 27 Mar 2020 16:41:09 +0800 Subject: [PATCH 02/24] add kubesphere jenkins plugin docs Signed-off-by: runzexia --- .../sig-devops/jenkins-plugin.md | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md diff --git a/developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md b/developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md new file mode 100644 index 000000000..9f09c0ddd --- /dev/null +++ b/developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md @@ -0,0 +1,64 @@ +# KubeSphere Jenkins Plugin + +As we all know,KubeSphere uses Jenkins as the CI / CD engine by default. +Using Jenkins is like building Lego bricks. It is a combination of Jenkins plugins. +KubeSphere also has its own Jenkins Plugin to extend the capabilities of the CI / CD engine. +At present, we will use a Jenkins Plugin to complete multiple extension functions (the traditional method may build multiple Plugins). +This is because each version of KubeSphere is bundled with a specific version of Plugin, +so there will be no conflict between plugins. Using this method also makes it easier to install and maintain plugins. +The plugin is currently maintained in [Jenkins github org](https://github.com/jenkinsci/kubesphere-extension-plugin). + +## Main functions + +Next we will explain the several functions that the plugin currently provides. + +### Custom ContainerFilter + +[ContainerFilter](https://jenkins.io/doc/developer/extensions/blueocean-rest-impl/) is an ExtensionPoint of Jenkins BlueOcean Plugin. + +KubeSphere extends this extension point to implement a specific filter in Jenkins to filter the BlueOcean API's response. + + +### KubeSphere ApiToken Authenticator + +[BasicHeaderAuthenticator](https://jenkins.io/doc/developer/extensions/jenkins-core/#basicheaderauthenticator) is an ExtensionPoint of Jenkins Core. + +This extension point allows us to implement our own authentication logic, not just using user systems such as ldap. + +When a user accesses the DevOps part of the KubeSphere interface, the user calls Jenkins' API (for example, triggering a build). +At this point, KubeSphere needs a way to access Jenkins as a user. + +This extension implements such functionality. When accessing the Jenkins API, users can use KubeSphere's API token for authentication. + + +### KubeSphere Notification + +KubeSphereNotification implements multiple extension points within the Jenkins Core for event notification. + +Both notification methods and event types are extensible. +Currently we have implemented a Webhook notification method, with the following event types: + +```markdown +- jenkins.job.started (Events are triggered when the pipeline started) +- jenkins.job.completed (Events are triggered when the pipeline completed) +- jenkins.job.finalized (Events are triggered when the pipeline finalized) +- jenkins.job.input.started (Events are triggered when the pipeline input step started) +- jenkins.job.input.proceeded (Events are triggered when the pipeline input step proceeded) +- jenkins.job.input.aborted (Events are triggered when the pipeline input step aborted) +``` + +For more detailed information we recommend you read the documentation of the plugin. + +## Configure the plugin + +Currently, the two most popular Jenkins plugin configuration methods are [Groovy Script](https://wiki.jenkins.io/display/JENKINS/Post-initialization+script) and +[CasC Plugin](https://github.com/jenkinsci/configuration-as-code-plugin). +We recommend use CasC to configure plugins. Therefore, the configuration method of CasC is implemented in our plugins. +Detailed information can refer to the documentation of the plugin. + +## Plugin release + +The way plugins are published is no different from regular Jenkins plugins. +You can read the official Jenkins plugin [release documentation](https://jenkins.io/doc/developer/publishing/releasing/) to publish KubeSphere Jenkins plugin. + + From b72b3bedc720b84c1ad652ae7d91e3af15fcfb8d Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Tue, 31 Mar 2020 11:17:29 +0800 Subject: [PATCH 03/24] Add sigs --- TOC.md | 2 +- sigs.md | 28 ++++++++++++++++++++-------- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/TOC.md b/TOC.md index eaf0544c0..ca9389c82 100644 --- a/TOC.md +++ b/TOC.md @@ -26,4 +26,4 @@ Avatar | Name | GitHub Account ## Meetings -The KubeSphere technical committee meets bi-weekly on every other Tuesday mornings. The meeting notes are open to public. +The KubeSphere technical committee meets bi-weekly on every other Tuesday mornings. The [meeting notes](https://docs.google.com/document/d/1O8YQYKynTVOs9AMoaBRBT1mdUsxtLKAer9pTwjlrod0/edit#) are open to public. diff --git a/sigs.md b/sigs.md index 74a9c60e8..cf3a32b2e 100644 --- a/sigs.md +++ b/sigs.md @@ -1,6 +1,6 @@ # KubeSphere Special Interest Groups -Most community activities are organized into a variety of Special Interest Group (SIGs). +Most community activities are organized into a variety of Special Interest Group (SIG). ## Why Special Interest Groups @@ -22,7 +22,7 @@ Leads are responsible for running a SIG. Running the group involves a few activi ### Be Open -The community design process is done in the open. SIGs should communicate primarily through the public tools, through design documents in the SIG’s folder, through GitHub issues, and GitHub PRs. Avoid private emails or messages when possible. +The community design process is done in open way. SIGs should communicate primarily through the public tools, through design documents in the SIG’s folder, through GitHub issues, and GitHub PRs. Avoid private emails or messages when possible. ### Make Decisions @@ -30,10 +30,22 @@ In general, SIGs operate in a highly cooperative environment. The members of a S ## SIGs -The current SIGs are: +The SIGs at present are: -| Group | Lead | Name | Design Docs | Slack Channel | To do (GitHub Issues) | Description -|-------|-------------|-------|---------------|--------------|-------------------- | ----- -| Observability | | [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Tasks & Issues](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | - -> Please add your information in the table above. +| Group | Lead | Design Docs | Slack Channel | Meeting Notes | Description | +|-------|-------------|-------|---------------|--------------|--------------------|-----| +| Apps | [Hongliang Wang](https://github.com/hlwanghl) | [Design documentation](./contribution/design/sig-observability) | [#apps](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App charts for the built-in App Store | +| App Store | [Zhengyi Lai](https://github.com/zheng1) | [Design documentation](./contribution/design/sig-observability) | [#appstore](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App Store, App template management | +| Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#architecture](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | +| Console | [Lu Liu](https://github.com/leoendless) | [Design documentation](./contribution/design/sig-observability) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | +| DevOps | [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | +| Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [Design documentation](./contribution/design/sig-observability) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | +| Installation | [Feng Guo](https://github.com/pixiake) | [Design documentation](./contribution/design/sig-observability) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | +| Microservice management| [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | +| Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | +| Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [Design documentation](./contribution/design/sig-observability) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | +| Network | [Zhengyi Lai](https://github.com/zheng1) | [Design documentation](./contribution/design/sig-observability) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | +| Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | +| Release | [Calvin Yu](https://github.com/calvinyv) | [Design documentation](./contribution/design/sig-observability) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | +| Storage | [Xin Wang](https://github.com/wnxn) | [Design documentation](./contribution/design/sig-observability) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | +| Testing | [Yaping Liu](https://github.com/liuyp2018) | [Design documentation](./contribution/design/sig-observability) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | From 7d340d4566f17f20458efdc3724c67a10f1410d4 Mon Sep 17 00:00:00 2001 From: rayzhou2017 Date: Tue, 31 Mar 2020 11:23:53 +0800 Subject: [PATCH 04/24] Update sigs.md --- sigs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigs.md b/sigs.md index cf3a32b2e..76470621a 100644 --- a/sigs.md +++ b/sigs.md @@ -33,7 +33,7 @@ In general, SIGs operate in a highly cooperative environment. The members of a S The SIGs at present are: | Group | Lead | Design Docs | Slack Channel | Meeting Notes | Description | -|-------|-------------|-------|---------------|--------------|--------------------|-----| +|-------|-------------|-------|---------------|--------------|--------------------| | Apps | [Hongliang Wang](https://github.com/hlwanghl) | [Design documentation](./contribution/design/sig-observability) | [#apps](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App charts for the built-in App Store | | App Store | [Zhengyi Lai](https://github.com/zheng1) | [Design documentation](./contribution/design/sig-observability) | [#appstore](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App Store, App template management | | Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#architecture](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | From 9e93525b0d83e3713e32a8513d5e4478a5d80fbb Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Tue, 31 Mar 2020 14:32:51 +0800 Subject: [PATCH 05/24] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 720f3b7f4..75c95ede1 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Before you start contributing, read our [Code of Conduct](code-of-conduct.md) an ## Special Interest Group -Through SIGs, the KubeSphere community members collaborate and contribute to topics of long-term interest for KubeSphere and its community. Generally, SIGs can be either vertically focused on particular components and features, or span multiple functional and technical domains. There are some SIGs in KubeSphere community. Please read [KubeSphere Special Interest Group](sigs.md) for details. +Through SIGs, the KubeSphere community members collaborate and contribute to topics of long-term interest for KubeSphere and its community. Generally, SIGs can be either vertically focused on particular components and features, or span multiple functional and technical domains. There are some SIGs in KubeSphere community. Please read [KubeSphere Special Interest Group](sigs.md) for details. Each SIG may have several subprojects to work on. For instance, SIG observability has four subprojects, i.e., Logging, Monitoring, Alerting and Notification. ## Working Group -Working Group (WG) facilitates discussions and work on short-lived, concrete topics that either result from the work of SIG groups or the community members initiate directly. Each SIG can propose a new WG based on the detailed requirements and issues. +Working Group (WG) facilitates discussions and work on cross-SIGs. For example, we may create a WG for the design of multi-tenancy monitoring across the SIG observability and the SIG multi-tenancy. Each SIG can propose a new WG based on the detailed requirements and issues. From 22092d8942f1af1dbe8fa587e6cd671f59740359 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 09:48:25 +0800 Subject: [PATCH 06/24] Update sigs --- sig-apps/OWNERS | 0 sig-apps/README.md | 13 +++++++++++++ sigs.md | 34 +++++++++++++++++----------------- 3 files changed, 30 insertions(+), 17 deletions(-) create mode 100644 sig-apps/OWNERS create mode 100644 sig-apps/README.md diff --git a/sig-apps/OWNERS b/sig-apps/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-apps/README.md b/sig-apps/README.md new file mode 100644 index 000000000..2f6e5885a --- /dev/null +++ b/sig-apps/README.md @@ -0,0 +1,13 @@ +# Apps Special Interest Group + +The Apps SIG is to develop most common applications to use in [App Store](../sig-appstore) of KubeSphere. The app is based on Helm and the code repo is [helm-charts](https://github.com/kubesphere/helm-charts/). + +## Members + +- Hongliang Wang ([@hlwanghl]((https://github.com/hlwanghl))), Lead + +## Meetings + +## Contact + +- Slack [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) \ No newline at end of file diff --git a/sigs.md b/sigs.md index 76470621a..76a36798c 100644 --- a/sigs.md +++ b/sigs.md @@ -32,20 +32,20 @@ In general, SIGs operate in a highly cooperative environment. The members of a S The SIGs at present are: -| Group | Lead | Design Docs | Slack Channel | Meeting Notes | Description | -|-------|-------------|-------|---------------|--------------|--------------------| -| Apps | [Hongliang Wang](https://github.com/hlwanghl) | [Design documentation](./contribution/design/sig-observability) | [#apps](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App charts for the built-in App Store | -| App Store | [Zhengyi Lai](https://github.com/zheng1) | [Design documentation](./contribution/design/sig-observability) | [#appstore](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App Store, App template management | -| Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#architecture](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | -| Console | [Lu Liu](https://github.com/leoendless) | [Design documentation](./contribution/design/sig-observability) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | -| DevOps | [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | -| Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [Design documentation](./contribution/design/sig-observability) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | -| Installation | [Feng Guo](https://github.com/pixiake) | [Design documentation](./contribution/design/sig-observability) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | -| Microservice management| [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | -| Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [Design documentation](./contribution/design/sig-observability) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | -| Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [Design documentation](./contribution/design/sig-observability) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | -| Network | [Zhengyi Lai](https://github.com/zheng1) | [Design documentation](./contribution/design/sig-observability) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | -| Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [Design documentation](./contribution/design/sig-observability) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | -| Release | [Calvin Yu](https://github.com/calvinyv) | [Design documentation](./contribution/design/sig-observability) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | -| Storage | [Xin Wang](https://github.com/wnxn) | [Design documentation](./contribution/design/sig-observability) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | -| Testing | [Yaping Liu](https://github.com/liuyp2018) | [Design documentation](./contribution/design/sig-observability) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | +| Group | Lead | Slack Channel | Meeting Notes | Description | +|-------|-------------|-------|--------------|--------------------| +| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/archives/C01163F4B54) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | +| App Store | [Zhengyi Lai](https://github.com/zheng1) | [#appstore](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App Store, App template management | +| Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | +| Console | [Lu Liu](https://github.com/leoendless) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | +| DevOps | [Jeff Zhang](https://github.com/zryfish) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | +| Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | +| Installation | [Feng Guo](https://github.com/pixiake) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | +| Microservice management| [Jeff Zhang](https://github.com/zryfish) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | +| Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | +| Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | +| Network | [Zhengyi Lai](https://github.com/zheng1) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | +| Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | +| Release | [Calvin Yu](https://github.com/calvinyv) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | +| Storage | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | +| Testing | [Yaping Liu](https://github.com/liuyp2018) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | From e3bc57da8437b10f4c2ccbe38a3ceb9bc32dc26d Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 10:22:35 +0800 Subject: [PATCH 07/24] Add sig-appstore --- sig-apps/README.md | 4 +++- sig-appstore/OWNERS | 0 sig-appstore/README.md | 15 +++++++++++++++ sigs.md | 4 ++-- 4 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 sig-appstore/OWNERS create mode 100644 sig-appstore/README.md diff --git a/sig-apps/README.md b/sig-apps/README.md index 2f6e5885a..a42ba7afc 100644 --- a/sig-apps/README.md +++ b/sig-apps/README.md @@ -4,10 +4,12 @@ The Apps SIG is to develop most common applications to use in [App Store](../sig ## Members -- Hongliang Wang ([@hlwanghl]((https://github.com/hlwanghl))), Lead +- Hongliang Wang ([@hlwanghl](https://github.com/hlwanghl)), Lead ## Meetings +[Meeting notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) + ## Contact - Slack [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) \ No newline at end of file diff --git a/sig-appstore/OWNERS b/sig-appstore/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-appstore/README.md b/sig-appstore/README.md new file mode 100644 index 000000000..8bddbfea3 --- /dev/null +++ b/sig-appstore/README.md @@ -0,0 +1,15 @@ +# App Store Special Interest Group + +The App Store SIG is to develop an application store platform running on KubeSphere. It is based on the open source [OpenPitrix](https://github.com/openpitrix/openpitrix) project. + +## Members + +- Zhengyi Lai ([@zheng1](https://github.com/zheng1)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) + +## Contact + +- Slack [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) \ No newline at end of file diff --git a/sigs.md b/sigs.md index 76a36798c..8458ceb17 100644 --- a/sigs.md +++ b/sigs.md @@ -34,8 +34,8 @@ The SIGs at present are: | Group | Lead | Slack Channel | Meeting Notes | Description | |-------|-------------|-------|--------------|--------------------| -| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/archives/C01163F4B54) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | -| App Store | [Zhengyi Lai](https://github.com/zheng1) | [#appstore](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | App Store, App template management | +| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | +| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) | App Store, App template management | | Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | | Console | [Lu Liu](https://github.com/leoendless) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | | DevOps | [Jeff Zhang](https://github.com/zryfish) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | From 577a71e992665447708409945994d18d844bbc2c Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 11:10:29 +0800 Subject: [PATCH 08/24] Add sig-architecture --- sig-architecture/OWNERS | 0 sig-architecture/README.md | 18 ++++++++++++++++++ sigs.md | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 sig-architecture/OWNERS create mode 100644 sig-architecture/README.md diff --git a/sig-architecture/OWNERS b/sig-architecture/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-architecture/README.md b/sig-architecture/README.md new file mode 100644 index 000000000..700272d3b --- /dev/null +++ b/sig-architecture/README.md @@ -0,0 +1,18 @@ +# Architecture Special Interest Group + +The architecture SIG is to evolve the architecture of KubeSphere. For example, there is going to be a fundamental change in terms of architecture for KubeSphere 4.0. + +## Members + +- Lu Liu ([@leoendless](https://github.com/leoendless)), Lead +- Benjamin Huo ([@benjaminhuo](https://github.com/benjaminhuo)), Lead +- Dan Ma ([@Ma-Dan](https://github.com/Ma-Dan)), Member +- Ray Zhou ([@rayzhou2017](https://github.com/rayzhou2017)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/edit) + +## Contact + +- Slack [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) diff --git a/sigs.md b/sigs.md index 8458ceb17..a8a3263ff 100644 --- a/sigs.md +++ b/sigs.md @@ -36,7 +36,7 @@ The SIGs at present are: |-------|-------------|-------|--------------|--------------------| | [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | | [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) | App Store, App template management | -| Architecture| [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | system architecture | +| [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/edit) | system architecture | | Console | [Lu Liu](https://github.com/leoendless) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | | DevOps | [Jeff Zhang](https://github.com/zryfish) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | | Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | From 188015c5de4fa8a5b9aba7ad8a4c3694ff43013e Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 11:24:58 +0800 Subject: [PATCH 09/24] Add sig-console --- sig-console/OWNERS | 0 sig-console/README.md | 15 +++++++++++++++ sigs.md | 4 ++-- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 sig-console/OWNERS create mode 100644 sig-console/README.md diff --git a/sig-console/OWNERS b/sig-console/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-console/README.md b/sig-console/README.md new file mode 100644 index 000000000..783bd3608 --- /dev/null +++ b/sig-console/README.md @@ -0,0 +1,15 @@ +# Console Special Interest Group + +The console SIG is the community place to develop the frontend of KubeSphere with the code repository at [KubeSphere console](https://github.com/kubesphere/console). + +## Members + +- Lu Liu ([@leoendless](https://github.com/leoendless)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/edit#heading=h.sr4je66q3vk1) + +## Contact + +- Slack [#sig-console](https://kubesphere.slack.com/messages/sig-console) diff --git a/sigs.md b/sigs.md index a8a3263ff..d6c1fe792 100644 --- a/sigs.md +++ b/sigs.md @@ -35,9 +35,9 @@ The SIGs at present are: | Group | Lead | Slack Channel | Meeting Notes | Description | |-------|-------------|-------|--------------|--------------------| | [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | -| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) | App Store, App template management | +| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) | App Store, App template management | | [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/edit) | system architecture | -| Console | [Lu Liu](https://github.com/leoendless) | [#console](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | dashboard | +| [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/edit#heading=h.sr4je66q3vk1) | dashboard | | DevOps | [Jeff Zhang](https://github.com/zryfish) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | | Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | | Installation | [Feng Guo](https://github.com/pixiake) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | From dc04e307cf4239a9f8a622ef92ebabdf756c4df2 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 13:28:53 +0800 Subject: [PATCH 10/24] Add sig-devops --- sig-apps/README.md | 2 +- sig-appstore/README.md | 2 +- sig-architecture/README.md | 2 +- sig-console/README.md | 2 +- sig-devops/OWNERS | 0 sig-devops/README.md | 16 ++++++++++++++++ sigs.md | 10 +++++----- 7 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 sig-devops/OWNERS create mode 100644 sig-devops/README.md diff --git a/sig-apps/README.md b/sig-apps/README.md index a42ba7afc..085d588f7 100644 --- a/sig-apps/README.md +++ b/sig-apps/README.md @@ -8,7 +8,7 @@ The Apps SIG is to develop most common applications to use in [App Store](../sig ## Meetings -[Meeting notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) +[Meeting notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) ## Contact diff --git a/sig-appstore/README.md b/sig-appstore/README.md index 8bddbfea3..6bdab434b 100644 --- a/sig-appstore/README.md +++ b/sig-appstore/README.md @@ -8,7 +8,7 @@ The App Store SIG is to develop an application store platform running on KubeSph ## Meetings -[Meeting notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) +[Meeting notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI) ## Contact diff --git a/sig-architecture/README.md b/sig-architecture/README.md index 700272d3b..ba8a4c0f0 100644 --- a/sig-architecture/README.md +++ b/sig-architecture/README.md @@ -11,7 +11,7 @@ The architecture SIG is to evolve the architecture of KubeSphere. For example, t ## Meetings -[Meeting notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/edit) +[Meeting notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ) ## Contact diff --git a/sig-console/README.md b/sig-console/README.md index 783bd3608..fea76557c 100644 --- a/sig-console/README.md +++ b/sig-console/README.md @@ -8,7 +8,7 @@ The console SIG is the community place to develop the frontend of KubeSphere wit ## Meetings -[Meeting notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/edit#heading=h.sr4je66q3vk1) +[Meeting notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0) ## Contact diff --git a/sig-devops/OWNERS b/sig-devops/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-devops/README.md b/sig-devops/README.md new file mode 100644 index 000000000..0d7465ef4 --- /dev/null +++ b/sig-devops/README.md @@ -0,0 +1,16 @@ +# DevOps Special Interest Group + +The DevOps SIG is to design and implement the DevOps functionalities including pipeline, S2I and B2I running on KubeSphere. + +## Members + +- Jeff Zhang ([@zryfish](https://github.com/zryfish)), Lead +- Shaowen Chen ([@shaowenchen](https://github.com/shaowenchen)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro) + +## Contact + +- Slack [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) \ No newline at end of file diff --git a/sigs.md b/sigs.md index d6c1fe792..33ff2ed89 100644 --- a/sigs.md +++ b/sigs.md @@ -34,11 +34,11 @@ The SIGs at present are: | Group | Lead | Slack Channel | Meeting Notes | Description | |-------|-------------|-------|--------------|--------------------| -| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://drive.google.com/open?id=1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | -| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/edit) | App Store, App template management | -| [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/edit) | system architecture | -| [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/edit#heading=h.sr4je66q3vk1) | dashboard | -| DevOps | [Jeff Zhang](https://github.com/zryfish) | [#devops](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | pipeline, s2i, b2i, image registry | +| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | +| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI) | App Store, App template management | +| [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ) | system architecture | +| [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0) | dashboard | +| [DevOps](./sig-devops) | [Jeff Zhang](https://github.com/zryfish) | [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) | [Notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro) | pipeline, s2i, b2i, image registry | | Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | | Installation | [Feng Guo](https://github.com/pixiake) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | | Microservice management| [Jeff Zhang](https://github.com/zryfish) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | From 884b569d4c0ccb4ab21d4b0bbdfec1ccf7eee7d7 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 13:44:03 +0800 Subject: [PATCH 11/24] Add sig-docs --- sig-docs/OWNERS | 0 sig-docs/README.md | 15 +++++++++++++++ sigs.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 sig-docs/OWNERS create mode 100644 sig-docs/README.md diff --git a/sig-docs/OWNERS b/sig-docs/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-docs/README.md b/sig-docs/README.md new file mode 100644 index 000000000..23c8ae856 --- /dev/null +++ b/sig-docs/README.md @@ -0,0 +1,15 @@ +# Docs Special Interest Group + +The Docs SIG is to develop and maintain the documents related to KubeSphere including website, user guide, forum and so on. + +## Members + +- Pengfei Zhou ([@FeynmanZhou](https://github.com/FeynmanZhou)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0) + +## Contact + +- Slack [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) \ No newline at end of file diff --git a/sigs.md b/sigs.md index 33ff2ed89..e24685213 100644 --- a/sigs.md +++ b/sigs.md @@ -39,7 +39,7 @@ The SIGs at present are: | [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ) | system architecture | | [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0) | dashboard | | [DevOps](./sig-devops) | [Jeff Zhang](https://github.com/zryfish) | [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) | [Notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro) | pipeline, s2i, b2i, image registry | -| Docs | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#docs](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | User docs, kubesphere.io | +| [Docs](./sig-docs) | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) | [Notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0) | User docs, kubesphere.io | | Installation | [Feng Guo](https://github.com/pixiake) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | | Microservice management| [Jeff Zhang](https://github.com/zryfish) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | | Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | From 32da7e398b9f475e4d547cccb513c1443ab28e4e Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 13:55:42 +0800 Subject: [PATCH 12/24] add sig-installation --- sig-apps/README.md | 2 +- sig-appstore/README.md | 2 +- sig-architecture/README.md | 2 +- sig-console/README.md | 2 +- sig-devops/README.md | 2 +- sig-docs/README.md | 2 +- sig-installation/OWNERS | 0 sig-installation/README.md | 16 ++++++++++++++++ sigs.md | 14 +++++++------- 9 files changed, 29 insertions(+), 13 deletions(-) create mode 100644 sig-installation/OWNERS create mode 100644 sig-installation/README.md diff --git a/sig-apps/README.md b/sig-apps/README.md index 085d588f7..2aa75c1fb 100644 --- a/sig-apps/README.md +++ b/sig-apps/README.md @@ -8,7 +8,7 @@ The Apps SIG is to develop most common applications to use in [App Store](../sig ## Meetings -[Meeting notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) +[Meeting notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU/) ## Contact diff --git a/sig-appstore/README.md b/sig-appstore/README.md index 6bdab434b..4fcbf49a4 100644 --- a/sig-appstore/README.md +++ b/sig-appstore/README.md @@ -8,7 +8,7 @@ The App Store SIG is to develop an application store platform running on KubeSph ## Meetings -[Meeting notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI) +[Meeting notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/) ## Contact diff --git a/sig-architecture/README.md b/sig-architecture/README.md index ba8a4c0f0..59b07898f 100644 --- a/sig-architecture/README.md +++ b/sig-architecture/README.md @@ -11,7 +11,7 @@ The architecture SIG is to evolve the architecture of KubeSphere. For example, t ## Meetings -[Meeting notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ) +[Meeting notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/) ## Contact diff --git a/sig-console/README.md b/sig-console/README.md index fea76557c..b544a7c98 100644 --- a/sig-console/README.md +++ b/sig-console/README.md @@ -8,7 +8,7 @@ The console SIG is the community place to develop the frontend of KubeSphere wit ## Meetings -[Meeting notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0) +[Meeting notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/) ## Contact diff --git a/sig-devops/README.md b/sig-devops/README.md index 0d7465ef4..6d13841da 100644 --- a/sig-devops/README.md +++ b/sig-devops/README.md @@ -9,7 +9,7 @@ The DevOps SIG is to design and implement the DevOps functionalities including p ## Meetings -[Meeting notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro) +[Meeting notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro/) ## Contact diff --git a/sig-docs/README.md b/sig-docs/README.md index 23c8ae856..6647bb569 100644 --- a/sig-docs/README.md +++ b/sig-docs/README.md @@ -8,7 +8,7 @@ The Docs SIG is to develop and maintain the documents related to KubeSphere incl ## Meetings -[Meeting notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0) +[Meeting notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0/) ## Contact diff --git a/sig-installation/OWNERS b/sig-installation/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-installation/README.md b/sig-installation/README.md new file mode 100644 index 000000000..413996b26 --- /dev/null +++ b/sig-installation/README.md @@ -0,0 +1,16 @@ +# Installation Special Interest Group + +The Installation SIG is to develop KubeSphere installer for a variety of environment and options such as all-in-one, multi-node, install on existing K8s cluster. The code repository is hosted at [ks-installer](https://github.com/kubesphere/ks-installer). + +## Members + +- Feng Guo ([@pixiake](https://github.com/pixiake)), Lead +- Lin Li ([@Forest-L](https://github.com/Forest-L)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1sXMKViZ5cchbaBajRZiJsaSdMAQ1GpmDKCcq3UwT3Vg/) + +## Contact + +- Slack [#sig-installation](https://kubesphere.slack.com/messages/sig-installation) \ No newline at end of file diff --git a/sigs.md b/sigs.md index e24685213..99623bfb7 100644 --- a/sigs.md +++ b/sigs.md @@ -34,13 +34,13 @@ The SIGs at present are: | Group | Lead | Slack Channel | Meeting Notes | Description | |-------|-------------|-------|--------------|--------------------| -| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU) | App charts for the built-in App Store | -| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI) | App Store, App template management | -| [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ) | system architecture | -| [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0) | dashboard | -| [DevOps](./sig-devops) | [Jeff Zhang](https://github.com/zryfish) | [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) | [Notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro) | pipeline, s2i, b2i, image registry | -| [Docs](./sig-docs) | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) | [Notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0) | User docs, kubesphere.io | -| Installation | [Feng Guo](https://github.com/pixiake) | [#installation](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | KubeSphere installer and deployment | +| [Apps](./sig-apps/) | [Hongliang Wang](https://github.com/hlwanghl) | [#sig-apps](https://kubesphere.slack.com/messages/sig-apps) | [Notes](https://docs.google.com/document/d/1nRAK2U9flkz-8z7bT2-T_0VneW3w1fx1fJtB5Bu3JyU/) | App charts for the built-in App Store | +| [App Store](./sig-appstore) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-appstore](https://kubesphere.slack.com/messages/sig-appstore) | [Notes](https://docs.google.com/document/d/1FYxeQOiwN3jL6EPeIA71iB3gXZfNf-PhSufVaywFbxI/) | App Store, App template management | +| [Architecture](./sig-architecture) | [Lu Liu](https://github.com/leoendless), [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-architecture](https://kubesphere.slack.com/messages/sig-architecture) | [Notes](https://docs.google.com/document/d/1lqL0c6SpxLxRbwVk870-9HDeGIwVodSRJV-Uh4hPemQ/) | system architecture | +| [Console](./sig-console) | [Lu Liu](https://github.com/leoendless) | [#sig-console](https://kubesphere.slack.com/messages/sig-console) | [Notes](https://docs.google.com/document/d/1a2RHltQm3armW4Jf7m1aYFTjdvlqiuW5hW2-KBeLqi0/) | dashboard | +| [DevOps](./sig-devops) | [Jeff Zhang](https://github.com/zryfish) | [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) | [Notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro/) | pipeline, s2i, b2i, image registry | +| [Docs](./sig-docs) | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) | [Notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0/) | User docs, kubesphere.io | +| [Installation](./sig-installation) | [Feng Guo](https://github.com/pixiake) | [#sig-installation](https://kubesphere.slack.com/messages/sig-installation) | [Notes](https://docs.google.com/document/d/1sXMKViZ5cchbaBajRZiJsaSdMAQ1GpmDKCcq3UwT3Vg/) | KubeSphere installer and deployment | | Microservice management| [Jeff Zhang](https://github.com/zryfish) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | | Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | | Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | From d99842e6decc9f2e91eea4ea917ef1c1d93672d9 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 15:14:39 +0800 Subject: [PATCH 13/24] Add sig-microservice --- sig-microservice/OWNERS | 0 sig-microservice/README.md | 15 +++++++++++++++ sigs.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 sig-microservice/OWNERS create mode 100644 sig-microservice/README.md diff --git a/sig-microservice/OWNERS b/sig-microservice/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-microservice/README.md b/sig-microservice/README.md new file mode 100644 index 000000000..05dbd2fbc --- /dev/null +++ b/sig-microservice/README.md @@ -0,0 +1,15 @@ +# Microservice Special Interest Group + +The Microservice SIG is to design and develop microservice management capabilities for KubeSphere. + +## Members + +- Jeff Zhang ([@zryfish](https://github.com/zryfish)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1eAAbdIxJwFgNjkU9xvQ8SrezW7pHgPryzOAPjZYjvFg/) + +## Contact + +- Slack [#sig-microservice](https://kubesphere.slack.com/messages/sig-microservice) \ No newline at end of file diff --git a/sigs.md b/sigs.md index 99623bfb7..0b7ac95fd 100644 --- a/sigs.md +++ b/sigs.md @@ -41,7 +41,7 @@ The SIGs at present are: | [DevOps](./sig-devops) | [Jeff Zhang](https://github.com/zryfish) | [#sig-devops](https://kubesphere.slack.com/messages/sig-devops) | [Notes](https://docs.google.com/document/d/1ZORl7ZhRlZxKXFle2LGPRJqXzlr6EDhu2A7qzjybfro/) | pipeline, s2i, b2i, image registry | | [Docs](./sig-docs) | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) | [Notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0/) | User docs, kubesphere.io | | [Installation](./sig-installation) | [Feng Guo](https://github.com/pixiake) | [#sig-installation](https://kubesphere.slack.com/messages/sig-installation) | [Notes](https://docs.google.com/document/d/1sXMKViZ5cchbaBajRZiJsaSdMAQ1GpmDKCcq3UwT3Vg/) | KubeSphere installer and deployment | -| Microservice management| [Jeff Zhang](https://github.com/zryfish) | [#microservice](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | architecture, microservice governance | +| [Microservice management](./sig-microservice) | [Jeff Zhang](https://github.com/zryfish) | [#sig-microservice](https://kubesphere.slack.com/messages/sig-microservice) | [Notes](https://docs.google.com/document/d/1eAAbdIxJwFgNjkU9xvQ8SrezW7pHgPryzOAPjZYjvFg/) | architecture, microservice governance | | Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | | Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | | Network | [Zhengyi Lai](https://github.com/zheng1) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | From 33ad74f0c3bf2cb5f2f64fb925b1dcfda930201a Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 15:34:38 +0800 Subject: [PATCH 14/24] add sig-multicluster --- sig-multicluster/OWNERS | 0 sig-multicluster/README.md | 15 +++++++++++++++ sigs.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 sig-multicluster/OWNERS create mode 100644 sig-multicluster/README.md diff --git a/sig-multicluster/OWNERS b/sig-multicluster/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-multicluster/README.md b/sig-multicluster/README.md new file mode 100644 index 000000000..f3d0d67ce --- /dev/null +++ b/sig-multicluster/README.md @@ -0,0 +1,15 @@ +# Multi-cluster Special Interest Group + +The Multi-cluster SIG is to design and develop the management for multiple K8s clusters in KubeSphere. + +## Members + +- Jeff Zhang ([@zryfish](https://github.com/zryfish)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1P0NaJbAYTK4BnMazJcrc4he-sh2YpZNvG1rkPQrNhpY/) + +## Contact + +- Slack [#sig-multicluster](https://kubesphere.slack.com/messages/sig-multicluster) diff --git a/sigs.md b/sigs.md index 0b7ac95fd..01b0351e1 100644 --- a/sigs.md +++ b/sigs.md @@ -42,7 +42,7 @@ The SIGs at present are: | [Docs](./sig-docs) | [Pengfei Zhou](https://github.com/FeynmanZhou) | [#sig-docs](https://kubesphere.slack.com/messages/sig-docs) | [Notes](https://docs.google.com/document/d/1tyB2RDJFmfwFfO2ok9dH7ttZRICDiaogSI12Ajz9CD0/) | User docs, kubesphere.io | | [Installation](./sig-installation) | [Feng Guo](https://github.com/pixiake) | [#sig-installation](https://kubesphere.slack.com/messages/sig-installation) | [Notes](https://docs.google.com/document/d/1sXMKViZ5cchbaBajRZiJsaSdMAQ1GpmDKCcq3UwT3Vg/) | KubeSphere installer and deployment | | [Microservice management](./sig-microservice) | [Jeff Zhang](https://github.com/zryfish) | [#sig-microservice](https://kubesphere.slack.com/messages/sig-microservice) | [Notes](https://docs.google.com/document/d/1eAAbdIxJwFgNjkU9xvQ8SrezW7pHgPryzOAPjZYjvFg/) | architecture, microservice governance | -| Multi-cluster| [Jeff Zhang](https://github.com/zryfish) | [#multicluster](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | multi-cluster management | +| [Multi-cluster](./sig-multicluster) | [Jeff Zhang](https://github.com/zryfish) | [#sig-multicluster](https://kubesphere.slack.com/messages/sig-multicluster) | [Notes](https://docs.google.com/document/d/1P0NaJbAYTK4BnMazJcrc4he-sh2YpZNvG1rkPQrNhpY/) | multi-cluster management | | Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | | Network | [Zhengyi Lai](https://github.com/zheng1) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | | Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | From b44923a6a4ce549ad82848e825463077ce7897e7 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 15:42:46 +0800 Subject: [PATCH 15/24] Add sig-multitenancy --- sig-multitenancy/OWNERS | 0 sig-multitenancy/README.md | 15 +++++++++++++++ sigs.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 sig-multitenancy/OWNERS create mode 100644 sig-multitenancy/README.md diff --git a/sig-multitenancy/OWNERS b/sig-multitenancy/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-multitenancy/README.md b/sig-multitenancy/README.md new file mode 100644 index 000000000..93f7159f8 --- /dev/null +++ b/sig-multitenancy/README.md @@ -0,0 +1,15 @@ +# Multi-tenancy Special Interest Group + +The Multi-tenancy SIG is to design and develop the resource and identity management of KubeSphere in terms of tenancy. + +## Members + +- Hongming Wan ([@wansir]((https://github.com/wansir))), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/1Ewf30_Z6mlIxpJH-qF96c_mx96UaQtLi-fCf6m1r_yg/) + +## Contact + +- Slack [#sig-multitenancy](https://kubesphere.slack.com/messages/sig-multitenancy) diff --git a/sigs.md b/sigs.md index 01b0351e1..f15ad6649 100644 --- a/sigs.md +++ b/sigs.md @@ -43,7 +43,7 @@ The SIGs at present are: | [Installation](./sig-installation) | [Feng Guo](https://github.com/pixiake) | [#sig-installation](https://kubesphere.slack.com/messages/sig-installation) | [Notes](https://docs.google.com/document/d/1sXMKViZ5cchbaBajRZiJsaSdMAQ1GpmDKCcq3UwT3Vg/) | KubeSphere installer and deployment | | [Microservice management](./sig-microservice) | [Jeff Zhang](https://github.com/zryfish) | [#sig-microservice](https://kubesphere.slack.com/messages/sig-microservice) | [Notes](https://docs.google.com/document/d/1eAAbdIxJwFgNjkU9xvQ8SrezW7pHgPryzOAPjZYjvFg/) | architecture, microservice governance | | [Multi-cluster](./sig-multicluster) | [Jeff Zhang](https://github.com/zryfish) | [#sig-multicluster](https://kubesphere.slack.com/messages/sig-multicluster) | [Notes](https://docs.google.com/document/d/1P0NaJbAYTK4BnMazJcrc4he-sh2YpZNvG1rkPQrNhpY/) | multi-cluster management | -| Multi-tenancy| [Hongming Wan](https://github.com/wansir) | [#multitenancy](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | workspace, IAM | +| [Multi-tenancy](./sig-multitenancy) | [Hongming Wan](https://github.com/wansir) | [#sig-multitenancy](https://kubesphere.slack.com/messages/sig-multitenancy) | [Notes](https://docs.google.com/document/d/1Ewf30_Z6mlIxpJH-qF96c_mx96UaQtLi-fCf6m1r_yg/) | workspace, IAM | | Network | [Zhengyi Lai](https://github.com/zheng1) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | | Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | | Release | [Calvin Yu](https://github.com/calvinyv) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | From 2a9351ec70058cd05653c2c1c9e97a498ca91393 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 16:02:41 +0800 Subject: [PATCH 16/24] Add sig-network --- sig-network/OWNERS | 0 sig-network/README.md | 15 +++++++++++++++ sigs.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 sig-network/OWNERS create mode 100644 sig-network/README.md diff --git a/sig-network/OWNERS b/sig-network/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-network/README.md b/sig-network/README.md new file mode 100644 index 000000000..c743cfa47 --- /dev/null +++ b/sig-network/README.md @@ -0,0 +1,15 @@ +# Network Special Interest Group + +The Network SIG is to design and develop network-related capabilities for KubeSphere such as CNI, SDN, the bare metal load balancer [Porter](https://github.com/kubesphere/porter). + +## Members + +- Zhengyi Lai ([@zheng1](https://github.com/zheng1)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) + +## Contact + +- Slack [#sig-network](https://kubesphere.slack.com/messages/sig-network) diff --git a/sigs.md b/sigs.md index f15ad6649..0ed786673 100644 --- a/sigs.md +++ b/sigs.md @@ -44,7 +44,7 @@ The SIGs at present are: | [Microservice management](./sig-microservice) | [Jeff Zhang](https://github.com/zryfish) | [#sig-microservice](https://kubesphere.slack.com/messages/sig-microservice) | [Notes](https://docs.google.com/document/d/1eAAbdIxJwFgNjkU9xvQ8SrezW7pHgPryzOAPjZYjvFg/) | architecture, microservice governance | | [Multi-cluster](./sig-multicluster) | [Jeff Zhang](https://github.com/zryfish) | [#sig-multicluster](https://kubesphere.slack.com/messages/sig-multicluster) | [Notes](https://docs.google.com/document/d/1P0NaJbAYTK4BnMazJcrc4he-sh2YpZNvG1rkPQrNhpY/) | multi-cluster management | | [Multi-tenancy](./sig-multitenancy) | [Hongming Wan](https://github.com/wansir) | [#sig-multitenancy](https://kubesphere.slack.com/messages/sig-multitenancy) | [Notes](https://docs.google.com/document/d/1Ewf30_Z6mlIxpJH-qF96c_mx96UaQtLi-fCf6m1r_yg/) | workspace, IAM | -| Network | [Zhengyi Lai](https://github.com/zheng1) | [#network](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | network policy, CNI plugins, SDN | +| [Network](./sig-network) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-network](https://kubesphere.slack.com/messages/sig-network) | [Notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) | network policy, CNI plugins, SDN | | Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | | Release | [Calvin Yu](https://github.com/calvinyv) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | | Storage | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | From b42fbc9b7c8c6af5135201573a55efe694821180 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 16:12:33 +0800 Subject: [PATCH 17/24] Add sig-observability --- sig-observability/OWNERS | 0 sig-observability/README.md | 16 ++++++++++++++++ sigs.md | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 sig-observability/OWNERS create mode 100644 sig-observability/README.md diff --git a/sig-observability/OWNERS b/sig-observability/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-observability/README.md b/sig-observability/README.md new file mode 100644 index 000000000..2a233fbe7 --- /dev/null +++ b/sig-observability/README.md @@ -0,0 +1,16 @@ +# Observability Special Interest Group + +The Observability SIG is to design and implement the observability features for KubeSphere including monitoring, alerting, notification and logging. + +## Members + +- Benjamin Huo ([@benjaminhuo](https://github.com/benjaminhuo)), Lead +- Dan Ma ([@Ma-Dan](https://github.com/Ma-Dan)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) + +## Contact + +- Slack [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) diff --git a/sigs.md b/sigs.md index 0ed786673..7947354f5 100644 --- a/sigs.md +++ b/sigs.md @@ -45,7 +45,7 @@ The SIGs at present are: | [Multi-cluster](./sig-multicluster) | [Jeff Zhang](https://github.com/zryfish) | [#sig-multicluster](https://kubesphere.slack.com/messages/sig-multicluster) | [Notes](https://docs.google.com/document/d/1P0NaJbAYTK4BnMazJcrc4he-sh2YpZNvG1rkPQrNhpY/) | multi-cluster management | | [Multi-tenancy](./sig-multitenancy) | [Hongming Wan](https://github.com/wansir) | [#sig-multitenancy](https://kubesphere.slack.com/messages/sig-multitenancy) | [Notes](https://docs.google.com/document/d/1Ewf30_Z6mlIxpJH-qF96c_mx96UaQtLi-fCf6m1r_yg/) | workspace, IAM | | [Network](./sig-network) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-network](https://kubesphere.slack.com/messages/sig-network) | [Notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) | network policy, CNI plugins, SDN | -| Observability | [Benjamin Huo](https://github.com/benjaminhuo) | [#observability](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | Logging, Monitoring, Alerting, Notification | +| [Observability](sig-observability) | [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) | [Notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) | Logging, Monitoring, Alerting, Notification | | Release | [Calvin Yu](https://github.com/calvinyv) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | | Storage | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | | Testing | [Yaping Liu](https://github.com/liuyp2018) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | From a856e399edbb06edb2156ae9b4fcc6a6ba0b3a9d Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 16:18:54 +0800 Subject: [PATCH 18/24] Add sig-release --- sig-observability/README.md | 12 ++++++------ sig-release/OWNERS | 0 sig-release/README.md | 16 ++++++++++++++++ sigs.md | 2 +- 4 files changed, 23 insertions(+), 7 deletions(-) create mode 100644 sig-release/OWNERS create mode 100644 sig-release/README.md diff --git a/sig-observability/README.md b/sig-observability/README.md index 2a233fbe7..28d6e85cf 100644 --- a/sig-observability/README.md +++ b/sig-observability/README.md @@ -1,16 +1,16 @@ -# Observability Special Interest Group +# Release Special Interest Group -The Observability SIG is to design and implement the observability features for KubeSphere including monitoring, alerting, notification and logging. +The Release SIG is to make plan and approve the release of each KubeSphere version. ## Members -- Benjamin Huo ([@benjaminhuo](https://github.com/benjaminhuo)), Lead -- Dan Ma ([@Ma-Dan](https://github.com/Ma-Dan)), Member +- Calvin Yu ([@calvinyv](https://github.com/calvinyv)), Lead +- Ray Zhou ([@rayzhou2017](https://github.com/rayzhou2017)), Lead ## Meetings -[Meeting notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) +[Meeting notes](https://docs.google.com/document/d/1IzkvpZlkc_4hKTyvWWyTfLgPFTWGaowOEAfh0li9qZQ/) ## Contact -- Slack [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) +- Slack [#sig-release](https://kubesphere.slack.com/messages/sig-release) diff --git a/sig-release/OWNERS b/sig-release/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-release/README.md b/sig-release/README.md new file mode 100644 index 000000000..2a233fbe7 --- /dev/null +++ b/sig-release/README.md @@ -0,0 +1,16 @@ +# Observability Special Interest Group + +The Observability SIG is to design and implement the observability features for KubeSphere including monitoring, alerting, notification and logging. + +## Members + +- Benjamin Huo ([@benjaminhuo](https://github.com/benjaminhuo)), Lead +- Dan Ma ([@Ma-Dan](https://github.com/Ma-Dan)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) + +## Contact + +- Slack [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) diff --git a/sigs.md b/sigs.md index 7947354f5..2fbd7868c 100644 --- a/sigs.md +++ b/sigs.md @@ -46,6 +46,6 @@ The SIGs at present are: | [Multi-tenancy](./sig-multitenancy) | [Hongming Wan](https://github.com/wansir) | [#sig-multitenancy](https://kubesphere.slack.com/messages/sig-multitenancy) | [Notes](https://docs.google.com/document/d/1Ewf30_Z6mlIxpJH-qF96c_mx96UaQtLi-fCf6m1r_yg/) | workspace, IAM | | [Network](./sig-network) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-network](https://kubesphere.slack.com/messages/sig-network) | [Notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) | network policy, CNI plugins, SDN | | [Observability](sig-observability) | [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) | [Notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) | Logging, Monitoring, Alerting, Notification | -| Release | [Calvin Yu](https://github.com/calvinyv) | [#release](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | release of each version | +| [Release](./sig-release) | [Calvin Yu](https://github.com/calvinyv) | [#sig-release](https://kubesphere.slack.com/messages/sig-release) | [Notes](https://docs.google.com/document/d/1IzkvpZlkc_4hKTyvWWyTfLgPFTWGaowOEAfh0li9qZQ/) | release of each version | | Storage | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | | Testing | [Yaping Liu](https://github.com/liuyp2018) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | From 066c4b94048686b98bfd2e1404e6cdf8e33bf543 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 16:26:14 +0800 Subject: [PATCH 19/24] Add sig-storage --- sig-storage/OWNERS | 0 sig-storage/README.md | 16 ++++++++++++++++ sigs.md | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 sig-storage/OWNERS create mode 100644 sig-storage/README.md diff --git a/sig-storage/OWNERS b/sig-storage/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-storage/README.md b/sig-storage/README.md new file mode 100644 index 000000000..ba138f096 --- /dev/null +++ b/sig-storage/README.md @@ -0,0 +1,16 @@ +# Storage Special Interest Group + +The Storage SIG is to design and implement KubeSphere storage service such as CSI plugins. + +## Members + +- Xin Wang ([@wnxn](https://github.com/wnxn)), Lead +- Min Zhang ([@min-zh](https://github.com/min-zh)), Member + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/171DjRH8CDkubc_fl8tO1tN-kpdPwek-G819FQt6EhV0/) + +## Contact + +- Slack [#sig-storage](https://kubesphere.slack.com/messages/sig-storage) diff --git a/sigs.md b/sigs.md index 2fbd7868c..e389b1657 100644 --- a/sigs.md +++ b/sigs.md @@ -47,5 +47,5 @@ The SIGs at present are: | [Network](./sig-network) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-network](https://kubesphere.slack.com/messages/sig-network) | [Notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) | network policy, CNI plugins, SDN | | [Observability](sig-observability) | [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) | [Notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) | Logging, Monitoring, Alerting, Notification | | [Release](./sig-release) | [Calvin Yu](https://github.com/calvinyv) | [#sig-release](https://kubesphere.slack.com/messages/sig-release) | [Notes](https://docs.google.com/document/d/1IzkvpZlkc_4hKTyvWWyTfLgPFTWGaowOEAfh0li9qZQ/) | release of each version | -| Storage | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | CSI plugins | +| [Storage](./sig-storage) | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/messages/sig-storage) | [Notes](https://docs.google.com/document/d/171DjRH8CDkubc_fl8tO1tN-kpdPwek-G819FQt6EhV0/) | CSI plugins | | Testing | [Yaping Liu](https://github.com/liuyp2018) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | From 8394d145fe070db29a6e003a6872b1c3fff3a244 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Wed, 1 Apr 2020 16:33:14 +0800 Subject: [PATCH 20/24] Add sig-testing --- sig-testing/OWNERS | 0 sig-testing/README.md | 15 +++++++++++++++ sigs.md | 4 ++-- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 sig-testing/OWNERS create mode 100644 sig-testing/README.md diff --git a/sig-testing/OWNERS b/sig-testing/OWNERS new file mode 100644 index 000000000..e69de29bb diff --git a/sig-testing/README.md b/sig-testing/README.md new file mode 100644 index 000000000..b445bb9b2 --- /dev/null +++ b/sig-testing/README.md @@ -0,0 +1,15 @@ +# Testing Special Interest Group + +The Testing SIG is to make plan for testing KubeSphere versions. + +## Members + +- Yaping Liu ([@liuyp2018](https://github.com/liuyp2018)), Lead + +## Meetings + +[Meeting notes](https://docs.google.com/document/d/191w4_ePxBSEklZjKTSiYw7XwDH9_gCIVOt6cKkTvqYc/) + +## Contact + +- Slack [#sig-testing](https://kubesphere.slack.com/messages/sig-testing) diff --git a/sigs.md b/sigs.md index e389b1657..7f6720f8f 100644 --- a/sigs.md +++ b/sigs.md @@ -47,5 +47,5 @@ The SIGs at present are: | [Network](./sig-network) | [Zhengyi Lai](https://github.com/zheng1) | [#sig-network](https://kubesphere.slack.com/messages/sig-network) | [Notes](https://docs.google.com/document/d/12KTd1xBSYPBTbn4WTvN4iTPoDg1skU-bbbcoNt_RAPE/) | network policy, CNI plugins, SDN | | [Observability](sig-observability) | [Benjamin Huo](https://github.com/benjaminhuo) | [#sig-observability](https://kubesphere.slack.com/messages/sig-observability) | [Notes](https://docs.google.com/document/d/18SOB2NRQWS-Qad4oebzIjtQzUG831PFvQtvN5tBwNrM/) | Logging, Monitoring, Alerting, Notification | | [Release](./sig-release) | [Calvin Yu](https://github.com/calvinyv) | [#sig-release](https://kubesphere.slack.com/messages/sig-release) | [Notes](https://docs.google.com/document/d/1IzkvpZlkc_4hKTyvWWyTfLgPFTWGaowOEAfh0li9qZQ/) | release of each version | -| [Storage](./sig-storage) | [Xin Wang](https://github.com/wnxn) | [#storage](https://kubesphere.slack.com/messages/sig-storage) | [Notes](https://docs.google.com/document/d/171DjRH8CDkubc_fl8tO1tN-kpdPwek-G819FQt6EhV0/) | CSI plugins | -| Testing | [Yaping Liu](https://github.com/liuyp2018) | [#testing](https://kubesphere.slack.com/archives/CLHL8R1C7) | [Notes](https://github.com/kubesphere/kubesphere/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fmonitoring+) | test, release | +| [Storage](./sig-storage) | [Xin Wang](https://github.com/wnxn) | [#sig-storage](https://kubesphere.slack.com/messages/sig-storage) | [Notes](https://docs.google.com/document/d/171DjRH8CDkubc_fl8tO1tN-kpdPwek-G819FQt6EhV0/) | CSI plugins | +| [Testing](./sig-testing) | [Yaping Liu](https://github.com/liuyp2018) | [#sig-testing](https://kubesphere.slack.com/messages/sig-testing) | [Notes](https://docs.google.com/document/d/191w4_ePxBSEklZjKTSiYw7XwDH9_gCIVOt6cKkTvqYc/) | test, release | From 33add809e583ce99a34b58d99e44e38188b0cb6c Mon Sep 17 00:00:00 2001 From: leoendless Date: Wed, 1 Apr 2020 16:46:01 +0800 Subject: [PATCH 21/24] Update sig-console members --- sig-console/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sig-console/README.md b/sig-console/README.md index b544a7c98..19b8f0367 100644 --- a/sig-console/README.md +++ b/sig-console/README.md @@ -5,6 +5,8 @@ The console SIG is the community place to develop the frontend of KubeSphere wit ## Members - Lu Liu ([@leoendless](https://github.com/leoendless)), Lead +- Edisonchen ([@justahole](https://github.com/justahole)), Logging, Monitoring & Storage +- wickyang ([liyefox](https://github.com/liyefox)), Network ## Meetings From 558eb2b57fc3b2359f6247c9e46696caec133386 Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Thu, 2 Apr 2020 16:23:50 +0800 Subject: [PATCH 22/24] Re-org file structure, move content to its sig. --- .../concepts-and-designs}/devops-pipeline-overview.md | 2 +- .../concepts-and-designs}/jenkins-plugin.md | 0 .../concepts-and-designs}/s2i_b2i_overview.md | 0 .../concepts-and-designs}/kubesphere-logging.md | 0 .../concepts-and-designs}/kubesphere-monitoring.md | 0 .../development}/kubesphere-logging-devlopment-guide.md | 0 .../development}/kubesphere-monitoring-development-guide.md | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename {developer-guide/concepts-and-designs/sig-devops => sig-devops/concepts-and-designs}/devops-pipeline-overview.md (98%) rename {developer-guide/concepts-and-designs/sig-devops => sig-devops/concepts-and-designs}/jenkins-plugin.md (100%) rename {developer-guide/concepts-and-designs/sig-devops => sig-devops/concepts-and-designs}/s2i_b2i_overview.md (100%) rename {developer-guide/concepts-and-designs/sig-observability => sig-observability/concepts-and-designs}/kubesphere-logging.md (100%) rename {developer-guide/concepts-and-designs/sig-observability => sig-observability/concepts-and-designs}/kubesphere-monitoring.md (100%) rename {developer-guide/development/sig-observability => sig-observability/development}/kubesphere-logging-devlopment-guide.md (100%) rename {developer-guide/development/sig-observability => sig-observability/development}/kubesphere-monitoring-development-guide.md (100%) diff --git a/developer-guide/concepts-and-designs/sig-devops/devops-pipeline-overview.md b/sig-devops/concepts-and-designs/devops-pipeline-overview.md similarity index 98% rename from developer-guide/concepts-and-designs/sig-devops/devops-pipeline-overview.md rename to sig-devops/concepts-and-designs/devops-pipeline-overview.md index c55325987..65ba97eb9 100644 --- a/developer-guide/concepts-and-designs/sig-devops/devops-pipeline-overview.md +++ b/sig-devops/concepts-and-designs/devops-pipeline-overview.md @@ -21,7 +21,7 @@ The KubeSphere DevOps Pipeline API encapsulates the following APIs to provide a KubeSphere apiserver provides multi-tenant API, pipeline API, credential API, code quality analysis API, etc. -![ks-devops-api](../../images/devops-api.png) +![ks-devops-api](../../../images/devops-api.png) ### Multi-tenant isolation diff --git a/developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md b/sig-devops/concepts-and-designs/jenkins-plugin.md similarity index 100% rename from developer-guide/concepts-and-designs/sig-devops/jenkins-plugin.md rename to sig-devops/concepts-and-designs/jenkins-plugin.md diff --git a/developer-guide/concepts-and-designs/sig-devops/s2i_b2i_overview.md b/sig-devops/concepts-and-designs/s2i_b2i_overview.md similarity index 100% rename from developer-guide/concepts-and-designs/sig-devops/s2i_b2i_overview.md rename to sig-devops/concepts-and-designs/s2i_b2i_overview.md diff --git a/developer-guide/concepts-and-designs/sig-observability/kubesphere-logging.md b/sig-observability/concepts-and-designs/kubesphere-logging.md similarity index 100% rename from developer-guide/concepts-and-designs/sig-observability/kubesphere-logging.md rename to sig-observability/concepts-and-designs/kubesphere-logging.md diff --git a/developer-guide/concepts-and-designs/sig-observability/kubesphere-monitoring.md b/sig-observability/concepts-and-designs/kubesphere-monitoring.md similarity index 100% rename from developer-guide/concepts-and-designs/sig-observability/kubesphere-monitoring.md rename to sig-observability/concepts-and-designs/kubesphere-monitoring.md diff --git a/developer-guide/development/sig-observability/kubesphere-logging-devlopment-guide.md b/sig-observability/development/kubesphere-logging-devlopment-guide.md similarity index 100% rename from developer-guide/development/sig-observability/kubesphere-logging-devlopment-guide.md rename to sig-observability/development/kubesphere-logging-devlopment-guide.md diff --git a/developer-guide/development/sig-observability/kubesphere-monitoring-development-guide.md b/sig-observability/development/kubesphere-monitoring-development-guide.md similarity index 100% rename from developer-guide/development/sig-observability/kubesphere-monitoring-development-guide.md rename to sig-observability/development/kubesphere-monitoring-development-guide.md From a73978f2e8213fd072d3af5cc88d36a9809265cd Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Thu, 2 Apr 2020 16:55:02 +0800 Subject: [PATCH 23/24] Fix broken links --- developer-guide/concepts-and-designs/README.md | 16 ++++++++-------- .../devops-pipeline-overview.md | 2 +- .../{s2i_b2i_overview.md => s2i-b2i-overview.md} | 0 3 files changed, 9 insertions(+), 9 deletions(-) rename sig-devops/concepts-and-designs/{s2i_b2i_overview.md => s2i-b2i-overview.md} (100%) diff --git a/developer-guide/concepts-and-designs/README.md b/developer-guide/concepts-and-designs/README.md index f04a38e1e..089f40f83 100644 --- a/developer-guide/concepts-and-designs/README.md +++ b/developer-guide/concepts-and-designs/README.md @@ -8,19 +8,19 @@ Concepts and Designs help you to learn and understand the KubeSphere and the lan ## DevOps -- [KubeSphere DevOps Pipeline Overview](sig-devops/devops-pipeline-overview.md): explains the architecture and key components of KubeSphere pipeline. -- [KubeSphere S2I and B2I overview](sig-devops/s2i_b2i_overview.md): explains the workflow and principle of KubeSphere S2I (Source-to-Image) and B2I (Binary-to-Image). +- [KubeSphere DevOps Pipeline Overview](../../sig-devops/concepts-and-designs/devops-pipeline-overview.md): explains the architecture and key components of KubeSphere pipeline. +- [KubeSphere S2I and B2I overview](../../sig-devops/concepts-and-designs/s2i-b2i-overview.md): explains the workflow and principle of KubeSphere S2I (Source-to-Image) and B2I (Binary-to-Image). ## Observability ### KubeSphere Monitoring -- [Overview](sig-observability/kubesphere-monitoring.md#Overview): explains the architecture and key components behind the monitoring system. -- [Setup](sig-observability/kubesphere-monitoring.md#Setup): introduces manifests related to Prometheus setup. +- [Overview](../../sig-observability/concepts-and-designs/kubesphere-monitoring.md#Overview): explains the architecture and key components behind the monitoring system. +- [Setup](../../sig-observability/concepts-and-designs/kubesphere-monitoring.md#Setup): introduces manifests related to Prometheus setup. ### KubeSphere Logging -- [Overview](sig-observability/kubesphere-logging.md#Overview): explains the architecture and key components behind the logging system. -- [Log Collection and Forward](sig-observability/kubesphere-logging.md#Log-Collection-and-Forward): introduces logging agent and the sidecar-based solution for collecting application logs on disk. -- [Log Store and Management](sig-observability/kubesphere-logging.md#Log-Store-and-Management): introduces long-term log storage and management. -- [Log Search, Export and Visualization](sig-observability/kubesphere-logging.md#Log-Search,-Export-and-Visualization): introduces log query and reporting. +- [Overview](../../sig-observability/concepts-and-designs/kubesphere-logging.md#Overview): explains the architecture and key components behind the logging system. +- [Log Collection and Forward](../../sig-observability/concepts-and-designs/kubesphere-logging.md#Log-Collection-and-Forward): introduces logging agent and the sidecar-based solution for collecting application logs on disk. +- [Log Store and Management](../../sig-observability/concepts-and-designs/kubesphere-logging.md#Log-Store-and-Management): introduces long-term log storage and management. +- [Log Search, Export and Visualization](../../sig-observability/concepts-and-designs/kubesphere-logging.md#Log-Search,-Export-and-Visualization): introduces log query and reporting. diff --git a/sig-devops/concepts-and-designs/devops-pipeline-overview.md b/sig-devops/concepts-and-designs/devops-pipeline-overview.md index 65ba97eb9..c55325987 100644 --- a/sig-devops/concepts-and-designs/devops-pipeline-overview.md +++ b/sig-devops/concepts-and-designs/devops-pipeline-overview.md @@ -21,7 +21,7 @@ The KubeSphere DevOps Pipeline API encapsulates the following APIs to provide a KubeSphere apiserver provides multi-tenant API, pipeline API, credential API, code quality analysis API, etc. -![ks-devops-api](../../../images/devops-api.png) +![ks-devops-api](../../images/devops-api.png) ### Multi-tenant isolation diff --git a/sig-devops/concepts-and-designs/s2i_b2i_overview.md b/sig-devops/concepts-and-designs/s2i-b2i-overview.md similarity index 100% rename from sig-devops/concepts-and-designs/s2i_b2i_overview.md rename to sig-devops/concepts-and-designs/s2i-b2i-overview.md From 1cd5df0847a447fed53df98c170daf0faaf5e11d Mon Sep 17 00:00:00 2001 From: Ray Zhou Date: Thu, 2 Apr 2020 17:04:37 +0800 Subject: [PATCH 24/24] Remove useless folders --- contribution/design/README.md | 3 --- contribution/design/sig-observability/README.md | 3 --- 2 files changed, 6 deletions(-) delete mode 100644 contribution/design/README.md delete mode 100644 contribution/design/sig-observability/README.md diff --git a/contribution/design/README.md b/contribution/design/README.md deleted file mode 100644 index cdd141b67..000000000 --- a/contribution/design/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Design Documentation - -This is the design documentation for each SIG. diff --git a/contribution/design/sig-observability/README.md b/contribution/design/sig-observability/README.md deleted file mode 100644 index 3ae617e28..000000000 --- a/contribution/design/sig-observability/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Design Documentation - -This is the design documentation for observability SIG.