Posts in 2022

  • Securing Kubernetes with Open Policy Agent

    Thursday, April 21, 2022 in Blog

    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 …

    Read more

  • Different Ways to Initialize Go structs

    Saturday, January 29, 2022 in Blog

    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 …

    Read more