Skip to content

Commit

Permalink
Merge pull request #6542 from ahrtr/add_etcd_group_20240303
Browse files Browse the repository at this point in the history
  • Loading branch information
k8s-ci-robot authored Jun 4, 2024
2 parents 86d9aa9 + 45d76d8 commit cb91252
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions groups/groups_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,13 @@ func TestGroupConventions(t *testing.T) {
for _, g := range cfg.Groups {
// groups are easier to reason about if email and name match
expectedEmailId := g.Name + "@kubernetes.io"
// sig-etcd keeps using [email protected], but the name "security"
// has already been used by "[email protected]", so we use
// the name "etcd-security". Refer to discussion in
// https://github.com/kubernetes/k8s.io/pull/6542.
if g.Name == "etcd-security" {
expectedEmailId = "[email protected]"
}
if g.EmailId != expectedEmailId {
t.Errorf("group '%s': expected email '%s', got '%s'", g.Name, expectedEmailId, g.EmailId)
}
Expand Down
3 changes: 3 additions & 0 deletions groups/restrictions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ restrictions:
- "^[email protected]$"
- "^[email protected]$"
- "^[email protected]$"
- path: "sig-etcd/groups.yaml"
allowedGroups:
- "@etcd.io$"
- path: "sig-docs/groups.yaml"
allowedGroups:
- "^[email protected]$"
Expand Down
9 changes: 9 additions & 0 deletions groups/sig-etcd/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# See the OWNERS docs at https://go.k8s.io/owners

approvers:
- sig-etcd-leads
reviewers:
- sig-etcd-leads

labels:
- sig/etcd
15 changes: 15 additions & 0 deletions groups/sig-etcd/groups.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
groups:
- email-id: [email protected]
name: etcd-security
description: |-
Private list for non-public (internal) triage of etcd security vulnerabilities
reported by any etcd contributors or users.
settings:
WhoCanPostMessage: "ANYONE_CAN_POST"
ReconcileMembers: "true"
owners:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]

0 comments on commit cb91252

Please sign in to comment.