*** shakamunyi has joined #openstack-dns | 00:04 | |
*** nkinder has joined #openstack-dns | 00:24 | |
*** shakamunyi has quit IRC | 00:29 | |
*** ducttape_ has quit IRC | 00:31 | |
*** kei_yama has quit IRC | 00:43 | |
*** kei_yama has joined #openstack-dns | 00:43 | |
*** ducttape_ has joined #openstack-dns | 00:48 | |
*** ducttape_ has quit IRC | 00:49 | |
*** chlong has quit IRC | 00:55 | |
*** ducttape_ has joined #openstack-dns | 00:56 | |
*** ducttape_ has quit IRC | 01:01 | |
*** chlong has joined #openstack-dns | 01:12 | |
*** shakamunyi has joined #openstack-dns | 01:16 | |
*** nkinder has quit IRC | 01:24 | |
*** shakamunyi has quit IRC | 01:26 | |
*** serverascode has quit IRC | 01:48 | |
*** serverascode has joined #openstack-dns | 01:49 | |
*** stanzgy has joined #openstack-dns | 01:58 | |
*** kei_yama has quit IRC | 02:11 | |
*** kei_yama has joined #openstack-dns | 02:12 | |
*** boris-42 has quit IRC | 02:58 | |
*** chlong has quit IRC | 03:11 | |
*** richm has quit IRC | 03:20 | |
stanzgy | Could anyone help review this patch? https://review.openstack.org/#/c/184432/ | 03:44 |
---|---|---|
*** chlong has joined #openstack-dns | 03:50 | |
*** nihilifer has quit IRC | 05:11 | |
*** jschwarz has joined #openstack-dns | 05:43 | |
*** nihilifer has joined #openstack-dns | 06:19 | |
*** HenryG has quit IRC | 06:43 | |
*** andrewbogott_afk has quit IRC | 06:43 | |
*** andrewbogott_afk has joined #openstack-dns | 06:43 | |
*** HenryG has joined #openstack-dns | 06:44 | |
*** hetii has joined #openstack-dns | 06:58 | |
hetii | hi:) | 06:58 |
*** jschwarz has quit IRC | 07:01 | |
*** chlong has quit IRC | 07:39 | |
hetii | I still have issue with designate, cannot list domain or create, get always EndpointNotFound | 08:24 |
hetii | any idea how to dig it why ? | 08:24 |
ekarlso | hetii: hmmms, let's do a tmate session ? | 08:25 |
ekarlso | i'll help you look .. | 08:25 |
hetii | ekarlso: unfortunate I cannot give access to this server for outside user but I can check wahtever you need or have idea to check | 08:28 |
ekarlso | hetii: "designate --debug domain-list" < traceback | 08:28 |
hetii | ekarlso: http://pastebin.ca/3006635 | 08:32 |
ekarlso | hetii: I think I told u this yesterday but u need to create the designate endpoint without /v1 in it | 08:34 |
ekarlso | | 74e345b4df584175aca969f34d7a073c | RegionOne | http://xxx.xxx.xxx.xxx:9001/v1/ | http://xxx.xxx.xxx.xxx:9001/v1/ | http://xxx.xxx.xxx.xxx:9001/v1/ | 4d6e10ec2c204d149a02851f4967360a | < is what you have | 08:34 |
hetii | yes I try it also, without success | 08:34 |
ekarlso | what error do you get with that then ? | 08:34 |
*** nihilifer has quit IRC | 08:35 | |
hetii | here is the log from designate-api http://pastebin.ca/3006637 | 08:35 |
hetii | ekarlso: it was the same | 08:35 |
stanzgy | hetii: agreed with ekarlso, you shouldn't have 'v1' in endpoint url | 08:36 |
hetii | ok, will change that | 08:36 |
hetii | with / at the end or not? | 08:39 |
ekarlso | without /v1 | 08:39 |
stanzgy | hetii: with / at the end | 08:39 |
ekarlso | +1 stanzgy | 08:41 |
hetii | current endpoints: http://pastebin.ca/3006639 | 08:42 |
stanzgy | hetii: yea, seems good. any new errors? | 08:43 |
hetii | the same http://pastebin.ca/3006643 | 08:44 |
*** chlong has joined #openstack-dns | 08:44 | |
hetii | I wonder why when I run designate cli I don`t see any activity in keystone-all screen | 08:46 |
hetii | I suppose he should connect with it first or ? | 08:46 |
stanzgy | what's your designate client environment variables? 'env|grep OS' | 08:47 |
hetii | OS_ENDPOINT=http://xxx.xxx.xxx.xxx:9001/v1 | 08:47 |
stanzgy | hetii: you do not need to set OS_ENDPOINT in env. what's OS_REGION_NAME ? | 08:48 |
hetii | ok I unset OS_ENDPOINT and OS_REGION_NAME was not set | 08:49 |
hetii | and still the same issue | 08:50 |
stanzgy | try unset OS_ENDPOINT and set OS_REGION_NAME=RegionOne | 08:50 |
hetii | nope, still the same | 08:50 |
ekarlso | hetii: sigh.. | 08:51 |
ekarlso | hetii: can you do "set | grep ^OS" for me ? | 08:51 |
hetii | OSTYPE=linux-gnu | 08:52 |
hetii | OS_REGION_NAME=RegionOne | 08:52 |
stanzgy | hetii: just these two? | 08:53 |
hetii | yes | 08:53 |
ekarlso | hetii: .... you are missing OS_USERNAME and all that .. | 08:53 |
stanzgy | hetii: ohhhhhh | 08:53 |
hetii | Ok with variables I should set then ? | 08:54 |
stanzgy | hetii: you need source a 'openrc' file before you using openstack client | 08:54 |
stanzgy | hetii: here is a example 'openrc' file | 08:54 |
stanzgy | OS_USERNAME=admin | 08:54 |
stanzgy | OS_PASSWORD=admin | 08:54 |
stanzgy | OS_TENANT_NAME=admin | 08:54 |
stanzgy | OS_AUTH_URL=http://127.0.0.1:5000/v2.0 | 08:54 |
stanzgy | OS_REGION_NAME=RegionOne | 08:54 |
stanzgy | OS_NO_CACHE=1 | 08:55 |
stanzgy | OS_IDENTITY_API_VERSION=2.0 | 08:55 |
*** nihilifer has joined #openstack-dns | 08:55 | |
hetii | ok I use devstack at this moment, ok will source his file and check whats will be added | 08:55 |
hetii | ok now its look like http://pastebin.ca/3006650 | 08:57 |
stanzgy | hetii: works now? | 08:57 |
hetii | and now I got Unauthorized: Invalid user / password (Disable debug mode to suppress these details.) (HTTP 401) | 08:58 |
hetii | but its at least something else then before :) | 08:58 |
stanzgy | hetii: you should replace OS_TENANT_NAME/PASSWORD/USERNAME with your keystone account | 09:01 |
hetii | yep, I put there the admin account details like: http://pastebin.ca/3006658 and now I have connection | 09:02 |
ekarlso | hetii: works or ? | 09:03 |
hetii | and when I call designate domain-create --name designate-example.com. --email designate@example.org i got now: ERROR: The requested action did not complete successfully | 09:03 |
hetii | | Type | no_servers_configured | | 09:03 |
hetii | but suppose its just issue with my fresh configuration of designate where server-list show nothing | 09:05 |
hetii | about the issue with no endpoint I suggest that there should be raised some other error where OS_* variables are not set, otherwise its painful do guess what happens :) | 09:06 |
ekarlso | actually hetii I'm looking at that bug right now :p | 09:07 |
hetii | I see :) | 09:08 |
openstackgerrit | Endre Karlson proposed openstack/python-designateclient: V2 CLI Support https://review.openstack.org/133676 | 09:11 |
stanzgy | ekarlso: hi Endre, about yesterday discussion about basepython, later I tried set basepython=python2.7 and when run 'tox -epy34' it still pinned python to python2.7 instead of python3.4 | 09:12 |
stanzgy | ekarlso: you could see my comments for details | 09:13 |
ekarlso | stanzgy: yeah, i'll look at that after this :) | 09:13 |
stanzgy | ekarlso: :D | 09:16 |
*** km has quit IRC | 09:41 | |
*** km has joined #openstack-dns | 09:41 | |
ekarlso | hetii: what version of deignate client are you on ? | 09:48 |
ekarlso | can you do "designate --version" ? | 09:48 |
hetii | designate 1.1.1 | 09:49 |
openstackgerrit | Endre Karlson proposed openstack/python-designateclient: Log a more informative error upon EndpointNotFound https://review.openstack.org/184754 | 10:02 |
ekarlso | ^ stanzgy | 10:03 |
stanzgy | $ designate domain-list | 10:54 |
stanzgy | ERROR: No endpoint was found. Missing credentials? | 10:54 |
stanzgy | ekarlso: works good :P | 10:55 |
*** stanzgy has quit IRC | 10:59 | |
hetii | now its more clear,but maybe some word about openrc file or something as a tip ? | 11:00 |
*** untriaged-bot has joined #openstack-dns | 11:02 | |
untriaged-bot | Untriaged bugs so far: | 11:02 |
untriaged-bot | https://bugs.launchpad.net/designate/+bug/1456115 | 11:02 |
openstack | Launchpad bug 1456115 in Designate "DesignateContext.is_admin is false on admin tenant" [Undecided,In progress] - Assigned to stanzgy (stanzgy) | 11:02 |
untriaged-bot | https://bugs.launchpad.net/python-designateclient/+bug/1455083 | 11:02 |
openstack | Launchpad bug 1455083 in python-designateclient "record create call ignores 'description' param" [Undecided,Incomplete] - Assigned to DIV (div-unknown) | 11:02 |
*** untriaged-bot has quit IRC | 11:02 | |
*** ryanpetrello has quit IRC | 11:45 | |
*** ryanpetrello has joined #openstack-dns | 11:47 | |
*** HenryG has quit IRC | 11:47 | |
*** HenryG has joined #openstack-dns | 11:50 | |
*** chlong has quit IRC | 11:50 | |
*** stanzgy has joined #openstack-dns | 11:51 | |
*** chlong has joined #openstack-dns | 12:04 | |
*** stanzgy has quit IRC | 12:05 | |
ekarlso | hetii: nah, since the openrc stuff can vary from user to user | 12:11 |
*** stanzgy has joined #openstack-dns | 12:11 | |
*** richm has joined #openstack-dns | 12:17 | |
hetii | hmm as I see now I hve in my config rabbit_userid=my_user_name insdead his db id | 12:35 |
hetii | so how it is, should I use name of the use or his id ? | 12:36 |
ekarlso | hetii: sorry what ? | 12:43 |
hetii | in the file /etc/designate/designate.conf in default secion about RabbitMQ Config there is rabbit_userid | 12:45 |
hetii | and it should be the id of the use or name of it ? | 12:45 |
ekarlso | username of the rmq user u have for designate | 12:47 |
*** iraw_ has joined #openstack-dns | 12:50 | |
*** iraw_ has quit IRC | 12:53 | |
*** CaptTofu_ is now known as CaptTofu | 12:55 | |
openstackgerrit | Endre Karlson proposed openstack/python-designateclient: Log a more informative error upon EndpointNotFound https://review.openstack.org/184754 | 12:59 |
*** km has quit IRC | 13:01 | |
*** andrewbogott_afk is now known as andrewbogott | 13:05 | |
*** andrewbogott has joined #openstack-dns | 13:06 | |
*** andrewbogott is now known as andrewbogott_afk | 13:06 | |
*** andrewbogott_afk is now known as andrewbogott | 13:12 | |
*** andrewbogott has joined #openstack-dns | 13:12 | |
*** ducttape_ has joined #openstack-dns | 13:17 | |
*** kei_yama has quit IRC | 13:23 | |
*** marzif has quit IRC | 13:31 | |
*** marzif has joined #openstack-dns | 13:33 | |
*** ducttape_ has quit IRC | 13:34 | |
hetii | in other server I see something like this: http://pastebin.ca/3006755 | 13:36 |
hetii | btw for service:central i set backend_driver = fake, where I can see logs from this driver ? | 13:38 |
*** stanzgy has quit IRC | 13:43 | |
hetii | hmm I update designateclient to version 1.2.0 and now I get such issue: http://pastebin.ca/3006763 | 13:47 |
*** hetii has quit IRC | 13:55 | |
*** ducttape_ has joined #openstack-dns | 14:22 | |
*** ducttape_ has quit IRC | 14:22 | |
*** ducttape_ has joined #openstack-dns | 14:22 | |
*** nihilifer has quit IRC | 14:30 | |
*** ducttape_ has quit IRC | 14:31 | |
*** jschwarz has joined #openstack-dns | 16:29 | |
*** jmcbride has joined #openstack-dns | 16:34 | |
*** ducttape_ has joined #openstack-dns | 16:54 | |
ducttape_ | who has etherpad url please??? | 16:57 |
timsim | https://etherpad.openstack.org/p/designate-vancouver-session-5 | 16:58 |
*** untriaged-bot has joined #openstack-dns | 17:02 | |
untriaged-bot | Untriaged bugs so far: | 17:02 |
untriaged-bot | https://bugs.launchpad.net/designate/+bug/1456115 | 17:02 |
openstack | Launchpad bug 1456115 in Designate "DesignateContext.is_admin is false on admin tenant" [Undecided,In progress] - Assigned to stanzgy (stanzgy) | 17:02 |
untriaged-bot | https://bugs.launchpad.net/python-designateclient/+bug/1455083 | 17:02 |
openstack | Launchpad bug 1455083 in python-designateclient "record create call ignores 'description' param" [Undecided,Incomplete] - Assigned to DIV (div-unknown) | 17:02 |
*** untriaged-bot has quit IRC | 17:02 | |
*** jschwarz has quit IRC | 17:03 | |
*** jmcbride has quit IRC | 17:32 | |
*** ducttape_ has quit IRC | 17:34 | |
*** sbadia has joined #openstack-dns | 17:48 | |
*** dvorak is now known as clayton | 17:55 | |
*** ducttape_ has joined #openstack-dns | 18:41 | |
*** ryanpetrello has quit IRC | 18:46 | |
*** ryanpetrello has joined #openstack-dns | 18:48 | |
Kiall | https://etherpad.openstack.org/p/designate-vancouver-session-6 | 18:48 |
*** Kiall has quit IRC | 19:28 | |
*** jmcbride has joined #openstack-dns | 19:31 | |
*** ducttape_ has quit IRC | 19:32 | |
*** jmcbride has quit IRC | 19:34 | |
*** jmcbride has joined #openstack-dns | 19:38 | |
*** jmcbride has quit IRC | 20:16 | |
*** boris-42 has joined #openstack-dns | 20:37 | |
*** ducttape_ has joined #openstack-dns | 21:57 | |
*** ducttape_ has quit IRC | 22:11 | |
*** chlong has quit IRC | 22:23 | |
*** mlavalle has joined #openstack-dns | 22:32 | |
*** km has joined #openstack-dns | 23:13 | |
*** chlong has joined #openstack-dns | 23:16 | |
*** kei_yama has joined #openstack-dns | 23:24 | |
*** mlavalle has quit IRC | 23:37 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!