Re: [openstack-dev] .pem file and python-heatclient call

2017-11-10 Thread David Gabriel
Dears,

Do you have any idea to work arround this problem by deactivating the check
of the certificate ?
I have this line in my code but the check is still processed. What do you
suggest ?

stack = heat.stacks.create(stack_name=stack_name,
template=nct_template, parameters={}, *insecure=True*)


2017-11-09 8:51 GMT+01:00 David Gabriel <davidgab...@gmail.com>:

> Dears,
>
> I want to use use a .pem file to call python-heatclient API in order to
> create stacks (Openstack address is based on https).
> I am wondering, where to copy this pem file and how to refer it ?
> Bellow the errors I got:
>
>   File "/usr/lib/python2.7/dist-packages/heatclient/v1/stacks.py", line
> 109, in create
> data=kwargs, headers=headers)
>   File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
> 223, in json_request
> resp = self._http_request(url, method, **kwargs)
>   File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
> 166, in _http_request
> **kwargs)
>   File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 53,
> in request
> return session.request(method=method, url=url, **kwargs)
>   File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py",
> line 468, in request
> resp = self.send(prep, **send_kwargs)
>   File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py",
> line 576, in send
> r = adapter.send(request, **kwargs)
>   File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py",
> line 447, in send
> raise SSLError(e, request=request)
> SSLError: [Errno 1] _ssl.c:510: error:14090086:SSL
> routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
> 127.0.0.1 - - [08/Nov/2017 20:34:56] "POST /stack_create HTTP/1.1" 500 2801
>
> Please tell me where to put my .pem and how to refer it in the code to
> work with python heatclient ?
>
> Thanks in advance.
> Best regards.
>
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] Creating an instance with specified subNet via Dashboard

2017-11-28 Thread David Gabriel
Dears,

I cretaed a network with 2 sub-networks.
Now, I want to create an instance and specify that this instance should get
an adsress from the second sub-network.
I am using the Dashboard but I do not know how to make this preference ?
Currently I have found some links (below) but all of them are suggesting
solution using commands.
Could you please explain to how to make the sub-network preference ?

Best regards.
Thanks in advance.

https://specs.openstack.org/openstack/nova-specs/specs/juno/approved/selecting-subnet-when-creating-vm.html
https://blueprints.launchpad.net/nova/+spec/selecting-subnet-when-creating-vm
http://ibm-blue-box-help.github.io/help-documentation/openstack/userdocs/Creating-an-Instance-with-a-Specific-Fixed-IP/
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Openstack] generation of .pem file

2017-11-09 Thread David Gabriel
My objective is to create a stack using Heat.
Initially, my code worked properly with http access but when our Openstack
is updated the access is becoming via https so I got the errors I sent in
the previous email.
So I think I need to *authenticate *using the .pem certificate.
But, I don't know where exactely (which location) I put the .pem file in
order to be visible to the heatclient (or keystone) and how shall I update
my code ?

I am confusing a little bit!
Thanks in advance.
Best regards.

2017-11-09 9:05 GMT+01:00 Juan Antonio Osorio <jaosor...@gmail.com>:

> Alright,
>
> So, first question. What do you actually want to do? Do you need to
> authenticate with the heat endpoint with TLS (using client certificates) ?
> Or, do you want to merely use TLS to communicate with Heat and you're
> getting this verification issue?
>
> On Wed, Nov 8, 2017 at 10:48 PM, David Gabriel <davidgab...@gmail.com>
> wrote:
>
>> I forget to send the errors I got:
>>
>>   File "/usr/lib/python2.7/dist-packages/heatclient/v1/stacks.py", line
>> 109, in create
>> data=kwargs, headers=headers)
>>   File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py",
>> line 223, in json_request
>> resp = self._http_request(url, method, **kwargs)
>>   File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py",
>> line 166, in _http_request
>> **kwargs)
>>   File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line
>> 53, in request
>> return session.request(method=method, url=url, **kwargs)
>>   File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py",
>> line 468, in request
>> resp = self.send(prep, **send_kwargs)
>>   File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py",
>> line 576, in send
>> r = adapter.send(request, **kwargs)
>>   File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py",
>> line 447, in send
>> raise SSLError(e, request=request)
>> SSLError: [Errno 1] _ssl.c:510: error:14090086:SSL
>> routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
>> 127.0.0.1 - - [08/Nov/2017 20:34:56] "POST /stack_create HTTP/1.1" 500
>> 2801
>>
>>
>> 2017-11-08 21:43 GMT+01:00 David Gabriel <davidgab...@gmail.com>:
>>
>>> Dear Juan,
>>>
>>> Thanks so much for your reply.
>>> I fact, the command you suggest leads to the structure of a .pem file
>>> like it is shown in the reference you provide.
>>>
>>> Let me please ask another question related to the new pem file.
>>> In fact, I want to use use it in to call python-heatclient API in order
>>> to create stacks (Openstack address is based on https).
>>> I am wondering, where to copy this pem file and how to refer it ?
>>>
>>> Thanks in advance.
>>> Best regards.
>>>
>>>
>>>
>>> 2017-11-08 15:39 GMT+01:00 Juan Antonio Osorio <jaosor...@gmail.com>:
>>>
>>>> Hello,
>>>>
>>>> You need to verify the files and check how they look like. A good guide
>>>> to do this is this one http://how2ssl.com/articles/wo
>>>> rking_with_pem_files/ .
>>>> .cert and .key are not actual formats, but might actually contain the
>>>> cert and the key in PEM format. The main giveaway is that they should
>>>> contain the header. If you will use the file for HAProxy, then you need the
>>>> certificate and key in the same file. So you would do something like this:
>>>>
>>>> $ cat mycertificate.cert  mykey.key > cert-and-key.pem
>>>>
>>>> And the resulting file is something you could use for your HAProxy
>>>> instance. But again, it all depends on what you will use it for.
>>>>
>>>> On Wed, Nov 8, 2017 at 3:36 PM, David Gabriel <davidgab...@gmail.com>
>>>> wrote:
>>>>
>>>>> Dears,
>>>>>
>>>>> I need to generate the .pem file based on certifcate files (.cert).
>>>>> The key (.key file) is available too.
>>>>> All my files can be read as text files.
>>>>> Could you please detail the procedure for this ?
>>>>> I am using ubuntu as OS.
>>>>>
>>>>> Thanks in advance.
>>>>> Best regards.
>>>>>
>>>>> 
>>>>> __
>>>>> OpenStack Development Mailing List (not for usage questions)
>>>>> Unsubscribe: openstack-dev-requ...@lists.op
>>>>> enstack.org?subject:unsubscribe
>>>>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Juan Antonio Osorio R.
>>>> e-mail: jaosor...@gmail.com
>>>>
>>>>
>>>> ___
>>>> Mailing list: http://lists.openstack.org/cgi
>>>> -bin/mailman/listinfo/openstack
>>>> Post to : openst...@lists.openstack.org
>>>> Unsubscribe : http://lists.openstack.org/cgi
>>>> -bin/mailman/listinfo/openstack
>>>>
>>>>
>>>
>>
>
>
> --
> Juan Antonio Osorio R.
> e-mail: jaosor...@gmail.com
>
>
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] generation of .pem file

2017-11-08 Thread David Gabriel
Dears,

I need to generate the .pem file based on certifcate files (.cert).
The key (.key file) is available too.
All my files can be read as text files.
Could you please detail the procedure for this ?
I am using ubuntu as OS.

Thanks in advance.
Best regards.
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Openstack] generation of .pem file

2017-11-08 Thread David Gabriel
Dear Juan,

Thanks so much for your reply.
I fact, the command you suggest leads to the structure of a .pem file like
it is shown in the reference you provide.

Let me please ask another question related to the new pem file.
In fact, I want to use use it in to call python-heatclient API in order to
create stacks (Openstack address is based on https).
I am wondering, where to copy this pem file and how to refer it ?

Thanks in advance.
Best regards.



2017-11-08 15:39 GMT+01:00 Juan Antonio Osorio <jaosor...@gmail.com>:

> Hello,
>
> You need to verify the files and check how they look like. A good guide to
> do this is this one http://how2ssl.com/articles/working_with_pem_files/ .
> .cert and .key are not actual formats, but might actually contain the cert
> and the key in PEM format. The main giveaway is that they should contain
> the header. If you will use the file for HAProxy, then you need the
> certificate and key in the same file. So you would do something like this:
>
> $ cat mycertificate.cert  mykey.key > cert-and-key.pem
>
> And the resulting file is something you could use for your HAProxy
> instance. But again, it all depends on what you will use it for.
>
> On Wed, Nov 8, 2017 at 3:36 PM, David Gabriel <davidgab...@gmail.com>
> wrote:
>
>> Dears,
>>
>> I need to generate the .pem file based on certifcate files (.cert).
>> The key (.key file) is available too.
>> All my files can be read as text files.
>> Could you please detail the procedure for this ?
>> I am using ubuntu as OS.
>>
>> Thanks in advance.
>> Best regards.
>>
>> 
>> __
>> OpenStack Development Mailing List (not for usage questions)
>> Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscrib
>> e
>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>
>>
>
>
> --
> Juan Antonio Osorio R.
> e-mail: jaosor...@gmail.com
>
>
> ___
> Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/
> openstack
> Post to : openst...@lists.openstack.org
> Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/
> openstack
>
>
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Openstack] generation of .pem file

2017-11-08 Thread David Gabriel
I forget to send the errors I got:

  File "/usr/lib/python2.7/dist-packages/heatclient/v1/stacks.py", line
109, in create
data=kwargs, headers=headers)
  File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
223, in json_request
resp = self._http_request(url, method, **kwargs)
  File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
166, in _http_request
**kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 53,
in request
return session.request(method=method, url=url, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line
468, in request
resp = self.send(prep, **send_kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line
576, in send
r = adapter.send(request, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py", line
447, in send
raise SSLError(e, request=request)
SSLError: [Errno 1] _ssl.c:510: error:14090086:SSL
routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
127.0.0.1 - - [08/Nov/2017 20:34:56] "POST /stack_create HTTP/1.1" 500 2801


2017-11-08 21:43 GMT+01:00 David Gabriel <davidgab...@gmail.com>:

> Dear Juan,
>
> Thanks so much for your reply.
> I fact, the command you suggest leads to the structure of a .pem file like
> it is shown in the reference you provide.
>
> Let me please ask another question related to the new pem file.
> In fact, I want to use use it in to call python-heatclient API in order to
> create stacks (Openstack address is based on https).
> I am wondering, where to copy this pem file and how to refer it ?
>
> Thanks in advance.
> Best regards.
>
>
>
> 2017-11-08 15:39 GMT+01:00 Juan Antonio Osorio <jaosor...@gmail.com>:
>
>> Hello,
>>
>> You need to verify the files and check how they look like. A good guide
>> to do this is this one http://how2ssl.com/articles/wo
>> rking_with_pem_files/ .
>> .cert and .key are not actual formats, but might actually contain the
>> cert and the key in PEM format. The main giveaway is that they should
>> contain the header. If you will use the file for HAProxy, then you need the
>> certificate and key in the same file. So you would do something like this:
>>
>> $ cat mycertificate.cert  mykey.key > cert-and-key.pem
>>
>> And the resulting file is something you could use for your HAProxy
>> instance. But again, it all depends on what you will use it for.
>>
>> On Wed, Nov 8, 2017 at 3:36 PM, David Gabriel <davidgab...@gmail.com>
>> wrote:
>>
>>> Dears,
>>>
>>> I need to generate the .pem file based on certifcate files (.cert).
>>> The key (.key file) is available too.
>>> All my files can be read as text files.
>>> Could you please detail the procedure for this ?
>>> I am using ubuntu as OS.
>>>
>>> Thanks in advance.
>>> Best regards.
>>>
>>> 
>>> __
>>> OpenStack Development Mailing List (not for usage questions)
>>> Unsubscribe: openstack-dev-requ...@lists.op
>>> enstack.org?subject:unsubscribe
>>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>>
>>>
>>
>>
>> --
>> Juan Antonio Osorio R.
>> e-mail: jaosor...@gmail.com
>>
>>
>> ___
>> Mailing list: http://lists.openstack.org/cgi
>> -bin/mailman/listinfo/openstack
>> Post to : openst...@lists.openstack.org
>> Unsubscribe : http://lists.openstack.org/cgi
>> -bin/mailman/listinfo/openstack
>>
>>
>
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] .pem file and python-heatclient call

2017-11-08 Thread David Gabriel
Dears,

I want to use use a .pem file to call python-heatclient API in order to
create stacks (Openstack address is based on https).
I am wondering, where to copy this pem file and how to refer it ?
Bellow the errors I got:

  File "/usr/lib/python2.7/dist-packages/heatclient/v1/stacks.py", line
109, in create
data=kwargs, headers=headers)
  File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
223, in json_request
resp = self._http_request(url, method, **kwargs)
  File "/usr/lib/python2.7/dist-packages/heatclient/common/http.py", line
166, in _http_request
**kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 53,
in request
return session.request(method=method, url=url, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line
468, in request
resp = self.send(prep, **send_kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line
576, in send
r = adapter.send(request, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py", line
447, in send
raise SSLError(e, request=request)
SSLError: [Errno 1] _ssl.c:510: error:14090086:SSL
routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
127.0.0.1 - - [08/Nov/2017 20:34:56] "POST /stack_create HTTP/1.1" 500 2801

Please tell me where to put my .pem and how to refer it in the code to work
with python heatclient ?

Thanks in advance.
Best regards.
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] ping between 2 instances using an ovs in the middle

2018-01-16 Thread David Gabriel
Dears,

I am writing you this email to look for your help in order to fix a
problem, I am facing since a while, related to creating two ubuntu
instances in Openstack (Fuel 9.2 for Mitaka) and setting an ovs bridge in
each VM.
Here is the problem description:
I have defined two instances called VM1 and VM2 and ovs bridge, each one of
them is deployed in one Virtual Machine (VM) based on this simple topology:
*VM1* ---LAN1*OVS*---LAN2--- *VM2*

I used the following commands, taken from some tutorial, for OVS:

ovs-vsctl add-br mybridge1
ifconfig mybridge1 up
ovs-vsctl add-port eth1 mybridge1
ifconfig eth1 0
ovs-vsctl add-port eth1 mybridge1 ovs-vsctl set-controller mybridge
tcp:AddressOfController:6633

Then I tried to make the ping between the two VMs but it fails !
Could you please tell/guide me how to fix this problem.

Thanks in advance.
Best regards.
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev