├── .github ├── labeler.yml ├── settings.yml └── workflows │ └── prlabeler.yml ├── LICENSE ├── PROJECT_IDEA_TEMPLATE.md ├── README.md ├── cncf-toc-mentoring-subproject ├── 2022-meeting-minutes.md ├── 2023-meeting-minutes.md ├── 2024-meeting-minutes.md ├── 2025-meeting-minutes.md ├── README.md ├── communications.md ├── gsoc-org-admin-guide.md ├── gsoc-selection-and-ranking-process.md └── org-admins.md ├── mentees └── README.md ├── mentors └── README.md └── programs ├── README.md ├── archive ├── cross │ └── README.md └── seasonofdocs │ ├── README.md │ └── previous-years │ ├── 2020 │ └── README.md │ ├── 2021 │ └── README.md │ └── 2023 │ └── README.md ├── lfx-mentorship ├── 2019 │ └── README.md ├── 2020 │ ├── q1 │ │ ├── README.md │ │ └── project_ideas.md │ ├── q2 │ │ ├── README.md │ │ ├── project_ideas.md │ │ └── selected_projects.md │ └── q3-q4 │ │ ├── README.md │ │ ├── project_ideas.md │ │ └── selected_projects.md ├── 2021 │ ├── 01-Spring │ │ ├── README.md │ │ └── project_ideas.md │ ├── 02-Summer │ │ ├── README.md │ │ └── project_ideas.md │ └── 03-Fall │ │ ├── README.md │ │ └── project_ideas.md ├── 2022 │ ├── 01-Spring │ │ ├── README.md │ │ └── project_ideas.md │ ├── 02-Summer │ │ ├── README.md │ │ └── project_ideas.md │ └── 03-Sept-Nov │ │ ├── README.md │ │ └── project_ideas.md ├── 2023 │ ├── 01-Mar-May │ │ ├── README.md │ │ └── project_ideas.md │ ├── 02-Jun-Aug │ │ ├── README.md │ │ └── project_ideas.md │ └── 03-Sep-Nov │ │ ├── README.md │ │ └── project_ideas.md ├── 2024 │ ├── 01-Mar-May │ │ ├── README.md │ │ └── project_ideas.md │ ├── 02-Jun-Aug │ │ ├── README.md │ │ └── project_ideas.md │ └── 03-Sep-Nov │ │ ├── README.md │ │ └── project_ideas.md ├── 2025 │ ├── 01-Mar-May │ │ ├── README.md │ │ └── project_ideas.md │ ├── 02-Jun-Aug │ │ ├── README.md │ │ └── project_ideas.md │ └── 03-Sep-Nov │ │ ├── README.md │ │ └── project_ideas.md ├── 2026 │ ├── 01-Mar-May │ │ ├── README.md │ │ └── project_ideas.md │ └── 02-Jun-Aug │ │ ├── README.md │ │ └── project_ideas.md └── README.md ├── outreachy └── README.md └── summerofcode ├── 2017.md ├── 2018.md ├── 2019.md ├── 2020.md ├── 2021.md ├── 2022.md ├── 2023.md ├── 2024.md ├── 2025.md └── README.md /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/prlabeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/.github/workflows/prlabeler.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_IDEA_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/PROJECT_IDEA_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/README.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/2022-meeting-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/2022-meeting-minutes.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/2023-meeting-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/2023-meeting-minutes.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/2024-meeting-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/2024-meeting-minutes.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/2025-meeting-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/2025-meeting-minutes.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/README.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/communications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/communications.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/gsoc-org-admin-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/gsoc-org-admin-guide.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/gsoc-selection-and-ranking-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/gsoc-selection-and-ranking-process.md -------------------------------------------------------------------------------- /cncf-toc-mentoring-subproject/org-admins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/cncf-toc-mentoring-subproject/org-admins.md -------------------------------------------------------------------------------- /mentees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/mentees/README.md -------------------------------------------------------------------------------- /mentors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/mentors/README.md -------------------------------------------------------------------------------- /programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/README.md -------------------------------------------------------------------------------- /programs/archive/cross/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/archive/cross/README.md -------------------------------------------------------------------------------- /programs/archive/seasonofdocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/archive/seasonofdocs/README.md -------------------------------------------------------------------------------- /programs/archive/seasonofdocs/previous-years/2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/archive/seasonofdocs/previous-years/2020/README.md -------------------------------------------------------------------------------- /programs/archive/seasonofdocs/previous-years/2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/archive/seasonofdocs/previous-years/2021/README.md -------------------------------------------------------------------------------- /programs/archive/seasonofdocs/previous-years/2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/archive/seasonofdocs/previous-years/2023/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2019/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2019/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q1/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q1/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q1/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q2/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q2/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q2/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q2/selected_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q2/selected_projects.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q3-q4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q3-q4/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q3-q4/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q3-q4/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2020/q3-q4/selected_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2020/q3-q4/selected_projects.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/01-Spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/01-Spring/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/01-Spring/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/01-Spring/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/02-Summer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/02-Summer/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/02-Summer/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/02-Summer/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/03-Fall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/03-Fall/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2021/03-Fall/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2021/03-Fall/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/01-Spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/01-Spring/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/01-Spring/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/01-Spring/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/02-Summer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/02-Summer/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/02-Summer/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/02-Summer/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/03-Sept-Nov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/03-Sept-Nov/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2022/03-Sept-Nov/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2022/03-Sept-Nov/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/01-Mar-May/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/01-Mar-May/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/01-Mar-May/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/01-Mar-May/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/02-Jun-Aug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/02-Jun-Aug/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/02-Jun-Aug/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/02-Jun-Aug/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/03-Sep-Nov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/03-Sep-Nov/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2023/03-Sep-Nov/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2023/03-Sep-Nov/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/01-Mar-May/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/01-Mar-May/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/01-Mar-May/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/01-Mar-May/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/02-Jun-Aug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/02-Jun-Aug/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/02-Jun-Aug/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/02-Jun-Aug/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/03-Sep-Nov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/03-Sep-Nov/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2024/03-Sep-Nov/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2024/03-Sep-Nov/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/01-Mar-May/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/01-Mar-May/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/01-Mar-May/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/01-Mar-May/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/02-Jun-Aug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/02-Jun-Aug/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/02-Jun-Aug/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/02-Jun-Aug/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/03-Sep-Nov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/03-Sep-Nov/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2025/03-Sep-Nov/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2025/03-Sep-Nov/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2026/01-Mar-May/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2026/01-Mar-May/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2026/01-Mar-May/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2026/01-Mar-May/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2026/02-Jun-Aug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2026/02-Jun-Aug/README.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/2026/02-Jun-Aug/project_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/2026/02-Jun-Aug/project_ideas.md -------------------------------------------------------------------------------- /programs/lfx-mentorship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/lfx-mentorship/README.md -------------------------------------------------------------------------------- /programs/outreachy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/outreachy/README.md -------------------------------------------------------------------------------- /programs/summerofcode/2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2017.md -------------------------------------------------------------------------------- /programs/summerofcode/2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2018.md -------------------------------------------------------------------------------- /programs/summerofcode/2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2019.md -------------------------------------------------------------------------------- /programs/summerofcode/2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2020.md -------------------------------------------------------------------------------- /programs/summerofcode/2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2021.md -------------------------------------------------------------------------------- /programs/summerofcode/2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2022.md -------------------------------------------------------------------------------- /programs/summerofcode/2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2023.md -------------------------------------------------------------------------------- /programs/summerofcode/2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2024.md -------------------------------------------------------------------------------- /programs/summerofcode/2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/2025.md -------------------------------------------------------------------------------- /programs/summerofcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/mentoring/HEAD/programs/summerofcode/README.md --------------------------------------------------------------------------------