Popular tools to use at each phase of the DevOps process. The 8 phases of a DevOps pipeline: Dev Continuous Development Plan – Feature, Story and Backlog creations and their documentaion take place Scrum, Slack, Jira, Git, SVN, Mercurial, CVS Code – feature development and implementation Maven, Gradle, Apache Ant, Python Invoke, Ruby Rake, Packer…
All posts in DevOps
Ansible: show running-config
— – hosts: Router1 gather_facts: true connection: local tasks: – name: show run ios_command: commands: – show run host: “{{ ansible_host }}” username: joe password: cisco register: sh_run – debug: var=sh_run.stdout_lines