HN user

mirceaulinic

29 karma

some wonk

Posts47
Comments13
View on HN
mirceaulinic.net 6mo ago

Latency Monitor: lightweight tool for TCP and UDP monitoring

mirceaulinic
2pts1
salt-sproxy.readthedocs.io 6y ago

Show HN: Managing Unix and Windows machines using salt-sproxy

mirceaulinic
3pts0
salt-sproxy.readthedocs.io 6y ago

Managing Unix and Windows machines using salt-sproxy

mirceaulinic
1pts0
salt-sproxy.readthedocs.io 6y ago

Salt plugin to manage devices and apps, without running (Proxy) Minions

mirceaulinic
3pts0
isalt.readthedocs.io 6y ago

ISalt: Interactive Salt Programming

mirceaulinic
29pts8
salt-sproxy.readthedocs.io 6y ago

Salt-sproxy 2020.2.0 release notes

mirceaulinic
1pts0
github.com 6y ago

Show HN: Lightweight Salt package for confd style management of config files

mirceaulinic
2pts0
github.com 7y ago

Show HN: Salt plugin to manage devices and apps, without running (Proxy) Minions

mirceaulinic
4pts0
salt-sproxy.readthedocs.io 7y ago

SaltStack plugin for devices and applications management without running Minions

mirceaulinic
2pts0
salt-sproxy.readthedocs.io 7y ago

Getting started to manage devices and appls with salt-sproxy in 4 easy steps

mirceaulinic
1pts0
mirceaulinic.net 7y ago

A (Proxy) Minion-Less Approach to Network Automation Using Salt

mirceaulinic
3pts0
mirceaulinic.net 7y ago

A (Proxy) Minion-Less Approach to Network Automation Using Salt

mirceaulinic
2pts0
mirceaulinic.net 7y ago

Extending NAPALM's Capabilities in the Salt Environment

mirceaulinic
2pts2
mirceaulinic.net 7y ago

Extending NAPALM's Capabilities in the Salt Environment

mirceaulinic
1pts0
mirceaulinic.net 7y ago

Do we really need network automation?

mirceaulinic
22pts8
slack-channels.slack.com 7y ago

A Slack channel to share your favourite Slack channels

mirceaulinic
1pts0
mirceaulinic.net 7y ago

Network automation using Salt for large scale deployments

mirceaulinic
2pts0
mirceaulinic.net 7y ago

Network automation using Salt for large scale deployments

mirceaulinic
1pts0
www.youtube.com 7y ago

Orchestrating Network Devices with SaltStack – SaltConf17

mirceaulinic
1pts0
blog.simonmetzger.de 7y ago

Network Automation with Salt, NAPALM and Kubernetes

mirceaulinic
1pts0
mirceaulinic.net 7y ago

Python development for infrastructure management using Salt

mirceaulinic
4pts0
mirceaulinic.net 8y ago

Getting started with Salt for network automation, using Docker: The easy way

mirceaulinic
2pts0
www.oreilly.com 8y ago

Free Ebook: Network Automation at Scale

mirceaulinic
1pts0
mirceaulinic.net 8y ago

Running Salt Proxy Minions on OpenBSD

mirceaulinic
1pts0
blog.simonmetzger.de 8y ago

Network Automation with Salt, NAPALM and Kubernetes

mirceaulinic
3pts0
mirceaulinic.net 8y ago

Python development for infrastructure management using Salt

mirceaulinic
3pts2
mirceaulinic.net 8y ago

Python development for infrastructure management using Salt

mirceaulinic
2pts0
napalm-automation.net 8y ago

Using napalm-logs and Salt for event-driven network automation and orchestration

mirceaulinic
2pts0
speakerdeck.com 8y ago

SaltConf17 – Orchestration with network devices: challenges and solutions

mirceaulinic
2pts1
www.cloudflare.com 8y ago

Free EBook: Network Automation at Scale

mirceaulinic
2pts0

TL;DR: Salt is complex, multi-purpose tool, with event-driven orchestration and remote execution engine capabilities. In other words, it implicitly does what Ansible can do, plus many other things. What I personally like the most is the ease to develop and extend features, vs., e.g., a clogged DSL as many popular tools (unfortunately) impose.

Yes, I know, and I completely agree. It was meant initially to be a pun, and nobody expected back then the library would eventually so much traction. Even worse, I personally was giving a talk in Vietnam a couple of years ago, and you can probably imagine that I felt like an ass.

It has been discussed indeed, but unfortunately nobody volunteered yet to take the entire work of re-documenting everything and many other things that have to be done. But it's definitely something intended for the future.

From what I heard (I never had so many devices to manage myself), Salt can scale nicely when managing a very large number of devices - see for example this story from LinkedIn: https://s.saltstack.com/saltstack-at-web-scale-better-strong.... However, they're using it in the "classical" topology which is agent based. For non-agent base, you may consider looking into Salt-SSH: https://docs.saltstack.com/en/latest/topics/ssh/. Hope this helps!

I had prior experience with other programming / scripting languages, and picking Python up felt very natural.

I started with Mark Lutz's Learning Python (http://shop.oreilly.com/product/9780596513986.do) about 10 years ago. In the meanwhile I've been an active contributor to large Python-based open source projects, e.g., Salt (https://github.com/saltstack/salt) which not only that it helped me get feedback from people with a tremendous experience, but also reading through the code taught me good practices and many good ways to solve various problems. A few months ago I started reading Luciano Ramalho's Fluent Python (http://shop.oreilly.com/product/0636920032519.do) which is just beautifully written and with a wide variety of topics for a deeper look inside Python internals.

I'm not entirely sure I understand you. Do you find it bad that there are several options?

I had the feeling that YAML is the one that addresses your criticism ("I like YAML as configuration file language, but it's terrible for DSLs."). And yes, I do use the python one and I am very happy with it.

The YAML is the default, and it's what you find examples and support for (Stack Overflow and so on)

Pro tip: if they are YAML on StackOverflow, you don't have to copy-paste them, but more rather translate them to the representation that satisfy your high requirements.

The overlap of capabilities is between StackStorm and Salt -- the later has many orchestration capabilities. For event driven ops it can even be used alone. I don't want to say that one is better than the other, but this comparison does not surprise me at all.

As a friend (big Ansible fan otherwise) would say: "Ansible is just a glorified bash script; nothing more, nothing else". Without making it a bad product, Ansible is that one limited to CM only.

Without being a comparison the other tool(s), I would make a point regarding to your blocker, which actually it shouldn't be a blocker.

Many folks miss one important point: Salt's renderer interface is also pluggable. There are quite a few choices for you: https://docs.saltstack.com/en/latest/ref/renderers/index.htm.... For data representation you can choose between: yaml, yamlex, json, json5, hjson, or even pure python. Nothing else can be more flexible than pure python. But, of course, this approach also has its drawbacks. Anyway, if none of them suits your needs for non-terrible DSL, you can even implement your own DSL, your own renderer.

All you have to do is adding few characters at the top of your pillar, i.e. #!json or #!json5 or even #!lobster.

So where is the limitation again? In reading documentation I guess.