openstackgerrit | Shu Muto proposed openstack/magnum-ui stable/rocky: Imported Translations from Zanata https://review.openstack.org/594578 | 00:17 |
---|---|---|
openstackgerrit | Shu Muto proposed openstack/magnum-ui stable/rocky: Drop nose dependencies https://review.openstack.org/594579 | 00:18 |
*** harlowja has quit IRC | 00:23 | |
*** livelace has quit IRC | 00:35 | |
*** livelace has joined #openstack-containers | 00:35 | |
*** ricolin has joined #openstack-containers | 00:42 | |
openstackgerrit | Merged openstack/magnum-ui stable/rocky: Imported Translations from Zanata https://review.openstack.org/594578 | 00:43 |
openstackgerrit | Merged openstack/magnum-ui stable/rocky: Drop nose dependencies https://review.openstack.org/594579 | 00:43 |
openstackgerrit | Shu Muto proposed openstack/magnum-ui stable/rocky: Imported Translations from Zanata https://review.openstack.org/594588 | 00:51 |
openstackgerrit | Merged openstack/magnum-ui stable/rocky: Imported Translations from Zanata https://review.openstack.org/594588 | 01:16 |
*** rcernin_ has joined #openstack-containers | 01:23 | |
*** rcernin has quit IRC | 01:25 | |
openstackgerrit | Shu Muto proposed openstack/magnum-ui master: Remove mox3 from doc/requirements.txt https://review.openstack.org/594624 | 01:36 |
openstackgerrit | Shu Muto proposed openstack/magnum-ui stable/rocky: Remove mox3 from doc/requirements.txt https://review.openstack.org/594646 | 01:51 |
*** rcernin has joined #openstack-containers | 02:00 | |
openstackgerrit | Merged openstack/magnum-ui master: Remove mox3 from doc/requirements.txt https://review.openstack.org/594624 | 02:02 |
*** rcernin_ has quit IRC | 02:03 | |
openstackgerrit | Feilong Wang proposed openstack/magnum master: Add health_status and health_status_reason to cluster https://review.openstack.org/570818 | 02:18 |
openstackgerrit | Feilong Wang proposed openstack/magnum master: [k8s] Update cluster health status by native API https://review.openstack.org/572897 | 02:18 |
openstackgerrit | Merged openstack/magnum-ui stable/rocky: Remove mox3 from doc/requirements.txt https://review.openstack.org/594646 | 02:19 |
*** hongbin has joined #openstack-containers | 02:22 | |
*** hongbin has quit IRC | 03:33 | |
canori02 | strigazi: issue was partially that I was testing off 17.0.2. However, the deployment I was testing on uses a trusted cert so I wasn't specifying openstack_ca_file in magnum.conf. that's why I wasn't running into that error. Now that I set that option, I see the error. I'll see what I can do about it. | 04:00 |
canori02 | Might reach out to you later on if you're available. Going to sleep | 04:00 |
*** Bhujay has joined #openstack-containers | 04:16 | |
*** sdake has quit IRC | 05:13 | |
*** sdake has joined #openstack-containers | 05:13 | |
*** sdake has quit IRC | 05:50 | |
*** sdake has joined #openstack-containers | 05:51 | |
*** ykarel has joined #openstack-containers | 05:54 | |
*** sdake has quit IRC | 06:02 | |
*** sdake has joined #openstack-containers | 06:04 | |
*** canori02 has quit IRC | 06:13 | |
*** cbrumm has quit IRC | 06:32 | |
*** pcaruana has joined #openstack-containers | 06:41 | |
*** rcernin has quit IRC | 07:07 | |
*** ispp has joined #openstack-containers | 07:08 | |
*** ispp has quit IRC | 07:12 | |
*** mattgo has joined #openstack-containers | 07:26 | |
*** pcaruana has quit IRC | 08:28 | |
*** pcaruana has joined #openstack-containers | 08:30 | |
*** boris999 has joined #openstack-containers | 08:52 | |
boris999 | hello guys. I would like to ask: what is the recommended way of spawning the kubernetes cluster using Magnum ? Shall I use python-magnum client ? or shall I call exposed REST apis directly ? | 08:52 |
openstackgerrit | Merged openstack/python-magnumclient master: Add release notes for magnum client https://review.openstack.org/592783 | 08:53 |
strigazi | boris999: you can use the magnumclient | 08:53 |
*** imdigitaljim has quit IRC | 08:55 | |
boris999 | ok, so @utils.deprecated(utils.MAGNUM_CLIENT_DEPRECATION_WARNING) is nothing to worry about ? :) | 08:57 |
strigazi | boris999: the deprecation concerns the "magnum *" commands which are replaced by the openstack plugin "openstack coe *" commands | 08:58 |
boris999 | i see, thank you very much | 08:58 |
*** ricolin has quit IRC | 09:04 | |
openstackgerrit | Merged openstack/magnum stable/queens: [k8s] Add proxy to master and set cluster-cidr https://review.openstack.org/594264 | 09:09 |
boris999 | when creating cluster using "openstack coe cluster create", i see that magnum is authorizing itself as user 'magnum'. Is is possible to authorize as regular user and spawn cluster ? | 09:19 |
strigazi | boris999 yes | 09:19 |
strigazi | it is like any other openstack service | 09:20 |
strigazi | the magnum server uses the magnum account in the service project | 09:21 |
strigazi | and users use their own project(s) | 09:21 |
boris999 | i am very new to openstack, so please bear with me. | 09:26 |
boris999 | What I've done: | 09:26 |
boris999 | 1. captured the sequence of POST requests magnum issues when creating clusters | 09:26 |
boris999 | 2. I am able to create cluster by issueing same reqeusts from POSTman (with regular user rather than magnum) | 09:26 |
boris999 | 3. When attempting to create clsuter from python code, I am hitting 2 issues: | 09:26 |
boris999 | - magnum client raises exception when interpreting response: | 09:26 |
boris999 | File "/usr/local/lib/python3.5/dist-packages/magnumclient/common/base.py", line 49, in _create | 09:26 |
boris999 | resp, body = self.api.json_request('POST', url, body=body) | 09:26 |
boris999 | File "/usr/local/lib/python3.5/dist-packages/magnumclient/common/httpclient.py", line 368, in json_request | 09:26 |
boris999 | resp = self._http_request(url, method, **kwargs) | 09:26 |
boris999 | File "/usr/local/lib/python3.5/dist-packages/magnumclient/common/httpclient.py", line 349, in _http_request | 09:26 |
boris999 | error_json = _extract_error_json(resp.content) | 09:26 |
boris999 | File "/usr/local/lib/python3.5/dist-packages/magnumclient/common/httpclient.py", line 46, in _extract_error_json | 09:26 |
boris999 | body_json = json.loads(body) | 09:26 |
*** ykarel_ has joined #openstack-containers | 09:28 | |
*** tobberydberg has joined #openstack-containers | 09:30 | |
*** ykarel has quit IRC | 09:31 | |
*** sfilatov has joined #openstack-containers | 09:34 | |
mattgo | Hi team ! I'm using Magnum/Queens, and I'm testing the label "prometheus_monitoring". I see a "node-exporter" pod is correctly started. I don't see any services / deployments for Prometheus or Grafana. | 09:36 |
mattgo | Minions don't provide the cAdvisor monitoring data on port 4194, and the Master don't provide a prometheus UI on port 9090. | 09:36 |
mattgo | please see : http://paste.openstack.org/show/728579/ | 09:37 |
mattgo | What did I miss ? thanks for reading | 09:37 |
strigazi | mattgo: we need to update the prometheus config to use kubelet instead of the cadvisor port. But it should be deployed | 09:54 |
strigazi | boris999: have you tried from the shell? | 09:55 |
*** ykarel_ is now known as ykarel | 09:58 | |
boris999 | strigazzi: yes. I am able to create cluster from shell. What I am not able to do is create cluster using python-magnumclient from remote machine. I am able to do so via POSTman | 10:09 |
*** ricolin has joined #openstack-containers | 10:23 | |
*** ykarel is now known as ykarel|lunch | 10:29 | |
*** ykarel|lunch is now known as ykarel|away | 10:34 | |
*** slagle has quit IRC | 11:01 | |
*** ykarel|away has quit IRC | 11:19 | |
*** sfilatov has quit IRC | 11:53 | |
*** sfilatov has joined #openstack-containers | 12:16 | |
*** sfilatov has left #openstack-containers | 12:22 | |
*** sfilatov has joined #openstack-containers | 12:22 | |
*** Bhujay has quit IRC | 13:21 | |
*** sfilatov has quit IRC | 13:22 | |
boris999 | guys, please, is there somewhere an example how to use clusters.create() method ? | 13:32 |
boris999 | request i am getting when using clusters.create() is not valid (inspected by wireshark., missing json-content). I have strong suspicion I am using it wrong. | 13:42 |
strigazi | boris999: https://github.com/openstack/rally-openstack/blob/master/rally_openstack/scenarios/magnum/utils.py#L109 | 13:46 |
boris999 | strigazi: thank you very much! | 13:47 |
strigazi | boris999: https://github.com/openstack/rally-openstack/blob/master/rally_openstack/osclients.py#L777 | 13:47 |
*** pbourke has quit IRC | 14:07 | |
*** pbourke has joined #openstack-containers | 14:09 | |
boris999 | strigazi: it's interesting. Could you, please, by any chance have a look on following http://paste.openstack.org/show/728600/ . There is a sample code and result I am getting. What am I missing ? | 14:12 |
*** hongbin has joined #openstack-containers | 14:17 | |
boris999 | result I am getting: malformed POST request -> missing JSON data. | 14:18 |
*** pbourke has quit IRC | 14:23 | |
*** pbourke has joined #openstack-containers | 14:25 | |
*** ktibi has joined #openstack-containers | 14:48 | |
*** pcaruana has quit IRC | 15:10 | |
mattgo | hi again, strigazi, any idea what is going wrong ? I created my cluster template using "--labels flannel_backend=host-gw --labels prometheus_monitoring=true" and BTW I'm using k8s | 15:14 |
mattgo | Besides the node exporter, I don't see Prometheus, Grafana, or even cAdvisor | 15:15 |
*** boris999 has left #openstack-containers | 15:19 | |
*** boris999 has joined #openstack-containers | 15:19 | |
*** openstackgerrit has quit IRC | 15:31 | |
*** pcaruana has joined #openstack-containers | 15:50 | |
*** boris999 has quit IRC | 16:25 | |
*** openstackgerrit has joined #openstack-containers | 16:26 | |
openstackgerrit | Tobias Urdin proposed openstack/magnum-ui master: Fix show certificate button returning invalid CA https://review.openstack.org/595245 | 16:26 |
canori01 | strigazi: around? | 16:36 |
*** ykarel has joined #openstack-containers | 16:51 | |
openstackgerrit | Rick Cano proposed openstack/magnum master: Fixing CoreOS driver https://review.openstack.org/579026 | 16:58 |
*** cbrumm has joined #openstack-containers | 16:59 | |
*** ykarel has quit IRC | 17:20 | |
*** ricolin has quit IRC | 17:21 | |
*** ykarel has joined #openstack-containers | 17:21 | |
*** ykarel_ has joined #openstack-containers | 17:24 | |
*** ykarel_ has quit IRC | 17:24 | |
*** ktibi has quit IRC | 17:24 | |
*** ykarel_ has joined #openstack-containers | 17:24 | |
*** sayalilunkad has quit IRC | 17:25 | |
*** brtknr has quit IRC | 17:25 | |
*** dims has quit IRC | 17:25 | |
*** ykarel has quit IRC | 17:26 | |
*** ykarel_ has quit IRC | 17:27 | |
*** dims_ has joined #openstack-containers | 17:36 | |
*** sfilatov_ has joined #openstack-containers | 17:37 | |
sfilatov_ | Hey! I got my magnum deploying kubernetes 1.11.0 | 17:40 |
sfilatov_ | And I found that API server fails with | 17:40 |
sfilatov_ | Error: unknown flag: --tls-ca-file | 17:41 |
sfilatov_ | And it was actually removed in 1.11 | 17:41 |
sfilatov_ | https://github.com/kubernetes/kubernetes/pull/61386/commits/9c0803e14c0d76e2e8225db546c0d2ce0b522ab7 | 17:41 |
sfilatov_ | I guess when you tested 1.11 compatibility, you did it without TLS enabled | 17:42 |
*** sfilatov_ has quit IRC | 17:54 | |
*** mattgo has quit IRC | 18:30 | |
*** pcaruana has quit IRC | 19:47 | |
*** harlowja has joined #openstack-containers | 20:42 | |
*** canori02 has joined #openstack-containers | 22:24 | |
*** livelace has quit IRC | 22:24 | |
*** rcernin has joined #openstack-containers | 22:34 | |
*** livelace has joined #openstack-containers | 22:37 | |
*** hongbin has quit IRC | 23:12 | |
*** slagle has joined #openstack-containers | 23:17 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!