From 7278f8b1207866f3e9f4e9950997755b329cbd64 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Mon, 27 Jan 2020 14:08:49 -0500 Subject: Initial Repo Config Adds initial PTL, commiters and approval records. Adds initial git review info, git ignore. Adds initial LICENSE file. Signed-off-by: Mark Beierl Change-Id: I205febf2b5a60d9345a49b69ebb1a840db05fa04 --- .gitignore | 12 ++++++++++ .gitreview | 4 ++++ INFO.yaml | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 13 +++++++++++ 4 files changed, 103 insertions(+) create mode 100644 .gitignore create mode 100644 .gitreview create mode 100644 INFO.yaml create mode 100644 LICENSE diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..884471c --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +*.pyc +*.log +.project +.pydevproject +nosetests.xml +coverage.xml +.coverage +cover +.settings +docs_output +.tox +docs/_build/* diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..21bdfb5 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=gerrit.opnfv.org +port=29418 +project=cirv.git diff --git a/INFO.yaml b/INFO.yaml new file mode 100644 index 0000000..dc294a0 --- /dev/null +++ b/INFO.yaml @@ -0,0 +1,74 @@ +--- +project: 'Common Infrastructure Realization & Validation (CIRV)' +project_creation_date: '2019-09-17' +project_category: 'Integration and Testing' +lifecycle_state: 'Incubation' +project_lead: &opnfv_cirv_ptl + name: 'Mike Fix' + email: 'michael.fix@att.com' + company: 'att.com' + id: 'Michael.Fix' + timezone: 'CST' +primary_contact: *opnfv_cirv_ptl +issue_tracking: + type: 'jira' + url: 'https://jira.opnfv.org/projects/CIRV' + key: 'CIRV' +mailing_list: + type: 'groups.io' + url: 'opnfv-tech-discuss@lists.opnfv.org' + tag: '[CIRV]' +realtime_discussion: + type: irc + server: 'freenode.net' + channel: '#opnfv-cirv' +meetings: + - type: 'Zoom' + # yamllint disable rule:line-length + agenda: 'https://wiki.lfnetworking.org/pages/viewpage.action?pageId=25364128' + url: https://zoom.us/j/694881078 + repeats: 'weekly' + time: 'Wed 1300-1400 UTC' +repositories: + - 'cirv' +committers: + - <<: *opnfv_cirv_ptl + - name: 'Cedric Ollivier' + email: 'cedric.ollivier@orange.com' + company: 'orange.com' + id: 'ollivier' + - name: 'Mark Shostak' + email: 'mark.shostak@att.com' + company: 'att.com' + id: 'shostak' + - name: 'Zhang Hongli' + email: 'zhanghongli@chinamobile.com' + company: 'chinamobile.com' + id: 'zhanghongli' + - name: 'Trevor Cooper' + email: 'trevor.cooper@intel.com' + company: 'intel.com' + id: 'trev' + - name: 'Sridhar Rao' + email: 'sridhar.rao@spirent.com' + company: 'spirent.com' + id: 'sridharkn' + - name: 'Lincoln Lavoie' + email: 'lylavoie@iol.unh.edu' + company: 'iol.unh.edu' + id: 'lylavoie' + - name: 'Mark Beierl' + email: 'mbeierl@vmware.com' + company: 'vmware.com' + id: 'mbeierl' + - name: 'Fu Qiao' + email: 'fuqiao@chinamobile.com' + company: 'chinamobile.com' + id: 'fuqiao' +tsc: + approval: 'http://ircbot.wl.linuxfoundation.org/meetings/opnfv-meeting/2019/opnfv-meeting.2019-09-17-13.01.log.html' + changes: + - type: 'rename' + name: 'CNTT-RI -> CIRV' + link: 'http://ircbot.wl.linuxfoundation.org/meetings/opnfv-meeting/2019/opnfv-meeting.2019-10-29-13.00.log.html' + # yamllint enable rule:line-length diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3922ffe --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2020 Open Platform for NFV Project, Inc. and its contributors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -- cgit