[opnfv-tech-discuss] Auto Project Meeting 08/06/2018 - Auto - OPNFV Wiki

2018-08-06 Thread Tina Tsou
Dear all,

Sorry I forgot to send out the agenda before the meeting. The meeting is going 
on now.

https://wiki.opnfv.org/pages/viewpage.action?pageId=26837261


Thank you,
Tina
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium. Thank you.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21709): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21709
Mute This Topic: https://lists.opnfv.org/mt/24208807/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [opnfv-tech-discuss] [apex][auto] Apex on LaaS x86 server

2018-08-06 Thread Tim Rozet
Hi Gerard,
Sorry for the late response. I'll try to respond inline and answer some of
your comments.

Tim Rozet
Red Hat SDN Team


On Wed, Aug 1, 2018 at 8:03 PM Gerard Damm  wrote:

>
>
> Hi,
>
>
>
> I wanted to confirm the procedure, but got an error again, and this time
> the opnfv-clean command
>
> did not do the trick: it actually also issued an error (please see details
> below).
>
>
>
> However, I re-run the installation after exploring post-install scripts
> (Install Docker, Install Python) from Mark:
>
>
> https://wiki.opnfv.org/display/storperf/LaaS+Setup+For+Development#LaaSSetupForDevelopment-InstallOPNFVApex
>
>
>
> The second opnfv-deploy attempt failed again, but this time opnfv-clean
> worked, and a 3rd installation attempt worked.
>
>
>
> So I'm thinking there must be some missing/undocumented additional
> required setup for Apex (Docker ? Python ?), which may or may not happen
> incidentally when doing other things, but which is revealed by running the
> procedure for the first time on a brand new server (and maybe is not
> revealed on daily CI runs on already configured servers).
>



>
>
> Best regards,
>
> Gerard
>
>
>
>
>
>
>
>
>
>
>
> a) initial error from deploy:
>
>
>
> 2018-08-01 17:43:27,073 INFO: TASK [systemd]
> *
>
> task path:
> /usr/share/opnfv-apex/ansible/playbooks/deploy_dependencies.yml:25
>
> fatal: [localhost]: FAILED! => {"changed": false, "msg": "Unable to start
> service openvswitch: A dependency job for openvswitch.service failed. See
> 'journalctl -xe' for details.
>
> "}
>
> to retry, use: --limit
> @/usr/share/opnfv-apex/ansible/playbooks/deploy_dependencies.retry
>
>
>
>
>
> 2018-08-01 17:43:27,073 INFO: PLAY RECAP
> *
>
> localhost  : ok=5changed=0unreachable=0failed=1
>
>
>
>
>
> 2018-08-01 17:43:27,142 ERROR: Ansible playbook failed. See Ansible logs
> for details.
>
> Traceback (most recent call last):
>
>   File "/bin/opnfv-deploy", line 10, in 
>
> sys.exit(main())
>
>   File "/usr/lib/python3.4/site-packages/apex/deploy.py", line 312, in main
>
> 'deploy_dependencies.yml'))
>
>   File "/usr/lib/python3.4/site-packages/apex/common/utils.py", line 141,
> in run_ansible
>
> raise Exception(e)
>
> Exception: Ansible playbook failed. See Ansible logs for details.
>
>
>
>
>
OpenVswitch was not installed. I'm not sure how this is possible since it
is a requirement of the opnfv-apex package itself:
https://github.com/opnfv/apex/blob/stable/fraser/build/rpm_specs/opnfv-apex-common.spec#L15
So if you installed the apex RPMs they should have failed if they did not
install OVS.

>
>
>
>
> b) initial error from opnfv-clean:
>
>
>
> # opnfv-clean
>
> 2018-08-01 18:02:45,725 INFO: Destroying all Apex VMs
>
> libvirt: Storage Driver error : Storage pool not found: no storage pool
> with matching name 'default'
>
> Traceback (most recent call last):
>
>   File "/usr/bin/opnfv-clean", line 10, in 
>
> sys.exit(main())
>
>   File "/usr/lib/python3.4/site-packages/apex/clean.py", line 146, in main
>
> clean_vms()
>
>   File "/usr/lib/python3.4/site-packages/apex/clean.py", line 62, in
> clean_vms
>
> pool = conn.storagePoolLookupByName('default')
>
>   File "/usr/lib64/python3.4/site-packages/libvirt.py", line 4589, in
> storagePoolLookupByName
>
> if ret is None:raise libvirtError('virStoragePoolLookupByName()
> failed', conn=self)
>
> libvirt.libvirtError: Storage pool not found: no storage pool with
> matching name 'default'
>
> [root@hpe34 opnfv-TripleO-apex]#
>
>
>

This usually happens if for some reason you are missing a default pool in
libvirt (virsh pool-list |grep default). You can recreate it manually
virsh pool-define-as default dir --target /var/lib/libvirt/images/
virsh pool-autostart default
virsh pool-start default

We should probably handle this condition and create the default pool for
the user if it is missing. We may already do this in the deploy, but not in
the clean. I need to check. Feel free to open a bug on that.

>
>
>
>
>
>
> c) second installation error:
>
>
>
> 2018-08-01 18:28:44,848 INFO: Created machine baremetal0 with UUID
> 114d0d22-d384-4a95-a8c3-c58ba2895756
>
> 2018-08-01 18:28:44,882 DEBUG: Detected virsh default network ip:
> 192.168.122.1
>
> Traceback (most recent call last):
>
>   File "/usr/bin/opnfv-deploy", line 10, in 
>
> sys.exit(main())
>
>   File "/usr/lib/python3.4/site-packages/apex/deploy.py", line 318, in main
>
> build_vms(inventory, net_settings, args.deploy_dir)
>
>   File "/usr/lib/python3.4/site-packages/apex/deploy.py", line 99, in
> build_vms
>
> virt_utils.host_setup({name: node['pm_port']})
>
>   File "/usr/lib/python3.4/site-packages/apex/virtual/utils.py", line 132,
> in host_setup
>
> chain = iptc.Chain(iptc.Table(iptc.Table.FILTER), "INPUT")
>
>   File "/usr/lib64/python3.4/site-packages/iptc/ip4tc.p

[opnfv-tech-discuss] [release][gambia] proposal to move Gambia schedule out two weeks

2018-08-06 Thread David McBride
TSC members,

For the past two months, I've been reporting to the TSC that the installer
teams were having stability issues and have been unable to meet the
requirements of MS3.1.  There doesn't seem to be any common root cause.
Instead, it seems to be multiple issues, unique to each installer.

The first adjustment we made was to move MS3.1 out by one week.
Unfortunately, the stability issues have persisted, so we now need to
consider moving the entire schedule out, beginning with MS5.  Therefore, I
am proposing a two week shift.  This is based on a discussion with the
installer PTLs at last week's release meeting.

See the attachment for the suggested revised schedule and please be
prepared to discuss and vote at tomorrow's TSC meeting.  Let me know if you
have any questions or comments.

David

-- 
*David McBride*
Release Manager, OPNFV
Mobile: +1.805.276.8018 
Email/Google Talk: dmcbr...@linuxfoundation.org
Skype: davidjmcbride1
IRC: dmcbride

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21711): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21711
Mute This Topic: https://lists.opnfv.org/mt/24212085/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



OPNFV Gambia r1.pdf
Description: Adobe PDF document


[opnfv-tech-discuss] ONS Europe Information & LFN Member Discount

2018-08-06 Thread Brandon Wick
OPNFV Technical Community:

In case you didn't catch it, the schedule

for
ONS Europe was announced last week.

This ONS (Amsterdam, Sept 25-27) features in-depth technical tracks
covering the breadth of open networking and its relationships with other
emerging trends, such as:

   - Serverless architectures
   - Cloud-native Virtual Functions
   - AI and deep learning
   - IOT

Session clusters focus on the distinct technical and business needs of
service providers, enterprises and cloud providers. Learn from the
deployment experiences of peers, and get hands-on experience with workshops
and tutorials covering ODL and OpenStack, ONAP, OPNFV, Kubernetes
networking, CORD and more.

And of course, don't forget the all-important Hallway Track and
unconference possibilities.

LFN member companies can use code *LFMEM20 *at registration checkout
to get *20%
off *the cost of your registration--making it lower than the Early Bird
price!

Some tracks are already almost full. Register here

today,
and don't forget to book your hotel room at the same time.

Please let me know if you have any questions. Thanks!

Best,

Brandon Wick
Senior Integrated Marketing Manager
The Linux Foundation
bw...@linuxfoundation.org
+1.917.282.0960

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21712): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21712
Mute This Topic: https://lists.opnfv.org/mt/24212261/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal is being discussed in the TSC

2018-08-06 Thread Xuan Jia
 August 16th is okay for me.

Thanks

Xuan Jia

Project Manager

Network & IT Technology Research Center China Mobile Research Institute

32 Xuanwumen West Street, Xicheng Distirct, Beijing 100032, China

Mobile: (+86) 13811000575

E-mail: jiax...@chinamobile.com


Wenjing Chu  于2018年8月2日周四 上午8:31写道:

> Thanks for all the interests… Please continue to let us know if you can
> participate or someone in your project can. We clearly want representation
> from container4nfv, installers that are producing k8s, edge cloud, data
> path, testing projects that are interested in cloud native testing … and
> all of you really.
>
>
>
> I’d propose that we use Bin’s meeting slot for a kickoff community meeting
> as a start and level setting, and choose how we want to meet in future. I’m
> taking time off myself next week, but August 16 works for me.
>
>
>
> Bin, would it be OK that we take the whole hour for August 16?
>
> And does that time work for everyone?
>
>
>
> Regards
>
> Wenjing
>
>
>
>
>
>
>
> *From:* Tina Tsou [mailto:tina.t...@arm.com]
> *Sent:* Wednesday, August 01, 2018 3:13 PM
> *To:* Georg Kunz ; Gergely Csatari <
> gergely.csat...@nokia.com>; Wenjing Chu ;
> opnfv-tech-discuss@lists.opnfv.org
> *Cc:* jason.jiax...@gmail.com; fuq...@chinamobile.com; Stephen Wong <
> stephen.wo...@huawei.com>; brian.j.skerry ;
> Rossella Sblendido ; julienjut ;
> Fatih Degirmenci ; TSC OPNFV <
> opnfv-...@lists.opnfv.org>; Ryota Mibu ; Sridhar K.
> N. Rao 
> *Subject:* RE: [opnfv-tech-discuss] The OPNFV Cloud Native working group
> proposal is being discussed in the TSC
>
>
>
> Dear Wenjing,
>
>
>
> We discussed it before, I’m interested to participate in.
>
>
>
>
>
> Thank you,
>
> Tina Tsou
>
> Enterprise Architect
>
> Arm
>
> tina.t...@arm.com
>
> +1 (408)931-3833
>
>
>
> *From:* Georg Kunz 
> *Sent:* Wednesday, August 1, 2018 3:08 PM
> *To:* Gergely Csatari ; Wenjing Chu <
> wenjing@huawei.com>; opnfv-tech-discuss@lists.opnfv.org
> *Cc:* jason.jiax...@gmail.com; fuq...@chinamobile.com; Stephen Wong <
> stephen.wo...@huawei.com>; brian.j.skerry ;
> Rossella Sblendido ; julienjut ;
> Tina Tsou ; Fatih Degirmenci <
> fatih.degirme...@ericsson.com>; TSC OPNFV ;
> Ryota Mibu ; Sridhar K. N. Rao <
> sridhar@spirent.com>
> *Subject:* RE: [opnfv-tech-discuss] The OPNFV Cloud Native working group
> proposal is being discussed in the TSC
>
>
>
> Hi,
>
>
>
> Count me in, too.
>
>
>
> Best regards
>
> Georg
>
>
>
> *From:* opnfv-tech-discuss@lists.opnfv.org <
> opnfv-tech-discuss@lists.opnfv.org> *On Behalf Of *Gergely Csatari
> *Sent:* Wednesday, August 1, 2018 12:47 PM
> *To:* Wenjing Chu ;
> opnfv-tech-discuss@lists.opnfv.org
> *Cc:* jason.jiax...@gmail.com; fuq...@chinamobile.com; Stephen Wong <
> stephen.wo...@huawei.com>; Georg Kunz ;
> brian.j.skerry ; Rossella Sblendido <
> rsblend...@suse.com>; julienjut ; Tina Tsou <
> tina.t...@arm.com>; Fatih Degirmenci ; TSC
> OPNFV ; Ryota Mibu ;
> Sridhar K. N. Rao 
> *Subject:* Re: [opnfv-tech-discuss] The OPNFV Cloud Native working group
> proposal is being discussed in the TSC
>
>
>
> Hi,
>
>
>
> I would be happy to participate.
>
>
>
> Br,
>
> Gerg0
>
>
>
> *From:* opnfv-tech-discuss@lists.opnfv.org <
> opnfv-tech-discuss@lists.opnfv.org> *On Behalf Of *Wenjing Chu
> *Sent:* Tuesday, July 31, 2018 7:57 PM
> *To:* opnfv-tech-discuss@lists.opnfv.org
> *Cc:* jason.jiax...@gmail.com; fuq...@chinamobile.com; Stephen Wong <
> stephen.wo...@huawei.com>; 'Georg Kunz' ;
> brian.j.skerry ; Rossella Sblendido <
> rsblend...@suse.com>; julienjut ; Tina Tsou <
> tina.t...@arm.com>; fatih.degirme...@ericsson.com; TSC OPNFV <
> opnfv-...@lists.opnfv.org>; Ryota Mibu ; Sridhar K.
> N. Rao 
> *Subject:* [opnfv-tech-discuss] The OPNFV Cloud Native working group
> proposal is being discussed in the TSC
>
>
>
>
>
> I would like to give all in the OPNFV community a shout-out that we’re
> discussing a Cloud Native focused working group in the last two TSC calls.
> Brian Skerry, Rossella and myself have put a list of recommendations
> together since we started a couple of months ago. The draft proposal and
> detailed background material can be found in this wiki page:
> https://wiki.opnfv.org/display/meetings/Cloud+Native
>
>
>
> We’d very much appreciate your feedback and, more importantly, interests
> in participating its work. I don’t know if I should emphasize again the
> importance of cloud native to OPNFV’s mission and our relevance in the
> industry, but I believe that OPNFV has a good opportunity to make an
> impactful contribution. There are a lot of projects working on many aspects
> of cloud native open source technologies, what’s lacking is a common
> initiative towards common goals: identifying needs/gaps, articulating these
> goals, planning them, coordinating different aspects for maximum effect,
> and sharing training and messaging etc.
>
>
>
> Here is a list of proposed work items so far for the new WG:
>
> ·Document current state of various ongoing efforts in OPNFV,

Re: [opnfv-tech-discuss] OPNFV meetup at ONS Europe?

2018-08-06 Thread MORTON, ALFRED C (AL)
Hi Tim,

I would be interested in a specific meet-up day.
Since other LFN projects are working toward this
possibility, let me suggest that OPNFV try to avoid
overlap with the other projects, if possible.
If it comes down to specific projects to avoid,
I'll be glad to provide my list :)

thanks and regards,
Al


From: opnfv-tech-discuss@lists.opnfv.org 
[mailto:opnfv-tech-discuss@lists.opnfv.org] On Behalf Of Tim Irnich
Sent: Thursday, August 2, 2018 4:05 PM
To: opnfv-...@lists.opnfv.org; opnfv-tech-discuss@lists.opnfv.org
Subject: [opnfv-tech-discuss] OPNFV meetup at ONS Europe?

Hi all,

I'd like to request opinions on whether we should organize an OPNFV F2F meetup 
adjacent to ONS Europe (Sept 25-27, Amsterdam). So far I assumed the 
presentations we've got accepted for the conference program plus the 
possibility for self-organized sideline meetings would be adequate but given 
the increasing number of questions it seems in order to base this decision on a 
community discussion.

What's your opinion, would you prefer to organize an additional OPNFV-specific 
meetup day (some other LFN projects are planning for this)? If there's enough 
demand this would certainly be something worth investigating.

Regards, Tim


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21714): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21714
Mute This Topic: https://lists.opnfv.org/mt/24148179/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [opnfv-tech-discuss] [OPNFV Helpdesk #59066] [Yardstick] contributor request

2018-08-06 Thread emma.l.fo...@intel.com via RT
Thanks Trevor!

Welcome to Yardstick Myron. :)

Best regards,
Emma

-Original Message-
From: Trevor Bramwell via RT [mailto:opnfv-helpd...@rt.linuxfoundation.org] 
Sent: Wednesday, August 1, 2018 8:21 PM
To: Sosyak, Myronx 
Cc: Foley, Emma L ; limingji...@huawei.com; 
opnfv-tech-discuss@lists.opnfv.org
Subject: [OPNFV Helpdesk #59066] [Yardstick] contributor request

Hi Myron,

I have sent you an invite to join the Yardstick contributors group.

This will prompt you to create a Linux Foundation account if you don't already 
have one. Please choose a username without spaces or special characters as 
Gerrit requires a valid unix username.

You will also need to sign the individual IP Policy[1] and upload an SSH public 
key in Gerrit[2] before you can upload code. If you aren't already familiar 
with Gerrit, we have compiled a guide[3] for new users.

Don't hesitate to contact us at helpd...@opnfv.org if you run into any issues.

Welcome to OPNFV and thanks for contributing to Yardstick!

Regards,
Trevor Bramwell

[1] https://gerrit.opnfv.org/gerrit/#/settings/agreements
[2] https://gerrit.opnfv.org/gerrit/#/settings/ssh-keys
[3] https://docs.releng.linuxfoundation.org/en/latest/gerrit.html

On Wed Aug 01 02:40:06 2018, myronx.sos...@intel.com wrote:
> Hi
> 
> I would like to participate in OPNFV Yardstick project. Please add me 
> as contributor to this project.
> 
> Regards,
>   Myron
> --
> Intel Research and Development Ireland Limited Registered in Ireland 
> Registered Office: Collinstown Industrial Park, Leixlip, County 
> Kildare Registered Number: 308263
> 
> 
> This e-mail and any attachments may contain confidential material for 
> the sole use of the intended recipient(s). Any review or distribution 
> by others is strictly prohibited. If you are not the intended 
> recipient, please contact the sender and delete all copies.





-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21715): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21715
Mute This Topic: https://lists.opnfv.org/mt/24083730/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[opnfv-tech-discuss] 转发: Yardstick weekly meeting - Aug 7th

2018-08-06 Thread limingjiang
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:Microsoft Exchange Server 2010
VERSION:2.0
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
DTSTART:16010101T00
TZOFFSETFROM:+
TZOFFSETTO:+
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T00
TZOFFSETFROM:+
TZOFFSETTO:+
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
ORGANIZER;CN="Foley, Emma L";SENT-BY="MAILTO:limingji...@huawei.com":MAILTO:emm
 a.l.fo...@intel.com
ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=opnfv-tech
 -disc...@lists.opnfv.org:MAILTO:opnfv-tech-discuss@lists.opnfv.org
DESCRIPTION;LANGUAGE=zh-CN:Today’s Agenda - 2018 07/08 (08:30 UTC)\n•  
  Action point follow-up 5'\n•   Gambia Schedule update\n• 
   Ubuntu 18.04\n•   test case renaming\n•   Yardstick k8s mani
 fest\n•   AoB 5'\n\nYou can also add topics in the Agenda on the wik
 i\n\nMeeting 
 Logistics\n•   Tuesdays UTC 08h30 - 09h00 (Asia and Europe Slot)\n
 •   zoom:  https://zoom.us/j/5014627785\n•   IRC channel: #opn
 fv-yardstick\n•   chair by Rex Lee\n
 •   See Yardstick Meetings for details and minutes of meeting\n\n\n
SUMMARY;LANGUAGE=zh-CN:转发: Yardstick weekly meeting - Aug 7th
DTSTART;TZID=UTC:20180807T083000
DTEND;TZID=UTC:20180807T09
UID:04008200E00074C5B7101A82E008D03E734479C7D301000
 01000A360706B3A279C468F9FD0EADE57E8C7
RECURRENCE-ID;TZID=UTC:20180807T083000
CLASS:PUBLIC
PRIORITY:5
DTSTAMP:20180329T235413Z
TRANSP:OPAQUE
STATUS:CONFIRMED
SEQUENCE:0
LOCATION;LANGUAGE=zh-CN:https://zoom.us/j/5014627785   
X-MICROSOFT-CDO-APPT-SEQUENCE:0
X-MICROSOFT-CDO-OWNERAPPTID:-757254174
X-MICROSOFT-CDO-BUSYSTATUS:TENTATIVE
X-MICROSOFT-CDO-INTENDEDSTATUS:BUSY
X-MICROSOFT-CDO-ALLDAYEVENT:FALSE
X-MICROSOFT-CDO-IMPORTANCE:1
X-MICROSOFT-CDO-INSTTYPE:3
X-MICROSOFT-DISALLOW-COUNTER:FALSE
END:VEVENT
END:VCALENDAR


[opnfv-tech-discuss] OVN4NFV - Discuss about OVN for networking workloads and logistics to create OVN repository

2018-08-06 Thread Srini
Hi Trinath,

Ritu and I will join tomorrow meeting to discuss logistics to create OVN 
repository.
As part of that, we will present the requirements and what we did in OVN to 
realize assigning multiple interfaces to containers.
I hope we will get chance for ½ hour.

Also, can you share details on how to join the meeting?

Thanks
Srini



-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21717): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21717
Mute This Topic: https://lists.opnfv.org/mt/24217788/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [opnfv-tech-discuss] OVN4NFV - Discuss about OVN for networking workloads and logistics to create OVN repository

2018-08-06 Thread Trinath Somanchi (NXP)
Hi Srini-

I'm sorry for the late reply for the previous mail. I was thinking on how the 
new repo can reside within the ovn4nfv repo.

I have seen certain forked repos which reside either in company external git or 
contributors external git.

I was checking with OPNFV guys internally.  Further forked new repo may require 
additional Jenkins jobs to verify the functionality.

And this requires support from OPNFV team.

Let's discuss this in today's OVN meeting and I will add this discussion to the 
agenda [1].

OVN4NFV weekly meetings are IRC only meetings. Please find more info at [1].

/Trinath

[1] https://wiki.opnfv.org/display/OV/Meeting+Agenda


From: Addepalli, Srinivasa R [mailto:srinivasa.r.addepa...@intel.com]
Sent: Tuesday, August 7, 2018 8:49 AM
To: Trinath Somanchi 
Cc: opnfv-tech-discuss@lists.opnfv.org; Sood, Ritu 
Subject: OVN4NFV - Discuss about OVN for networking workloads and logistics to 
create OVN repository

Hi Trinath,

Ritu and I will join tomorrow meeting to discuss logistics to create OVN 
repository.
As part of that, we will present the requirements and what we did in OVN to 
realize assigning multiple interfaces to containers.
I hope we will get chance for ½ hour.

Also, can you share details on how to join the meeting?

Thanks
Srini



-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21718): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21718
Mute This Topic: https://lists.opnfv.org/mt/24217788/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[opnfv-tech-discuss] [OVN4NFV] Weekly Meeting (7 August 2018)

2018-08-06 Thread Trinath Somanchi
Hi OVN4NFV team-

Please find the agenda for today's IRC based weekly meeting -  at
https://wiki.opnfv.org/display/OV/Meeting+Agenda


Tuesday (Weekly) meetings

Meeting Time: 1530 to 1630 UTC

*EST/ET:* 1030 to 1130 HRS

*PST/PT:* 0730 to 0830 HRS

*IST:* 2100 to 2200 HRS

(Please co-relate with Day light saving (if any) with India Standard Time)

/Trinath

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21719): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21719
Mute This Topic: https://lists.opnfv.org/mt/24218058/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal is being discussed in the TSC

2018-08-06 Thread Bob Monkman
Ok for me as well.

Robert (Bob) Monkman
Director, Networking Software Strategy & Ecosystem Programs
Arm
150 Rose Orchard Way
San Jose, Ca 95134
M: +1.510.676.5490
Skype: robert.monkman

From: opnfv-tech-discuss@lists.opnfv.org  
On Behalf Of Xuan Jia
Sent: Thursday, August 2, 2018 2:18 AM
To: Wenjing Chu 
Cc: Tina Tsou ; georg.k...@ericsson.com; 
gergely.csat...@nokia.com; TECH-DISCUSS OPNFV 
; Fu Qiao ; Stephen 
Wong ; brian.j.ske...@intel.com; Rossella Sblendido 
; julien...@gmail.com; fatih.degirme...@ericsson.com; 
opnfv-...@lists.opnfv.org; r-m...@cq.jp.nec.com; Rao, Sridhar 

Subject: Re: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal 
is being discussed in the TSC

 August 16th is okay for me.

Thanks

Xuan Jia

Project Manager

Network & IT Technology Research Center China Mobile Research Institute

32 Xuanwumen West Street, Xicheng Distirct, Beijing 100032, China

Mobile: (+86) 13811000575

E-mail: jiax...@chinamobile.com


Wenjing Chu mailto:wenjing@huawei.com>> 
于2018年8月2日周四 上午8:31写道:
Thanks for all the interests… Please continue to let us know if you can 
participate or someone in your project can. We clearly want representation from 
container4nfv, installers that are producing k8s, edge cloud, data path, 
testing projects that are interested in cloud native testing … and all of you 
really.

I’d propose that we use Bin’s meeting slot for a kickoff community meeting as a 
start and level setting, and choose how we want to meet in future. I’m taking 
time off myself next week, but August 16 works for me.

Bin, would it be OK that we take the whole hour for August 16?
And does that time work for everyone?

Regards
Wenjing



From: Tina Tsou [mailto:tina.t...@arm.com]
Sent: Wednesday, August 01, 2018 3:13 PM
To: Georg Kunz mailto:georg.k...@ericsson.com>>; 
Gergely Csatari mailto:gergely.csat...@nokia.com>>; 
Wenjing Chu mailto:wenjing@huawei.com>>; 
opnfv-tech-discuss@lists.opnfv.org
Cc: jason.jiax...@gmail.com; 
fuq...@chinamobile.com; Stephen Wong 
mailto:stephen.wo...@huawei.com>>; brian.j.skerry 
mailto:brian.j.ske...@intel.com>>; Rossella Sblendido 
mailto:rsblend...@suse.com>>; julienjut 
mailto:julien...@gmail.com>>; Fatih Degirmenci 
mailto:fatih.degirme...@ericsson.com>>; TSC 
OPNFV mailto:opnfv-...@lists.opnfv.org>>; Ryota Mibu 
mailto:r-m...@cq.jp.nec.com>>; Sridhar K. N. Rao 
mailto:sridhar@spirent.com>>
Subject: RE: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal 
is being discussed in the TSC

Dear Wenjing,

We discussed it before, I’m interested to participate in.


Thank you,
Tina Tsou
Enterprise Architect
Arm
tina.t...@arm.com
+1 (408)931-3833

From: Georg Kunz mailto:georg.k...@ericsson.com>>
Sent: Wednesday, August 1, 2018 3:08 PM
To: Gergely Csatari 
mailto:gergely.csat...@nokia.com>>; Wenjing Chu 
mailto:wenjing@huawei.com>>; 
opnfv-tech-discuss@lists.opnfv.org
Cc: jason.jiax...@gmail.com; 
fuq...@chinamobile.com; Stephen Wong 
mailto:stephen.wo...@huawei.com>>; brian.j.skerry 
mailto:brian.j.ske...@intel.com>>; Rossella Sblendido 
mailto:rsblend...@suse.com>>; julienjut 
mailto:julien...@gmail.com>>; Tina Tsou 
mailto:tina.t...@arm.com>>; Fatih Degirmenci 
mailto:fatih.degirme...@ericsson.com>>; TSC 
OPNFV mailto:opnfv-...@lists.opnfv.org>>; Ryota Mibu 
mailto:r-m...@cq.jp.nec.com>>; Sridhar K. N. Rao 
mailto:sridhar@spirent.com>>
Subject: RE: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal 
is being discussed in the TSC

Hi,

Count me in, too.

Best regards
Georg

From: 
opnfv-tech-discuss@lists.opnfv.org 
mailto:opnfv-tech-discuss@lists.opnfv.org>> 
On Behalf Of Gergely Csatari
Sent: Wednesday, August 1, 2018 12:47 PM
To: Wenjing Chu mailto:wenjing@huawei.com>>; 
opnfv-tech-discuss@lists.opnfv.org
Cc: jason.jiax...@gmail.com; 
fuq...@chinamobile.com; Stephen Wong 
mailto:stephen.wo...@huawei.com>>; Georg Kunz 
mailto:georg.k...@ericsson.com>>; brian.j.skerry 
mailto:brian.j.ske...@intel.com>>; Rossella Sblendido 
mailto:rsblend...@suse.com>>; julienjut 
mailto:julien...@gmail.com>>; Tina Tsou 
mailto:tina.t...@arm.com>>; Fatih Degirmenci 
mailto:fatih.degirme...@ericsson.com>>; TSC 
OPNFV mailto:opnfv-...@lists.opnfv.org>>; Ryota Mibu 
mailto:r-m...@cq.jp.nec.com>>; Sridhar K. N. Rao 
mailto:sridhar@spirent.com>>
Subject: Re: [opnfv-tech-discuss] The OPNFV Cloud Native working group proposal 
is being discussed in the TSC

Hi,

I would be happy to participate.

Br,
Gerg0

From: 
opnfv-tech-discuss@lists.opnfv.org

[opnfv-tech-discuss] Look for Discussion Topics of Weekly Technical Discussion this Thursday August 9th

2018-08-06 Thread Bin Hu
Hello community,



On this Thursday August 9th, we originally planned to discuss a strategy of how 
to streamline and integrate different testing tools by Mark 
Beierl. However, this topic was 
deferred for 2 weeks (now on August 23rd).



Thus we are looking for discussion topics of Weekly Technical Discussion this 
Thursday August 9th. Please let me know if you want to bring any topic for 
discussion.



Thank you

Bin




-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#21721): 
https://lists.opnfv.org/g/opnfv-tech-discuss/message/21721
Mute This Topic: https://lists.opnfv.org/mt/24218370/21656
Group Owner: opnfv-tech-discuss+ow...@lists.opnfv.org
Unsubscribe: https://lists.opnfv.org/g/opnfv-tech-discuss/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-