-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathsig_report.tmpl
116 lines (92 loc) · 4.03 KB
/
sig_report.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# {{lastYear}} Annual Report: {{.Prefix | toUpper}} {{.Name}}
## Current initiatives and Project Health
1. What work did the SIG do this year that should be highlighted?
<!--
Some example items that might be worth highlighting:
- Major KEP advancement
- Important initiatives that aren't tracked via KEPs
- Paying down significant tech debt
- Governance and leadership changes
-->
2. Are there any areas and/or subprojects that your group needs help with (e.g. fewer than 2 active OWNERS)?
3. Did you have community-wide updates in {{lastYear}} (e.g. KubeCon talks)?
<!--
Examples include links to email, slides, or recordings.
-->
{{$releases := getReleases -}}
{{$owningSIG := .Dir -}}
{{$stagedKeps := filterKEPs $owningSIG $releases -}}
{{$alphaKeps := index $stagedKeps "alpha" -}}
{{$betaKeps := index $stagedKeps "beta" -}}
{{$stableKeps := index $stagedKeps "stable" -}}
4. KEP work in {{lastYear}} ({{$releases.LatestMinusTwo}}, {{$releases.LatestMinusOne}}, {{$releases.Latest}}):
<!--
TODO: Uncomment the following auto-generated list of KEPs, once reviewed & updated for correction.
Note: This list is generated from the KEP metadata in kubernetes/enhancements repository.
If you find any discrepancy in the generated list here, please check the KEP metadata.
Please raise an issue in kubernetes/community, if the KEP metadata is correct but the generated list is incorrect.
-->
<!-- {{if ne (len $alphaKeps) 0}}
- Alpha
{{- range $alphaKeps}}
- [{{.Number}} - {{.Title}}](https://github.com/kubernetes/enhancements/tree/master/keps/{{.OwningSIG}}/{{.Name}}) - {{.Milestone.Alpha -}}
{{ end}}{{ end}}
{{if ne (len $betaKeps) 0}}
- Beta
{{- range $betaKeps}}
- [{{.Number}} - {{.Title}}](https://github.com/kubernetes/enhancements/tree/master/keps/{{.OwningSIG}}/{{.Name}}) - {{.Milestone.Beta -}}
{{ end}}{{ end}}
{{if ne (len $stableKeps) 0}}
- Stable
{{- range $stableKeps}}
- [{{.Number}} - {{.Title}}](https://github.com/kubernetes/enhancements/tree/master/keps/{{.OwningSIG}}/{{.Name}}) - {{.Milestone.Stable -}}
{{ end}}{{ end}} -->
## [Subprojects](https://git.k8s.io/community/{{.Dir}}#subprojects)
{{- define "subprojects" -}}
{{- if .New}}
**New in {{lastYear}}:**{{range .New}}
- {{.}}
{{- end}}
{{- end}}
{{- if .Retired}}
**Retired in {{lastYear}}:**{{range .Retired}}
- {{.}}
{{- end}}
{{- end}}
{{- if .Continuing}}
**Continuing:**{{range .Continuing}}
- {{.}}
{{- end}}
{{- end}}
{{- end}}
{{ template "subprojects" (getCategorizedSubprojects .Dir) }}
## [Working groups](https://git.k8s.io/community/{{.Dir}}#working-groups)
{{ $categorizedWorkingGroups := getCategorizedWorkingGroups .Dir }}
{{- if $categorizedWorkingGroups.New}}
**New in {{lastYear}}:**{{range $categorizedWorkingGroups.New }}
- {{.}}
{{- end}}
{{- end}}
{{- if $categorizedWorkingGroups.Retired}}
**Retired in {{lastYear}}:**{{range $categorizedWorkingGroups.Retired }}
- {{.}}
{{- end}}
{{- end}}
{{- if $categorizedWorkingGroups.Continuing}}
**Continuing:**{{range $categorizedWorkingGroups.Continuing }}
- {{ . }}
{{- end}}
{{- end}}
## Operational
Operational tasks in [sig-governance.md]:
- [ ] [README.md] reviewed for accuracy and updated if needed
- [ ] [CONTRIBUTING.md] reviewed for accuracy and updated if needed
- [ ] Other contributing docs (e.g. in devel dir or contributor guide) reviewed for accuracy and updated if needed
- [ ] Subprojects list and linked OWNERS files in [sigs.yaml] reviewed for accuracy and updated if needed
- [ ] SIG leaders (chairs, tech leads, and subproject leads) in [sigs.yaml] are accurate and active, and updated if needed
- [ ] Meeting notes and recordings for {{lastYear}} are linked from [README.md] and updated/uploaded if needed
[CONTRIBUTING.md]: https://git.k8s.io/community/{{.Dir}}/CONTRIBUTING.md
[sig-governance.md]: https://git.k8s.io/community/committee-steering/governance/sig-governance.md
[README.md]: https://git.k8s.io/community/{{.Dir}}/README.md
[sigs.yaml]: https://git.k8s.io/community/sigs.yaml
[devel]: https://git.k8s.io/community/contributors/devel/README.md