Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-14 Thread Robert Collins
On 12 June 2015 at 10:49, ZZelle wrote: > Indeed, the doc[1] is unclear > > > git-review can be installed using: python setup.py install or pip install . Of those two things we only support "pip install ." - in part because you have much less control over mirrors, proxies and inferior SSL support

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
> -Original Message- > From: KARR, DAVID > Sent: Thursday, June 11, 2015 8:00 AM > To: OpenStack Development Mailing List (not for usage questions) > Subject: [openstack-dev] Looking for help getting git-review to > work over https > > *** Security Advisory:

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread Ian Cordasco
On 6/12/15, 14:46, "KARR, DAVID" wrote: >> -Original Message- >> From: Kevin L. Mitchell [mailto:kevin.mitch...@rackspace.com] >> Sent: Friday, June 12, 2015 12:05 PM >> To: openstack-dev@lists.openstack.org >> Subject: Re: [openstack-dev] Lookin

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
> -Original Message- > From: Ian Cordasco [mailto:ian.corda...@rackspace.com] > Sent: Friday, June 12, 2015 12:05 PM > To: OpenStack Development Mailing List (not for usage questions) > Subject: Re: [openstack-dev] Looking for help getting git-review to > work over https

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
> -Original Message- > From: Kevin L. Mitchell [mailto:kevin.mitch...@rackspace.com] > Sent: Friday, June 12, 2015 12:05 PM > To: openstack-dev@lists.openstack.org > Subject: Re: [openstack-dev] Looking for help getting git-review to > work over https > > On Fri, 2

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread Ian Cordasco
Sent: Friday, June 12, 2015 9:57 AM >> To: OpenStack Development Mailing List (not for usage questions) >> Subject: Re: [openstack-dev] Looking for help getting git-review to >> work over https >> >> Python has generally awful support for doing HTTPS over an HTTPS &g

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread Kevin L. Mitchell
On Fri, 2015-06-12 at 17:08 +, KARR, DAVID wrote: > Thanks. I already tried that. It's not even clear this is failing to > connect. I don't know what this is telling me. > -- > # pip install --proxy http://one.proxy.att.com:8080 . > Processing /home/dk068x/work/git-review >

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
> -Original Message- > From: Ian Cordasco [mailto:ian.corda...@rackspace.com] > Sent: Friday, June 12, 2015 9:57 AM > To: OpenStack Development Mailing List (not for usage questions) > Subject: Re: [openstack-dev] Looking for help getting git-review to > work over htt

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread Ian Cordasco
t; >I’m providing the appropriate https proxy url, as pip appears to be using >a https url. > >From: Asselin, Ramy [mailto:ramy.asse...@hp.com] > >Sent: Thursday, June 11, 2015 4:35 PM >To: OpenStack Development Mailing List (not for usage questions) >Subject: Re: [openstack-dev

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
lopment Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https David, FYI, I used corkscrew with pypi as well with another .ssh/config line of: Host pypi.python.org<http://pypi.python.org> ProxyCommand corkscrew 80 %h

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread Paul Michali
_setup_distribution = dist = klass(attrs) > > ... > > > > I’m providing the appropriate https proxy url, as pip appears to be using > a https url. > > > > *From:* Asselin, Ramy [mailto:ramy.asse...@hp.com] > *Sent:* Thursday, June 11, 2015 4:35 PM > &g

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread KARR, DAVID
ing the appropriate https proxy url, as pip appears to be using a https url. From: Asselin, Ramy [mailto:ramy.asse...@hp.com] Sent: Thursday, June 11, 2015 4:35 PM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-revie

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-12 Thread ZZelle
Hi David, Ok, sudo python setup.py install without pbr install is not working behind an http proxy. Because you should use sudo -E python setup.py install to pass http(s)_proxy ernv variables. But even if you do so python setup.py install will try to install pbr WITHOUT taking into account proxy

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Jeremy Stanley
On 2015-06-11 23:00:52 +0200 (+0200), ZZelle wrote: > > Following git config options are supported by git-review ( > https://review.openstack.org/116035) > >git config --global gitreview.scheme https >git config --global gitreview.port 443 > > BUT the feature was merged after 1.24 (it's

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Jeremy Stanley
On 2015-06-11 23:32:58 + (+), KARR, DAVID wrote: > I managed to install pip, but I don’t understand what “pip install > git-review” is doing. It doesn’t appear to be replacing the > already installed git-review. `pip install git-review` installs the latest git-review release from pypi.pyt

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Asselin, Ramy
gmail.com] Sent: Thursday, June 11, 2015 3:50 PM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https Indeed, the doc[1] is unclear git-review can be installed using: python setup.py install or pip inst

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https Indeed, the doc[1] is unclear git-review can be installed using: python setup.py install or pip install . [1]http://docs.openstack.org/infra/manual/developers.html#accessing-gerrit-over-https On Thu, Jun 11

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
Making progress. I didn’t realize I had to reset proxy vars after sudo. From: KARR, DAVID Sent: Thursday, June 11, 2015 4:16 PM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https ***Security

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
June 11, 2015 3:50 PM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https Indeed, the doc[1] is unclear git-review can be installed using: python setup.py install or pip install . [1]http://docs.open

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread ZZelle
ne 11, 2015 2:01 PM > > *To:* OpenStack Development Mailing List (not for usage questions) > *Subject:* Re: [openstack-dev] Looking for help getting git-review to > work over https > > > > Hi David, > > > Following git config options are supported by git-review ( >

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
, 2015 2:01 PM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https Hi David, Following git config options are supported by git-review (https://review.openstack.org/116035) git config --global

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread ZZelle
ack/horizon.git did not > work. > > Could not connect to gerrit. > > Enter your gerrit username: > > --- > > > > *From:* Paul Michali [mailto:p...@michali.net] > *Sent:* Thursday, June 11, 2015 11:09 AM > > *To:* OpenStack Development Ma

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
mailto:yorik@gmail.com>] Sent: Thursday, June 11, 2015 9:19 AM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https On Thu, Jun 11, 2015, 18:09 KARR, DAVID mailto:dk0...@att.com>> wrote: I co

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
> -Original Message- > From: Jeremy Stanley [mailto:fu...@yuggoth.org] > Sent: Thursday, June 11, 2015 1:11 PM > To: OpenStack Development Mailing List (not for usage questions) > Subject: Re: [openstack-dev] Looking for help getting git-review to > work over https >

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Jeremy Stanley
On 2015-06-11 19:53:25 + (+), KARR, DAVID wrote: > Ok, the output from "git remote -v" is this: > -- > originhttps://github.com/openstack/horizon.git (fetch) > originhttps://github.com/openstack/horizon.git (push) > --- > > So there's obviously nothi

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
11:09 AM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https Do you know if you have SSH access to the outside world through the firewall? Did you setup a proxy? I setup 'corkscrew' un

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
> -Original Message- > From: Kevin L. Mitchell [mailto:kevin.mitch...@rackspace.com] > Sent: Thursday, June 11, 2015 10:46 AM > To: openstack-dev@lists.openstack.org > Subject: Re: [openstack-dev] Looking for help getting git-review to > work over https > > On

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Paul Michali
nstack.org/ from my browser and from the > command line with curl. > > > > The “ls-remote” command returns without error (or any other output). > > > > *From:* Yuriy Taraday [mailto:yorik....@gmail.com] > *Sent:* Thursday, June 11, 2015 9:19 AM > *To:* OpenStack De

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Kevin L. Mitchell
On Thu, 2015-06-11 at 16:42 +, KARR, DAVID wrote: > Concerning the question ‘Do you have "gerrit" remote already > configured?’, I guess I’d have to say I don’t know. I’ve followed > instructions for setting up my pub key, but I’m not sure exactly what > is entailed in “gerrit remote”. The "gi

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
nd returns without error (or any other output). From: Yuriy Taraday [mailto:yorik@gmail.com] Sent: Thursday, June 11, 2015 9:19 AM To: OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] Looking for help getting git-review to work over https On Thu, Jun 11, 2

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Yuriy Taraday
On Thu, Jun 11, 2015, 18:09 KARR, DAVID wrote: I could use some help with setting up git-review in a slightly unfriendly firewall situation. I'm trying to set up git-review on my CentOS7 VM, and our firewall blocks the non-standard ssh port. I'm following the instructions at http://docs.opensta

Re: [openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread Dulko, Michal
al Message- > From: KARR, DAVID [mailto:dk0...@att.com] > Sent: Thursday, June 11, 2015 5:00 PM > To: OpenStack Development Mailing List (not for usage questions) > Subject: [openstack-dev] Looking for help getting git-review to work over > https > > I could use some help wi

[openstack-dev] Looking for help getting git-review to work over https

2015-06-11 Thread KARR, DAVID
I could use some help with setting up git-review in a slightly unfriendly firewall situation. I'm trying to set up git-review on my CentOS7 VM, and our firewall blocks the non-standard ssh port. I'm following the instructions at http://docs.openstack.org/infra/manual/developers.html#accessing-