Chris Tomkins

Results 11 comments of Chris Tomkins

Still experiencing this issue as of June 2025 (on Nautobot v2.4.2, Python v3.11.11) with the latest `develop` branch. `__post_init__()` method still only handles setting key from name but not the...

The fix I'm working with in my dev environment in `_handle_single_parameter()` is simply: ``` # if metadata.name in database_object.cf: # parameters[parameter_name] = database_object.cf[metadata.key] field_key = metadata.key or metadata.name if field_key...

I'm going to go ahead and PR to fix this as the previous PR seems to have stopped moving forward. Given this intent from the docstring: ``` Note that for...

@joewesch and I tested this together; notes: - Everything is being wrapped now regardless of changes made in #543 recently (we tested 5.12.1) with 2.19. - This is due to...

Tested to confirm this is still happening. It is: **Command:** ``` ansible-playbook -i test_inventory.yml test_playbook.yml ``` **Inventory:** ``` plugin: networktocode.nautobot.inventory api_endpoint: http://localhost:8000 token: "" config_context: true query_filters: - role: ChrisTestRole...

Based on checking the docs, there isn't explicit documentation saying what should happen when the evaluation of Jinja2 templates within Nautobot's config contexts when accessed via Ansible. I think this...

@joewesch Could you please review this and see what you think: * The main functionality passes my test case fine, can you think of anything I might be missing? *...

Just need to figure out where to put the tests for `inventory` and `gql_inventory`, and this should be good to review/merge.

> Just need to figure out where to put the tests for `inventory` and `gql_inventory`, and this should be good to review/merge. These are done now. Due to the fact...

@joewesch I believe this is ready to go! 🚀