Posts in 2022
Securing Kubernetes with Open Policy Agent
Thursday, April 21, 2022 in Blog
9 minute read
Over the past 8 years, Kubernetes became the de-facto standard for deploying and managing containerized applications. This requires that the platform on which we build our apps (Kubernetes) be just as secure as our applications. Kubernetes gives you …
Different Ways to Initialize Go structs
Saturday, January 29, 2022 in Blog
Categories:
8 minute read
Many languages like Java, C#, etc. have constructors that help you instantiate an object and its properties. Go does not have ‘constructors’ in the pure sense of the word. Let’s see what Go has instead. Build-in options Out-of-the-box Go gives …