Hacker News new | ask | show | jobs
by p-o 604 days ago
That's really neat. I also had a similar need to dynamically manage DNS Record and decided to create a Kubernetes operator instead to manage it (https://github.com/pier-oliviert/phonebook).

I do like your approach, it's really refreshing. I'd probably want to split the API keys from the rest of the config files.

Great work!

1 comments

Thanks! May I ask why would you split API keys from the rest?
API Keys are usually secrets and as such, if I wanted to commit those files to git, the API token would not leak to my repository.
Seems legit! Gonna add it