Bradley A. Thornton

Results 182 comments of Bradley A. Thornton

@patrick-tang-redhat Thanks for this! Role browsing support was added here: https://github.com/ansible/ansible-navigator/pull/1059 and will be in the 2.0.0 release of ansible-navigator. The upstream release candidate should be out today and the...

@patrick-tang-redhat I see root there, can you try and install it with the --user flag? (if you didn't) `pip install ansible-navigator==2.0.0b0 --user` Still working to get the release candidate out...

Can you run it with: `ansible-navigator --ll debug --la false` and send the resulting log file over?

Somehow I think your installation is odd, your first message has a mention of `_get_kvs` which is not in the current code base, and also mentions load_entry_point('ansible-navigator==1.1.0', 'console_scripts', 'ansible-navigator') which...

Can you try with an install in a virtual environment? I can provide the steps, this might be related to an RPM install + a pip installation? Or uninstall the...

``` $ mkdir navigator-test $ cd navigator-test $ python3.9 -m venv venv $ source venv/bin/activate $ pip install ansible-navigator==2.0.0b0 $ ansible-navigator --version ansible-navigator 2.0.0b0 ``` This will build a virtual...

You can use the supported ee by supplying it on the command line: `ansible-navigator --eei registry.redhat.io/ansible-automation-platform-21/ee-supported-rhel8:latest` Or putting it in a ansible-navigator settings file. The upstream releases will point to...

BTW, sorry you are having trouble here... we'll get this sorted out

Something about the way it was installed outside the virtual environment... If you want to use it without the virtual environment, you can deactivate the virtual environment $ deactivate and...