Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Network Working Group Meeting Agenda 3 #363

Closed
Qalthos opened this issue Sep 26, 2018 · 190 comments
Closed

Network Working Group Meeting Agenda 3 #363

Qalthos opened this issue Sep 26, 2018 · 190 comments

Comments

@Qalthos
Copy link
Contributor

Qalthos commented Sep 26, 2018

Please leave a comment regarding any agenda item you wish to discuss. If you don't show up for the meeting, your item will be skipped.

If your IRC nick is different from your Github username, leave that as well.

See https://github.com/ansible/community/tree/master/group-network for the schedule

All Core Networking issues (most recently updated at the top):
https://github.com/ansible/ansible/issues?q=is%3Aopen+label%3Anetworking+-label%3Aneeds_revision+sort%3Aupdated-desc

Network Working Group: https://github.com/ansible/community/tree/master/group-network

#ansible-network on Freenode IRC

@Qalthos
Copy link
Contributor Author

Qalthos commented Oct 1, 2018

@samerd commented 2 hours ago

Please welcome @anasbadaha (https://github.com/anasbadaha) a new team member of Mellanox-Onyx His first PR: ansible/ansible#46218 Please review this PR and merge if OK with you

@caphrim007
Copy link

commenting on top of @dagwieers 's comment here

#247 (comment)

For F5 specific stuff, we have a special token that is generated (and required to be re-used) after we auth with a user/pass. we need to put that token in a Header which we send with future requests. This token needs to be deleted at the "end of the session" too otherwise we'll eventually run out of available tokens.

So right now we establish a connection (non-httpapi) make all our calls with the token, and then delete the token upon success/fail.

We have a couple modules that also check to see if the box is online to begin with. Today this isnt a problem because we handle the connection in the module. If the connection is moved out of the module, then the httpapi connection will need to know how to deal with this. In our case, it's technically equivalent of wait_for and some other custom checks. I imagine this would be a little ugly to bake into the httpapi (or equivalent) code.

Finally, we have several modules that reboot the device and wait for it to come back online. This rebooting invalidates the token as well. We would need to be able to mimic this in httpapi (or equivalent).

@dagwieers
Copy link
Contributor

I have started a new Wiki page to share requirements from each of the potential httpapi shareholders.
https://github.com/ansible/community/wiki/Plugin:-httpapi

Feel free to add more information there.

@Qalthos
Copy link
Contributor Author

Qalthos commented Oct 2, 2018

@caphrim007

For F5 specific stuff, we have a special token that is generated (and required to be re-used) after we auth with a user/pass. we need to put that token in a Header which we send with future requests. This token needs to be deleted at the "end of the session" too otherwise we'll eventually run out of available tokens.

That's pretty standard. In an httpapi plugin, you can set self.connection._auth to a dictionary that gets merged with headers on every call. This would presumably get set in login() and cleared in logout(), which do what they sound like. logout() is also helpfully called during close(), so connection shutdown will clear your token for you (as will meta: reset_connection).

We have a couple modules that also check to see if the box is online to begin with.

This is one I haven't given a whole lot of thought to. I'm not entirely sure what this means, to be honest. I'm not really sure what this needs that until: "'stdout' in result" (or, more probably, some better test) doesn't give you.

Finally, we have several modules that reboot the device and wait for it to come back online. This rebooting invalidates the token as well. We would need to be able to mimic this in httpapi (or equivalent).

meta: reset_connection should be able to do just this. For persistent connections, it calls the connection's close() (which, as above, calls your httpapi plugin's logout() method).

Additionally, (and especially as a lot of the above points were requested by them), if you want to see how someone who is not me wrote an httpapi plugin to work with something that does not look anything like NX-API/eAPI (read: REST), take a look at plugins/httpapi/ftd.py. If you want to know what is expected of an httpapi plugin, the interface is described in plugins/httpapi/__init__.py, and if something still doesn't seem clear, bring it up and I'll be happy to talk about how to make it better.

@dagwieers I think this covers most of your needs as well. The major sticking point I know you still have is cluster support, and I haven't the faintest idea how to make that work in a way that doesn't ruin all the niceties that making connections look like real connection plugins. My only idea is to add a failover_hosts option to your httpapi plugin that subs out the connection's _url, but I have no idea how much trouble trying to do something like that might cause.

@gundalow
Copy link
Contributor

gundalow commented Oct 8, 2018

Proposal: Interface manager role ansible-network/network-proposals#1

The interface manager role provides a platform agnostic implementation to declaratively manage the aggregate set of network interfaces on a remote device. This role is designed to effectively replace the net_interface module that is currently part of Ansible core.

@privateip
Copy link
Contributor

Proposal: VRF definitions role ansible-network/network-proposals#3

This proposal describe the implementation of a new resource role for managing VRF definitions in network device active configurations. This role would replace the current net_vrf agnostic module that currently resides in Ansible core.

@privateip
Copy link
Contributor

Proposal: VLANs role ansible-network/network-proposals#2

This proposal describes the implementation of a VLANs role to replace the current platform agnostic implementation ofnet_vlan currently in Ansible core.

@amuraleedhar
Copy link

amuraleedhar commented Oct 10, 2018

Please review and merge PR ansible/ansible#46623

Thanks & Regards
-Anil

@Qalthos
Copy link
Contributor Author

Qalthos commented Oct 10, 2018

2018-10-10

Team status and updates

  • Ansible 2.7 was released last week!
  • AnsibleFest was last week as well

Actions

  • @privateip Update description that configure-vlan will be folded into this role
  • @privateip create role architecture writeup that can be linked in to role proposals to answer common questions regarding roles
  • @privateip describe each role option on proposals

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-10-10/ansible_network_working_group.2018-10-10-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-10-10/ansible_network_working_group.2018-10-10-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-10-10/ansible_network_working_group.2018-10-10-16.00.log.html

@salman1485
Copy link

Can we discuss this please on 10/17- ansible/ansible#46185

@Qalthos
Copy link
Contributor Author

Qalthos commented Oct 18, 2018

2018-10-17

Team status and updates

  • The ansible-network team did releases this week of roles and published them on https://galaxy.ansible.com/ansible-network/
  • Reminder that Python 2.6 support has been removed from the ansible controller as of Ansible 2.7
    • This means network modules will stop working without Python 2.7 or 3.5+

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-10-17/ansible_network_working_group.2018-10-17-16.02.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-10-17/ansible_network_working_group.2018-10-17-16.02.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-10-17/ansible_network_working_group.2018-10-17-16.02.log.html

@anasbadaha
Copy link

Hi,
I'm a new member in Mellanox onyx team.
please review and merge the following PRs:
ansible/ansible#46494
ansible/ansible#46500
ansible/ansible#47027
ansible/ansible#47489
ansible/ansible#47501
ansible/ansible#47552
ansible/ansible#47554

Best Regards,
Anas Badaha

@Qalthos
Copy link
Contributor Author

Qalthos commented Oct 24, 2018

2018-10-24

Team status and updates

  • 2.7.1 should be coming real soon
  • continued work on a network_configurator role for tower
  • adding configure_user support to cisco_iosxr provider
  • fixed nxos_facts bug in non-structured output
  • bugfix for network-engine repeat_for templating
  • Working with Cisco for firepower facts/install modules

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-10-24/ansible_network_working_group.2018-10-24-16.03.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-10-24/ansible_network_working_group.2018-10-24-16.03.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-10-24/ansible_network_working_group.2018-10-24-16.03.log.html

@justjais
Copy link
Contributor

2018-10-31

Team status and updates

  • Released VyOS provider 2.6.2 and 2.7.0. Fixed ios_user issue for password-based existing users(#47656). Added support for 25G and 100G interfaces in ios_vlan and ios_l2_interface(#47852)
  • working with cisco on asa firepower module, the role for network operation
  • working on odl integration for l3vpn use case
  • working on network_configurator role and nios bugs

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-10-31/ansible_network_working_group.2018-10-31-15.57.html
10:29 PM Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-10-31/ansible_network_working_group.2018-10-31-15.57.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-10-31/ansible_network_working_group.2018-10-31-15.57.log.html

@mikewiebe
Copy link
Contributor

mikewiebe commented Nov 14, 2018

Need the following PR Merged:

ansible/ansible#47944 Merged

@Qalthos
Copy link
Contributor Author

Qalthos commented Nov 14, 2018

2018-11-14

Team status and updates

  • worked on tower lookup plugin removing tower_cli dependency
  • juniper_junos 2.6.2 and 2.7.0 released
  • cisco_nxos 2.6.2 and 2.7.0 released - updates load function to use cli_config module.
  • work on adding network_cli, netconf, httapi connection session tracing capability

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-11-14/ansible_network_working_group.2018-11-14-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-11-14/ansible_network_working_group.2018-11-14-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-11-14/ansible_network_working_group.2018-11-14-16.00.log.html

@amuraleedhar
Copy link

amuraleedhar commented Nov 20, 2018

Need the following PR Merged:
ansible/ansible#48924 - MERGED
ansible/ansible#48154 - MERGED

@Qalthos
Copy link
Contributor Author

Qalthos commented Nov 28, 2018

2018-11-28

Team status and updates

  • Fixed nxos_facts neighbors issues
  • Network interface role proposal for nxos
  • Released juniper_junos v2.7.1
  • work in progress to add get function to yang role
  • Released VyOS provider 2.7.1
  • Released cisco_ios 2.6.3
  • system property role and iosxr lldp role
  • add session tracing feature for network_cli
  • Ansible 2.7.2 was released
    Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-11-28/ansible_network_working_group.2018-11-28-16.06.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-11-28/ansible_network_working_group.2018-11-28-16.06.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-11-28/ansible_network_working_group.2018-11-28-16.06.log.html

@amuraleedhar
Copy link

amuraleedhar commented Dec 4, 2018

Please merge
ansible/ansible#49467 Merged

@mikewiebe
Copy link
Contributor

@Qalthos
Copy link
Contributor Author

Qalthos commented Dec 12, 2018

2018-12-12

Team status and updates

  • cisco_ios 2.7.0 was released
  • cisco_iosxr 2.7.1 was released
  • network_engine 2.7.2 was released
  • working with skydive network topologies
  • Worked on ansible_facts generation with gather_facts for network platforms.
  • Updated nxapi & eapi httpapi plugins to be more in-line with how httpapi plugins are expected to work

Actions

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-12-12/ansible_network_working_group.2018-12-12-16.01.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-12-12/ansible_network_working_group.2018-12-12-16.01.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-12-12/ansible_network_working_group.2018-12-12-16.01.log.html

@amuraleedhar
Copy link

amuraleedhar commented Dec 14, 2018

Please merge PR
ansible/ansible#49927 Merged
ansible/ansible#50145

@lvrfrc87
Copy link

lvrfrc87 commented Dec 19, 2018

New IOS NTP module.

- ios_ntp:
    server: 8.8.9.9
    source_int: Loopback0
    acl: NTP_ACL
    logging: true
    key_id: 10
    auth_key: 15435A030726242723273C21181319000A
    auth: true
    state: absent
    provider: "{{ staging }}"

ansible/ansible#49894

@Qalthos
Copy link
Contributor Author

Qalthos commented Dec 19, 2018

2018-12-19

Team status and updates

  • Ported vyos provider load & replace to use cli_command and cli_config
  • Working on vyos_ping module
  • Ansible 2.7.5 was released last Thursday
  • No more IRC meetings until 2019-01-02

Actions

  • @FedericoOlivieri add tests to ios_ntp PR

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2018-12-19/ansible_network_working_group.2018-12-19-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2018-12-19/ansible_network_working_group.2018-12-19-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2018-12-19/ansible_network_working_group.2018-12-19-16.00.log.html

@amuraleedhar
Copy link

amuraleedhar commented Jan 8, 2019

Please merge PR
ansible/ansible#50145 - Review comments Done Merged
ansible/ansible#50641 - New Module Merged

@justjais
Copy link
Contributor

justjais commented Jan 20, 2020

@FedericoOlivieri Thanks for raising the PR, but as the ios_acl is duplicate PR of ansible/ansible#66629, I have closed the respective PR.

@giorgos-nikolopoulos
Copy link

Need review for ansible/ansible#66633.

@ujwalkomarla
Copy link

Need review for ansible/ansible#66248 - A module to manage guest virtual machines on EXOS devices.

@Qalthos
Copy link
Contributor Author

Qalthos commented Jan 22, 2020

@Qalthos
Copy link
Contributor Author

Qalthos commented Jan 29, 2020

2020-01-29

Core Updates

Zuul CI improvements

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-01-29/ansible_network_working_group.2020-01-29-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-01-29/ansible_network_working_group.2020-01-29-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-01-29/ansible_network_working_group.2020-01-29-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Feb 5, 2020

2020-02-05

Core Updates

Resource Module Documentation Feedback

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-02-05/ansible_network_working_group.2020-02-05-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-02-05/ansible_network_working_group.2020-02-05-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-02-05/ansible_network_working_group.2020-02-05-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Feb 19, 2020

2020-02-19

Collections Update

  • Dates and information are subject to change
  • March 2: devel on ansible/ansible will be frozen
    • This date marks the end of merging non-base plugin/module PRs.
    • After this point, all such content will be redirected to collections.
  • March 4: We will self migrate supported network collections to github.com/ansible-collections
    • All of our content work will move to these collections from this date forward
    • This includes eos, junos, ios, iosxr, nxos, vyos and netcommon.
  • March 9: Auto migration script is run. Migrated content will be deleted from ansible/ansible.
    • This will probably not cover absolutely everything, but items needing manual migration will be handled over the following days.
  • March 23: Unfreeze devel, devel is now ansible-base
    • For most people, this date is pretty irrelevant, but marks the end of the transition process.

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-02-19/ansible_network_working_group.2020-02-19-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-02-19/ansible_network_working_group.2020-02-19-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-02-19/ansible_network_working_group.2020-02-19-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Feb 20, 2020

For more detail on the collections migration who/what/when/where/how and sometimes why, see https://groups.google.com/forum/#!msg/ansible-devel/oKqgCeYTs-M/cHrOgMw8CAAJ and https://github.com/ansible-collections/overview/blob/master/README.rst

@gundalow
Copy link
Contributor

Ansible Contributors Summit EUROPE

What

Ansible Contributor Summit is a one day event especially for community contributors to meet with each other, as well as Ansible development teams (Core, AWX/Tower, Galaxy) in person, to discuss important issues in the community and help shape the future of Ansible. For those unable to make it to Gothenburg, we welcome you to join virtually for part/all of the day. Online participation and streaming details to follow closer to the summit.

When

  • Contributors Summit: Sunday, 29th March
  • Ansible Hackathon: Monday 30th March
  • FOSS-North: 30 & 31st March

How

  • If you plan to attend in person, please register on Eventbrite
  • If you plan to attend the hackathon or any of FOSS-North please register
  • If you plan to attend virtually details will be added to the Etherpad the day before

Agenda

@lvrfrc87
Copy link

lvrfrc87 commented Mar 3, 2020

Is still possible to review and marge ansible/ansible#67958 or new modules already redirected to collections?

@pabelanger
Copy link

@FedericoOlivieri no, ansible/ansible devel is feature freeze. The new location for the PR would be: https://github.com/ansible-collections/eos

@lvrfrc87
Copy link

lvrfrc87 commented Mar 5, 2020

@pabelanger thanks! I raised new PR: ansible-collections/arista.eos#9 and closed the old. Is the weekly call still good for PR review?

@Qalthos
Copy link
Contributor Author

Qalthos commented Mar 25, 2020

2020-03-25

Core Updates

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-03-25/ansible_network_working_group.2020-03-25-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-03-25/ansible_network_working_group.2020-03-25-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-03-25/ansible_network_working_group.2020-03-25-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Apr 1, 2020

2020-04-01

Core Updates

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-04-01/ansible_network_working_group.2020-04-01-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-04-01/ansible_network_working_group.2020-04-01-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-04-01/ansible_network_working_group.2020-04-01-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Apr 8, 2020

2020-04-08

Core Updates

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-04-08/ansible_network_working_group.2020-04-08-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-04-08/ansible_network_working_group.2020-04-08-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-04-08/ansible_network_working_group.2020-04-08-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Apr 15, 2020

2020-04-15

Core Updates

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-04-15/ansible_network_working_group.2020-04-15-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-04-15/ansible_network_working_group.2020-04-15-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-04-15/ansible_network_working_group.2020-04-15-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Apr 22, 2020

@Qalthos
Copy link
Contributor Author

Qalthos commented Apr 29, 2020

2020-04-29

Core Updates

  • OSPFv2 modules are getting finished in their respective collections
  • After OSPFv2 work the team is turning back to older resource modules for a cleanup pass
  • This includes adding the gathered, rendered, and parsed states to modules lacking them
  • https://github.com/ansible-collections is where all content previously hosted in ansible/ansible lives now

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-04-29/ansible_network_working_group.2020-04-29-16.08.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-04-29/ansible_network_working_group.2020-04-29-16.08.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-04-29/ansible_network_working_group.2020-04-29-16.08.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented May 6, 2020

2020-05-06

Core Updates

  • Work is continuing to the release of 1.0.0 of supported collections
  • One of the tasks for this is going back and adding new states (gathered, rendered, parsed) to older modules
    • In order to make room for this work, OSPFv3 resource modules have slipped off the 2.10 roadmap
  • Also, changes needed to support resource modules over httpapi for nxos and eos are both scheduled for 1.0.0
    • nxos has had the necessary work for a little while now, and eos should have theirs land shortly

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-05-06/ansible_network_working_group.2020-05-06-16.01.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-05-06/ansible_network_working_group.2020-05-06-16.01.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-05-06/ansible_network_working_group.2020-05-06-16.01.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented May 13, 2020

2020-05-13

Core Updates

  • We continue to work towards a 1.0.0 release for our supported platform collections
    • This includes adding missing states to older resource modules and making sure the module documentation and such are complete and up to date
    • Again, this has pushed back the OSPFv3 modules for most platforms
  • Resource modules over httpapi is almost complete for nxos, that should likely merge within the next day or so.
  • Resource modules over httpapi is ongoing for eos. The base functionality is done, now just refactoring tests to work over both connections

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-05-13/ansible_network_working_group.2020-05-13-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-05-13/ansible_network_working_group.2020-05-13-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-05-13/ansible_network_working_group.2020-05-13-16.00.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented May 20, 2020

@Qalthos
Copy link
Contributor Author

Qalthos commented May 27, 2020

2020-05-27

Core Updates

  • Work continues on version 1.0.0 for supported collections
  • In particular, adding new states to older modules and updating tests have been a large focus

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-05-27/ansible_network_working_group.2020-05-27-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-05-27/ansible_network_working_group.2020-05-27-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-05-27/ansible_network_working_group.2020-05-27-16.00.log.html

@samccann
Copy link
Contributor

samccann commented Jun 3, 2020

2020-06-03

Core Updates

  • progressing toward 1.0.0 release on the supported collections
  • working on getting ansible-test sanity validate-modules as part of the Zuul CI. ovs is done if you want to see an example
  • module documentation will eventually be pulled in from galaxy (docstrings) back to docs.ansible.com but not until closer to ansible-base 2.10 release
  • expect these collections to have a 'freeze' coming up RealSoonNow (tm) if you have any input, get it there asap

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-06-03/ansible_network_working_group.2020-06-03-16.10.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-06-03/ansible_network_working_group.2020-06-03-16.10.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-06-03/ansible_network_working_group.2020-06-03-16.10.log.html

@gefela
Copy link

gefela commented Jun 15, 2020

Hi
Can someone have a look at this issue. I have posted this in the last 6 months in various forums but no answer ..

ansible-collections/junipernetworks.junos#55

Thank you

@Qalthos
Copy link
Contributor Author

Qalthos commented Jun 17, 2020

2020-06-17

Core Updates

  • Current status is getting collections fixes into 2.9 so that ansible-test sanity passes
  • you can see PRs fixing sanity failures in the various collections repos, but they generally depend on Support removed_at_date in ansible-doc (#70002) ansible#70015
  • Also incoming are documentation updates of various stripes, mostly around ensuring that deprecated modules are represented correctly in 2.9

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-06-17/ansible_network_working_group.2020-06-17-16.03.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-06-17/ansible_network_working_group.2020-06-17-16.03.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-06-17/ansible_network_working_group.2020-06-17-16.03.log.html

@Qalthos
Copy link
Contributor Author

Qalthos commented Jun 24, 2020

2020-06-24

Core Updates

  • Version 1.0.0 of the various supported collections have released!
  • https://galaxy.ansible.com/ansible/netcommon is one such collection, being the base collection implementing network_cli, netconf, & httpapi
  • With this, we are finally untethered from the ansible release cycle and can send out content updates on a much more frequent basis
  • These collections are all supported on the recently-released 2.9.10 and the currently-branched 2.10 versions of Ansible
  • We will be working out what the next releases of those collections look like shortly, and should be able to communicate that to all of you when that's more ironed out

Logs

Minutes: https://meetbot.fedoraproject.org/ansible-network/2020-06-24/ansible_network_working_group.2020-06-24-16.00.html
Minutes (text): https://meetbot.fedoraproject.org/ansible-network/2020-06-24/ansible_network_working_group.2020-06-24-16.00.txt
Log: https://meetbot.fedoraproject.org/ansible-network/2020-06-24/ansible_network_working_group.2020-06-24-16.00.log.html

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests