Posts in 2022
Demystifying the Kubernetes Iceberg: Part 8
Monday, July 11, 2022 in Blog
Categories:
3 minute read
This is the eighth article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” diagram by Flant. This is the iceberg: In this article, …
Demystifying the Kubernetes Iceberg: Part 7
Monday, July 04, 2022 in Blog
Categories:
11 minute read
This is the seventh article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” diagram by Flant. This is the iceberg: In this article, we will …
Demystifying the Kubernetes Iceberg: Part 6
Monday, June 27, 2022 in Blog
Categories:
14 minute read
This is the sixth article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” diagram by Flant. This is the iceberg: In this article, we will …
Demystifying the Kubernetes Iceberg: Part 5
Sunday, June 12, 2022 in Blog
Categories:
14 minute read
This is the fifth article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” diagram by Flant. This is the iceberg: In this article, we will …
Demystifying the Kubernetes Iceberg: Part 4
Sunday, June 05, 2022 in Blog
Categories:
14 minute read
This is the fourth article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” diagram by Flant. This is the iceberg: In this article, we will dive …
Demystifying the Kubernetes Iceberg: Part 3
Sunday, May 29, 2022 in Blog
Categories:
11 minute read
This is the third article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” meme by Flant. You can find the first article here and the second one …
Demystifying the Kubernetes Iceberg: Part 2
Sunday, May 22, 2022 in Blog
Categories:
11 minute read
This is the second article of the “Demystifying the Kubernetes Iceberg” series. My goal for this series is to explain all concepts mentioned in the “Kubernetes Iceberg” meme by Flant. You can find the first article here. I will publish …
Demystifying the Kubernetes Iceberg: Part 1
Sunday, May 15, 2022 in Blog
Categories:
6 minute read
A while ago, u/dshurupov published a picture on Reddit that I called “The Kubernetes Iceberg.” The picture was made by the folks in Flant. It represents a vast iceberg, where on the top you have some of the simplest concepts of …
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 …