Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
1–10 of 28 posts
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#2Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#3Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#4I... don’t get the use case for this? What am I missing?
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#5I... don’t get the use case for this? What am I missing?
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#6I... don’t get the use case for this? What am I missing?
It is not just litterate programming, but more like an IDE that does not require your code to keep working (CI/CD... ) : you can refactor at your own pace, iterate, introspect past results, etc.
You prototype like crazy, iterate much faster, and can tweak much more.
However, notebooks are not popular with many programmers. They stick to IDEs. Their loss.
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#7I... don’t get the use case for this? What am I missing?
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#8I... don’t get the use case for this? What am I missing?
To me it looks like a REPL for Ansible. If it does let you build each task in a cell then you could develop the whole playbook interactively and incrementally. It could reduce the turn around time of having to run a long playbook and waiting till the latest step you wrote.
edit: https://docs.ansible.com/ansible/latest/cli/ansible-console.... "REPL console for executing Ansible tasks."
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#9I... don’t get the use case for this? What am I missing?
To me it looks like a REPL for Ansible. If it does let you build each task in a cell then you could develop the whole playbook interactively and incrementally. It could reduce the turn around time of having to run a long playbook and waiting till the latest step you wrote.
Re: Show HN: Ansible Kernel – Run Ansible Tasks and Plays with Jupyter Notebook
#10I... don’t get the use case for this? What am I missing?
Notebooks allows you to have snippets of code next to the historic results of their execution It is not just litterate programming, but more like an IDE that does not require your code to keep working (CI/CD... ) : you can refactor at your own pace, iterate, introspect past results, etc. You prototype like crazy, iterate much faster, and can tweak much more. However, notebooks are not popular with many programmers. T…