Thanks Gary
Thanks & Regards, Chinnappa Raju SENIOR QUALITY TESTER ECOMP Open Source Automation From: Gary Wu [mailto:[email protected]] Sent: Tuesday, September 26, 2017 1:31 PM To: RAJU, CHINNAPPA <[email protected]>; KOYA, KISHORE <[email protected]> Cc: TALASILA, MANOOP <[email protected]>; HOTZE, BECKY L <[email protected]>; FLOOD, JERRY <[email protected]>; '[email protected]' <[email protected]> Subject: [integration] RE: Change in integration[master]: Add chrome drive installation and chrome download Hi Chinnappa, Yes, we’re installing chrome in the CSIT environments: https://gerrit.onap.org/r/#/c/14711/<https://urldefense.proofpoint.com/v2/url?u=https-3A__gerrit.onap.org_r_-23_c_14711_&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=ubAfQFQ12AV403mBoaoiQQ&m=lz9VVl5EdaFbUz41jFl4Ww8aMSb98AKPx-21sB2B4TE&s=U_P84q4lht6b28MwwNiyS-EIlnopgtezsfwH3r0e3sU&e=> The change was submitted last week and is pending LF review/merge. Thanks, Gary From: RAJU, CHINNAPPA [mailto:[email protected]] Sent: Tuesday, September 26, 2017 11:23 AM To: KOYA, KISHORE <[email protected]<mailto:[email protected]>>; Gary Wu <[email protected]<mailto:[email protected]>> Cc: TALASILA, MANOOP <[email protected]<mailto:[email protected]>>; HOTZE, BECKY L <[email protected]<mailto:[email protected]>>; FLOOD, JERRY <[email protected]<mailto:[email protected]>> Subject: RE: Change in integration[master]: Add chrome drive installation and chrome download Hi Gary, We’re not sure if this would work when we create a docker image and run the same for installing the Chrome. In E2E test suite repo, we had a docker image with all the Robot installations including the Chrome browser installation. But here in CSIT since we’ve the Robot installation in run-csit.sh, it doesn’t make sense to build a docker image only for Chrome installation. Instead can we have Chrome browser installed on these VMs as a pre-setup? Since a browser is required for many applications to run their test code, this might be a better thing to have. Thanks & Regards, Chinnappa Raju SENIOR QUALITY TESTER ECOMP Open Source Automation From: KOYA, KISHORE Sent: Tuesday, September 26, 2017 11:48 AM To: Gary Wu <[email protected]<mailto:[email protected]>> Cc: RAJU, CHINNAPPA <[email protected]<mailto:[email protected]>>; TALASILA, MANOOP <[email protected]<mailto:[email protected]>>; HOTZE, BECKY L <[email protected]<mailto:[email protected]>> Subject: RE: Change in integration[master]: Add chrome drive installation and chrome download Added chrome download as docker file. https://gerrit.onap.org/r/#/c/15643/<https://urldefense.proofpoint.com/v2/url?u=https-3A__gerrit.onap.org_r_-23_c_15643_&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=ubAfQFQ12AV403mBoaoiQQ&m=lz9VVl5EdaFbUz41jFl4Ww8aMSb98AKPx-21sB2B4TE&s=jlmh5GVT7ZnHmn7UKeiXXHpvKsWhQWTUNerfle3Q-1w&e=> -----Original Message----- From: Gary Wu (ONAP Code Review) [mailto:[email protected]] Sent: Monday, September 25, 2017 5:24 PM To: KOYA, KISHORE <[email protected]<mailto:[email protected]>> Cc: ONAP Jobbuilder <[email protected]<mailto:[email protected]>> Subject: Change in integration[master]: Add chrome drive installation and chrome download Gary Wu has posted comments on this change. Change subject: Add chrome drive installation and chrome download ...................................................................... Patch Set 1: Code-Review-2 (1 comment) https://urldefense.proofpoint.com/v2/url?u=http-3A__gerrit.onap.org_r_-23_c_15225_1_test_csit_run-2Dcsit.sh&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=l60f7HRLCR0s_3OHo7cIn6ruL0gu3vQtW9bwiyLpBLs&e= File test/csit/run-csit.sh: PS1, Line 133: : # Install chrome : RUN wget -q -O - https://urldefense.proofpoint.com/v2/url?u=https-3A__dl-2Dssl.google.com_linux_linux-5Fsigning-5Fkey.pub&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=uKiVgnkdy_ppfL8SMZtzmwz1LuZ_LeheNZ0BVrMD04Y&e= | apt-key add - && \ : echo "deb [arch=amd64] https://urldefense.proofpoint.com/v2/url?u=http-3A__dl.google.com_linux_chrome_deb_&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=bV4QgBlcKjWZxdr_oBxVFEy6qeyz7piPoZBOZ9EmP9g&e= stable main" >> /etc/apt/sources.list.d/google.list && \ : apt-get update && \ : apt-get --assume-yes install google-chrome-stable This would not work. RUN is a docker command. Also, we cannot run apt-get since we don't have root privileges. The installation of chrome has been submitted in https://urldefense.proofpoint.com/v2/url?u=https-3A__gerrit.onap.org_r_-23_c_14711_&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=bK1zSK0_eRu-sYFzWtpa4HjMZv4tq-ipq9sevN2571Q&e= . -- To view, visit https://urldefense.proofpoint.com/v2/url?u=http-3A__gerrit.onap.org_r_15225&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=l7b4jL-n-MBwS2hSg28ldhwgT8-n2hFz41laiO9MiV8&e= To unsubscribe, visit https://urldefense.proofpoint.com/v2/url?u=http-3A__gerrit.onap.org_r_settings&d=DwIDaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=t6xw3To2DNA95dIV83mG2w&m=qPliDh7yrZPB4hXZKb9aDVA8XaPFsJ4ZEkGzV3hi1yo&s=RxBO6P9S7zZenMeqhZ4JrjIJLcF4O2PvX988lre7opo&e= Gerrit-MessageType: comment Gerrit-Change-Id: I0fe375ffb27c80d5fc700814f0c43262318c7640 Gerrit-PatchSet: 1 Gerrit-Project: integration Gerrit-Branch: master Gerrit-Owner: kishore koya <[email protected]<mailto:[email protected]>> Gerrit-Reviewer: Gary Wu <[email protected]<mailto:[email protected]>> Gerrit-Reviewer: ONAP Jobbuilder <[email protected]<mailto:[email protected]>> Gerrit-HasComments: Yes
_______________________________________________ onap-discuss mailing list [email protected] https://lists.onap.org/mailman/listinfo/onap-discuss
