├── .github ├── ISSUE_TEMPLATE │ ├── ADOPTERS.yaml │ ├── new-repo.md │ ├── process.md │ └── question.md ├── OWNERS └── workflows │ ├── peribolos-schema-validate.yaml │ ├── toc-review-reminder.yaml │ └── verify.yaml ├── .gitignore ├── ADOPTERS.MD ├── BRANDING.MD ├── CALENDAR.MD ├── CODE-OF-CONDUCT.md ├── CONSENSUS.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── LICENSE-docs ├── MAINTAINERS.md ├── OWNERS ├── OWNERS_ALIASES ├── PROJECTS.md ├── README.md ├── REPOSITORY-GUIDELINES.md ├── REVIEWING.md ├── ROLES.md ├── SECURITY.md ├── SLACK-GUIDELINES.md ├── SOCIAL-MEDIA.md ├── STEERING-COMMITTEE.md ├── TEAM-VALUES.md ├── TECH-OVERSIGHT-COMMITTEE.md ├── VALUES.md ├── annual_reports ├── Knative 2019 Annual Report.pdf ├── Knative 2020 Annual Report.pdf └── Knative 2021 Annual Report.pdf ├── docs └── OWNERS ├── elections ├── 2020 │ ├── SC │ │ ├── README.md │ │ ├── arghya-sadhu.md │ │ ├── candidate-template.md │ │ ├── csantanapr.md │ │ ├── goasguen.md │ │ ├── jacques-chester.md │ │ ├── pmorie.md │ │ ├── vaikas.md │ │ └── voters.md │ ├── TOC │ │ ├── README.md │ │ └── voters.md │ └── steering │ │ └── README.md ├── 2021-SC-EU │ ├── README.md │ ├── candidate-itsmurugappan.md │ ├── candidate-sebgoa.md │ ├── enduser.md │ └── nomination-template.md ├── 2021-SC │ ├── OWNERS │ ├── README.md │ ├── ballots.csv │ ├── candidate-csantanapr.md │ ├── candidate-itsmurugappan.md │ ├── candidate-lball.md │ ├── candidate-omerbensaadon.md │ ├── candidate-sebgoa.md │ ├── candidate-xtreme-sameer-vohra.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ ├── results.md │ └── voters.yaml ├── 2021-TOC │ ├── README.md │ ├── candidate-dprotaso.md │ ├── candidate-evankanderson.md │ ├── candidate-julz.md │ ├── candidate-n3wscott.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ ├── results.md │ └── voters.yaml ├── 2022-SC-EU │ ├── README.md │ ├── candidate-puerco.md │ └── nomination-template.md ├── 2022-SC │ ├── OWNERS │ ├── README.md │ ├── candidate-aslom.md │ ├── candidate-nainaz.md │ ├── candidate-salaboy.md │ ├── candidate-smoser-ibm.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ └── voters.yaml ├── 2022-TOC │ ├── OWNERS │ ├── README.md │ ├── candidate-dprotaso.md │ ├── candidate-dsimansk.md │ ├── candidate-n3wscott.md │ ├── candidate-psschwei.md │ ├── candidate-salaboy.md │ ├── candidate-skonto.md │ ├── candidate-zroubalik.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ └── voters.yaml ├── 2023-SC │ ├── OWNERS │ ├── README.md │ ├── candidate-aliok.md │ ├── candidate-evankanderson.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ ├── results.md │ └── voters.yaml ├── 2023-TOC │ ├── OWNERS │ ├── README.md │ ├── candidate-davidhadas.md │ ├── candidate-kvmware.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ ├── results.md │ └── voters.yaml ├── 2024-SC-EU │ ├── README.md │ ├── candidate-nrrso.md │ └── nomination-template.md ├── 2024-SC │ ├── OWNERS │ ├── README.md │ ├── candidate-dprotaso.md │ ├── candidate-matzew.md │ ├── election.yaml │ ├── nomination-template.md │ ├── results.md │ └── voters.yaml ├── 2025-SC-EU │ ├── README.md │ ├── candidate-arsenetar.md │ ├── candidate-kahirokunn.md │ ├── candidate-nyarly.md │ └── nomination-template.md ├── 2025-SC │ ├── OWNERS │ ├── README.md │ ├── candidate-aliok.md │ ├── candidate-evankanderson.md │ ├── election.yaml │ ├── election_desc.md │ ├── nomination-template.md │ └── voters.yaml └── README.md ├── google-summer-of-code ├── README.md ├── gsoc-2022.md └── gsoc-2023.md ├── groups ├── Makefile ├── OWNERS ├── README.md ├── client.go ├── committee-steering │ ├── OWNERS │ └── groups.yaml ├── config.yaml ├── fake │ └── fake_client.go ├── go.mod ├── go.sum ├── groups.yaml ├── groups_test.go ├── reconcile.go ├── reconcile_test.go ├── restrictions.yaml ├── service.go ├── service_test.go ├── wg-productivity │ ├── OWNERS │ └── groups.yaml ├── wg-security │ ├── OWNERS │ └── groups.yaml └── wg-ux │ ├── OWNERS │ └── groups.yaml ├── hack └── update-codegen.sh ├── icons ├── broker.svg ├── channel.svg ├── kn-broker-name.svg ├── kn-broker.svg ├── kn-channel-name.svg ├── kn-channel.svg ├── kn-revision-name.svg ├── kn-revision.svg ├── kn-service-name.svg ├── kn-service.svg ├── kn-source-name.svg ├── kn-source.svg ├── kn-subscription-name.svg ├── kn-subscription.svg ├── kn-trigger-name.svg ├── kn-trigger.svg ├── logo.svg ├── revision.svg ├── service.svg ├── source-generic.svg ├── subscription.svg └── trigger.svg ├── label_sync ├── OWNERS ├── README.md └── labels.yaml ├── logo-guidelines.pdf ├── mascot └── kuack.png ├── mechanics ├── CREATING-AN-EXTENSIONS-REPO.md ├── FEATURE-TRACKS.md ├── GDRIVE.md ├── GOLANG-POLICY.md ├── MATURITY-LEVELS.md ├── OWNERS ├── README.md ├── RELEASE-SCHEDULE.md ├── RELEASE-VERSIONING-PRINCIPLES.md ├── ROADMAPS.md ├── SC.md ├── SUNSETTING-FEATURES.md ├── TOC-REVIEW.schedule ├── WORKING-GROUP-PROCESSES.md ├── _index.md └── tools │ └── gen-aliases │ ├── go.mod │ ├── go.sum │ └── main.go ├── peribolos ├── OWNERS ├── bots.md ├── knative-OWNERS_ALIASES ├── knative-extensions-OWNERS_ALIASES ├── knative-extensions.yaml ├── knative.yaml └── validate-schema.py └── working-groups ├── OWNERS ├── WORKING-GROUPS.md ├── client └── CHARTER.md ├── docs └── CHARTER.md ├── functions └── CHARTER.md ├── kafka └── CHARTER.md ├── operations └── CHARTER.md ├── productivity └── CHARTER.md ├── security ├── CHARTER.md ├── OWNERS ├── disclosure.md ├── responding.md └── threat-model.md └── sources └── CHARTER.md /.github/ISSUE_TEMPLATE/ADOPTERS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/ISSUE_TEMPLATE/ADOPTERS.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/ISSUE_TEMPLATE/new-repo.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/ISSUE_TEMPLATE/process.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/OWNERS -------------------------------------------------------------------------------- /.github/workflows/peribolos-schema-validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/workflows/peribolos-schema-validate.yaml -------------------------------------------------------------------------------- /.github/workflows/toc-review-reminder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/workflows/toc-review-reminder.yaml -------------------------------------------------------------------------------- /.github/workflows/verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/.github/workflows/verify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /ADOPTERS.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/ADOPTERS.MD -------------------------------------------------------------------------------- /BRANDING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/BRANDING.MD -------------------------------------------------------------------------------- /CALENDAR.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/CALENDAR.MD -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONSENSUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/CONSENSUS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/LICENSE-docs -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- 1 | peribolos/knative-OWNERS_ALIASES -------------------------------------------------------------------------------- /PROJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/PROJECTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/README.md -------------------------------------------------------------------------------- /REPOSITORY-GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/REPOSITORY-GUIDELINES.md -------------------------------------------------------------------------------- /REVIEWING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/REVIEWING.md -------------------------------------------------------------------------------- /ROLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/ROLES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SLACK-GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/SLACK-GUIDELINES.md -------------------------------------------------------------------------------- /SOCIAL-MEDIA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/SOCIAL-MEDIA.md -------------------------------------------------------------------------------- /STEERING-COMMITTEE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/STEERING-COMMITTEE.md -------------------------------------------------------------------------------- /TEAM-VALUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/TEAM-VALUES.md -------------------------------------------------------------------------------- /TECH-OVERSIGHT-COMMITTEE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/TECH-OVERSIGHT-COMMITTEE.md -------------------------------------------------------------------------------- /VALUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/VALUES.md -------------------------------------------------------------------------------- /annual_reports/Knative 2019 Annual Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/annual_reports/Knative 2019 Annual Report.pdf -------------------------------------------------------------------------------- /annual_reports/Knative 2020 Annual Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/annual_reports/Knative 2020 Annual Report.pdf -------------------------------------------------------------------------------- /annual_reports/Knative 2021 Annual Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/annual_reports/Knative 2021 Annual Report.pdf -------------------------------------------------------------------------------- /docs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/docs/OWNERS -------------------------------------------------------------------------------- /elections/2020/SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/README.md -------------------------------------------------------------------------------- /elections/2020/SC/arghya-sadhu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/arghya-sadhu.md -------------------------------------------------------------------------------- /elections/2020/SC/candidate-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/candidate-template.md -------------------------------------------------------------------------------- /elections/2020/SC/csantanapr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/csantanapr.md -------------------------------------------------------------------------------- /elections/2020/SC/goasguen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/goasguen.md -------------------------------------------------------------------------------- /elections/2020/SC/jacques-chester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/jacques-chester.md -------------------------------------------------------------------------------- /elections/2020/SC/pmorie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/pmorie.md -------------------------------------------------------------------------------- /elections/2020/SC/vaikas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/vaikas.md -------------------------------------------------------------------------------- /elections/2020/SC/voters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/SC/voters.md -------------------------------------------------------------------------------- /elections/2020/TOC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/TOC/README.md -------------------------------------------------------------------------------- /elections/2020/TOC/voters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/TOC/voters.md -------------------------------------------------------------------------------- /elections/2020/steering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2020/steering/README.md -------------------------------------------------------------------------------- /elections/2021-SC-EU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC-EU/README.md -------------------------------------------------------------------------------- /elections/2021-SC-EU/candidate-itsmurugappan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC-EU/candidate-itsmurugappan.md -------------------------------------------------------------------------------- /elections/2021-SC-EU/candidate-sebgoa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC-EU/candidate-sebgoa.md -------------------------------------------------------------------------------- /elections/2021-SC-EU/enduser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC-EU/enduser.md -------------------------------------------------------------------------------- /elections/2021-SC-EU/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC-EU/nomination-template.md -------------------------------------------------------------------------------- /elections/2021-SC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/OWNERS -------------------------------------------------------------------------------- /elections/2021-SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/README.md -------------------------------------------------------------------------------- /elections/2021-SC/ballots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/ballots.csv -------------------------------------------------------------------------------- /elections/2021-SC/candidate-csantanapr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-csantanapr.md -------------------------------------------------------------------------------- /elections/2021-SC/candidate-itsmurugappan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-itsmurugappan.md -------------------------------------------------------------------------------- /elections/2021-SC/candidate-lball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-lball.md -------------------------------------------------------------------------------- /elections/2021-SC/candidate-omerbensaadon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-omerbensaadon.md -------------------------------------------------------------------------------- /elections/2021-SC/candidate-sebgoa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-sebgoa.md -------------------------------------------------------------------------------- /elections/2021-SC/candidate-xtreme-sameer-vohra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/candidate-xtreme-sameer-vohra.md -------------------------------------------------------------------------------- /elections/2021-SC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/election.yaml -------------------------------------------------------------------------------- /elections/2021-SC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/election_desc.md -------------------------------------------------------------------------------- /elections/2021-SC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/nomination-template.md -------------------------------------------------------------------------------- /elections/2021-SC/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/results.md -------------------------------------------------------------------------------- /elections/2021-SC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-SC/voters.yaml -------------------------------------------------------------------------------- /elections/2021-TOC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/README.md -------------------------------------------------------------------------------- /elections/2021-TOC/candidate-dprotaso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/candidate-dprotaso.md -------------------------------------------------------------------------------- /elections/2021-TOC/candidate-evankanderson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/candidate-evankanderson.md -------------------------------------------------------------------------------- /elections/2021-TOC/candidate-julz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/candidate-julz.md -------------------------------------------------------------------------------- /elections/2021-TOC/candidate-n3wscott.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/candidate-n3wscott.md -------------------------------------------------------------------------------- /elections/2021-TOC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/election.yaml -------------------------------------------------------------------------------- /elections/2021-TOC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/election_desc.md -------------------------------------------------------------------------------- /elections/2021-TOC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/nomination-template.md -------------------------------------------------------------------------------- /elections/2021-TOC/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/results.md -------------------------------------------------------------------------------- /elections/2021-TOC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2021-TOC/voters.yaml -------------------------------------------------------------------------------- /elections/2022-SC-EU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC-EU/README.md -------------------------------------------------------------------------------- /elections/2022-SC-EU/candidate-puerco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC-EU/candidate-puerco.md -------------------------------------------------------------------------------- /elections/2022-SC-EU/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC-EU/nomination-template.md -------------------------------------------------------------------------------- /elections/2022-SC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/OWNERS -------------------------------------------------------------------------------- /elections/2022-SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/README.md -------------------------------------------------------------------------------- /elections/2022-SC/candidate-aslom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/candidate-aslom.md -------------------------------------------------------------------------------- /elections/2022-SC/candidate-nainaz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/candidate-nainaz.md -------------------------------------------------------------------------------- /elections/2022-SC/candidate-salaboy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/candidate-salaboy.md -------------------------------------------------------------------------------- /elections/2022-SC/candidate-smoser-ibm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/candidate-smoser-ibm.md -------------------------------------------------------------------------------- /elections/2022-SC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/election.yaml -------------------------------------------------------------------------------- /elections/2022-SC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/election_desc.md -------------------------------------------------------------------------------- /elections/2022-SC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/nomination-template.md -------------------------------------------------------------------------------- /elections/2022-SC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-SC/voters.yaml -------------------------------------------------------------------------------- /elections/2022-TOC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/OWNERS -------------------------------------------------------------------------------- /elections/2022-TOC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/README.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-dprotaso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-dprotaso.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-dsimansk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-dsimansk.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-n3wscott.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-n3wscott.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-psschwei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-psschwei.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-salaboy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-salaboy.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-skonto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-skonto.md -------------------------------------------------------------------------------- /elections/2022-TOC/candidate-zroubalik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/candidate-zroubalik.md -------------------------------------------------------------------------------- /elections/2022-TOC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/election.yaml -------------------------------------------------------------------------------- /elections/2022-TOC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/election_desc.md -------------------------------------------------------------------------------- /elections/2022-TOC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/nomination-template.md -------------------------------------------------------------------------------- /elections/2022-TOC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2022-TOC/voters.yaml -------------------------------------------------------------------------------- /elections/2023-SC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/OWNERS -------------------------------------------------------------------------------- /elections/2023-SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/README.md -------------------------------------------------------------------------------- /elections/2023-SC/candidate-aliok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/candidate-aliok.md -------------------------------------------------------------------------------- /elections/2023-SC/candidate-evankanderson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/candidate-evankanderson.md -------------------------------------------------------------------------------- /elections/2023-SC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/election.yaml -------------------------------------------------------------------------------- /elections/2023-SC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/election_desc.md -------------------------------------------------------------------------------- /elections/2023-SC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/nomination-template.md -------------------------------------------------------------------------------- /elections/2023-SC/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/results.md -------------------------------------------------------------------------------- /elections/2023-SC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-SC/voters.yaml -------------------------------------------------------------------------------- /elections/2023-TOC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/OWNERS -------------------------------------------------------------------------------- /elections/2023-TOC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/README.md -------------------------------------------------------------------------------- /elections/2023-TOC/candidate-davidhadas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/candidate-davidhadas.md -------------------------------------------------------------------------------- /elections/2023-TOC/candidate-kvmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/candidate-kvmware.md -------------------------------------------------------------------------------- /elections/2023-TOC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/election.yaml -------------------------------------------------------------------------------- /elections/2023-TOC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/election_desc.md -------------------------------------------------------------------------------- /elections/2023-TOC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/nomination-template.md -------------------------------------------------------------------------------- /elections/2023-TOC/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/results.md -------------------------------------------------------------------------------- /elections/2023-TOC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2023-TOC/voters.yaml -------------------------------------------------------------------------------- /elections/2024-SC-EU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC-EU/README.md -------------------------------------------------------------------------------- /elections/2024-SC-EU/candidate-nrrso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC-EU/candidate-nrrso.md -------------------------------------------------------------------------------- /elections/2024-SC-EU/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC-EU/nomination-template.md -------------------------------------------------------------------------------- /elections/2024-SC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/OWNERS -------------------------------------------------------------------------------- /elections/2024-SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/README.md -------------------------------------------------------------------------------- /elections/2024-SC/candidate-dprotaso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/candidate-dprotaso.md -------------------------------------------------------------------------------- /elections/2024-SC/candidate-matzew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/candidate-matzew.md -------------------------------------------------------------------------------- /elections/2024-SC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/election.yaml -------------------------------------------------------------------------------- /elections/2024-SC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/nomination-template.md -------------------------------------------------------------------------------- /elections/2024-SC/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/results.md -------------------------------------------------------------------------------- /elections/2024-SC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2024-SC/voters.yaml -------------------------------------------------------------------------------- /elections/2025-SC-EU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC-EU/README.md -------------------------------------------------------------------------------- /elections/2025-SC-EU/candidate-arsenetar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC-EU/candidate-arsenetar.md -------------------------------------------------------------------------------- /elections/2025-SC-EU/candidate-kahirokunn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC-EU/candidate-kahirokunn.md -------------------------------------------------------------------------------- /elections/2025-SC-EU/candidate-nyarly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC-EU/candidate-nyarly.md -------------------------------------------------------------------------------- /elections/2025-SC-EU/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC-EU/nomination-template.md -------------------------------------------------------------------------------- /elections/2025-SC/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/OWNERS -------------------------------------------------------------------------------- /elections/2025-SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/README.md -------------------------------------------------------------------------------- /elections/2025-SC/candidate-aliok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/candidate-aliok.md -------------------------------------------------------------------------------- /elections/2025-SC/candidate-evankanderson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/candidate-evankanderson.md -------------------------------------------------------------------------------- /elections/2025-SC/election.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/election.yaml -------------------------------------------------------------------------------- /elections/2025-SC/election_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/election_desc.md -------------------------------------------------------------------------------- /elections/2025-SC/nomination-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/nomination-template.md -------------------------------------------------------------------------------- /elections/2025-SC/voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/2025-SC/voters.yaml -------------------------------------------------------------------------------- /elections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/elections/README.md -------------------------------------------------------------------------------- /google-summer-of-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/google-summer-of-code/README.md -------------------------------------------------------------------------------- /google-summer-of-code/gsoc-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/google-summer-of-code/gsoc-2022.md -------------------------------------------------------------------------------- /google-summer-of-code/gsoc-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/google-summer-of-code/gsoc-2023.md -------------------------------------------------------------------------------- /groups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/Makefile -------------------------------------------------------------------------------- /groups/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/OWNERS -------------------------------------------------------------------------------- /groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/README.md -------------------------------------------------------------------------------- /groups/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/client.go -------------------------------------------------------------------------------- /groups/committee-steering/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/committee-steering/OWNERS -------------------------------------------------------------------------------- /groups/committee-steering/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/committee-steering/groups.yaml -------------------------------------------------------------------------------- /groups/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/config.yaml -------------------------------------------------------------------------------- /groups/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/fake/fake_client.go -------------------------------------------------------------------------------- /groups/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/go.mod -------------------------------------------------------------------------------- /groups/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/go.sum -------------------------------------------------------------------------------- /groups/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/groups.yaml -------------------------------------------------------------------------------- /groups/groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/groups_test.go -------------------------------------------------------------------------------- /groups/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/reconcile.go -------------------------------------------------------------------------------- /groups/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/reconcile_test.go -------------------------------------------------------------------------------- /groups/restrictions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/restrictions.yaml -------------------------------------------------------------------------------- /groups/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/service.go -------------------------------------------------------------------------------- /groups/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/service_test.go -------------------------------------------------------------------------------- /groups/wg-productivity/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-productivity/OWNERS -------------------------------------------------------------------------------- /groups/wg-productivity/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-productivity/groups.yaml -------------------------------------------------------------------------------- /groups/wg-security/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-security/OWNERS -------------------------------------------------------------------------------- /groups/wg-security/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-security/groups.yaml -------------------------------------------------------------------------------- /groups/wg-ux/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-ux/OWNERS -------------------------------------------------------------------------------- /groups/wg-ux/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/groups/wg-ux/groups.yaml -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /icons/broker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/broker.svg -------------------------------------------------------------------------------- /icons/channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/channel.svg -------------------------------------------------------------------------------- /icons/kn-broker-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-broker-name.svg -------------------------------------------------------------------------------- /icons/kn-broker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-broker.svg -------------------------------------------------------------------------------- /icons/kn-channel-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-channel-name.svg -------------------------------------------------------------------------------- /icons/kn-channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-channel.svg -------------------------------------------------------------------------------- /icons/kn-revision-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-revision-name.svg -------------------------------------------------------------------------------- /icons/kn-revision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-revision.svg -------------------------------------------------------------------------------- /icons/kn-service-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-service-name.svg -------------------------------------------------------------------------------- /icons/kn-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-service.svg -------------------------------------------------------------------------------- /icons/kn-source-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-source-name.svg -------------------------------------------------------------------------------- /icons/kn-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-source.svg -------------------------------------------------------------------------------- /icons/kn-subscription-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-subscription-name.svg -------------------------------------------------------------------------------- /icons/kn-subscription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-subscription.svg -------------------------------------------------------------------------------- /icons/kn-trigger-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-trigger-name.svg -------------------------------------------------------------------------------- /icons/kn-trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/kn-trigger.svg -------------------------------------------------------------------------------- /icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/logo.svg -------------------------------------------------------------------------------- /icons/revision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/revision.svg -------------------------------------------------------------------------------- /icons/service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/service.svg -------------------------------------------------------------------------------- /icons/source-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/source-generic.svg -------------------------------------------------------------------------------- /icons/subscription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/subscription.svg -------------------------------------------------------------------------------- /icons/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/icons/trigger.svg -------------------------------------------------------------------------------- /label_sync/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/label_sync/OWNERS -------------------------------------------------------------------------------- /label_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/label_sync/README.md -------------------------------------------------------------------------------- /label_sync/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/label_sync/labels.yaml -------------------------------------------------------------------------------- /logo-guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/logo-guidelines.pdf -------------------------------------------------------------------------------- /mascot/kuack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mascot/kuack.png -------------------------------------------------------------------------------- /mechanics/CREATING-AN-EXTENSIONS-REPO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/CREATING-AN-EXTENSIONS-REPO.md -------------------------------------------------------------------------------- /mechanics/FEATURE-TRACKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/FEATURE-TRACKS.md -------------------------------------------------------------------------------- /mechanics/GDRIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/GDRIVE.md -------------------------------------------------------------------------------- /mechanics/GOLANG-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/GOLANG-POLICY.md -------------------------------------------------------------------------------- /mechanics/MATURITY-LEVELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/MATURITY-LEVELS.md -------------------------------------------------------------------------------- /mechanics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/OWNERS -------------------------------------------------------------------------------- /mechanics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/README.md -------------------------------------------------------------------------------- /mechanics/RELEASE-SCHEDULE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/RELEASE-SCHEDULE.md -------------------------------------------------------------------------------- /mechanics/RELEASE-VERSIONING-PRINCIPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/RELEASE-VERSIONING-PRINCIPLES.md -------------------------------------------------------------------------------- /mechanics/ROADMAPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/ROADMAPS.md -------------------------------------------------------------------------------- /mechanics/SC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/SC.md -------------------------------------------------------------------------------- /mechanics/SUNSETTING-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/SUNSETTING-FEATURES.md -------------------------------------------------------------------------------- /mechanics/TOC-REVIEW.schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/TOC-REVIEW.schedule -------------------------------------------------------------------------------- /mechanics/WORKING-GROUP-PROCESSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/WORKING-GROUP-PROCESSES.md -------------------------------------------------------------------------------- /mechanics/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/_index.md -------------------------------------------------------------------------------- /mechanics/tools/gen-aliases/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/tools/gen-aliases/go.mod -------------------------------------------------------------------------------- /mechanics/tools/gen-aliases/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/tools/gen-aliases/go.sum -------------------------------------------------------------------------------- /mechanics/tools/gen-aliases/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/mechanics/tools/gen-aliases/main.go -------------------------------------------------------------------------------- /peribolos/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/OWNERS -------------------------------------------------------------------------------- /peribolos/bots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/bots.md -------------------------------------------------------------------------------- /peribolos/knative-OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/knative-OWNERS_ALIASES -------------------------------------------------------------------------------- /peribolos/knative-extensions-OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/knative-extensions-OWNERS_ALIASES -------------------------------------------------------------------------------- /peribolos/knative-extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/knative-extensions.yaml -------------------------------------------------------------------------------- /peribolos/knative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/knative.yaml -------------------------------------------------------------------------------- /peribolos/validate-schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/peribolos/validate-schema.py -------------------------------------------------------------------------------- /working-groups/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/OWNERS -------------------------------------------------------------------------------- /working-groups/WORKING-GROUPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/WORKING-GROUPS.md -------------------------------------------------------------------------------- /working-groups/client/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/client/CHARTER.md -------------------------------------------------------------------------------- /working-groups/docs/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/docs/CHARTER.md -------------------------------------------------------------------------------- /working-groups/functions/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/functions/CHARTER.md -------------------------------------------------------------------------------- /working-groups/kafka/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/kafka/CHARTER.md -------------------------------------------------------------------------------- /working-groups/operations/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/operations/CHARTER.md -------------------------------------------------------------------------------- /working-groups/productivity/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/productivity/CHARTER.md -------------------------------------------------------------------------------- /working-groups/security/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/security/CHARTER.md -------------------------------------------------------------------------------- /working-groups/security/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/security/OWNERS -------------------------------------------------------------------------------- /working-groups/security/disclosure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/security/disclosure.md -------------------------------------------------------------------------------- /working-groups/security/responding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/security/responding.md -------------------------------------------------------------------------------- /working-groups/security/threat-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/security/threat-model.md -------------------------------------------------------------------------------- /working-groups/sources/CHARTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knative/community/HEAD/working-groups/sources/CHARTER.md --------------------------------------------------------------------------------