Tag: kubernetes

favoritest

Unlocking Network Policy Management with Cilium in Kubernetes

Introduction: As Kubernetes has become the de facto standard for container orchestration, ensuring network security and policy management has become a critical component of any Kubernetes deployment. Traditional approaches to network security often rely on manual configuration and require extensive expertise, making it difficult to scale and maintain. This is where Cilium comes in – […]

kmerkuri 
Uncategorized

Webhook to automatically check if the env specified on the deployment to be applied have their configmaps or secrets already in the cluster

This utilises k8s MutatingWebhookConfiguration which listens or create or update operations on deployments and statefulsets and sends the information to be checked via webhook to the flask application to check if the dependecies are met. Get the repository : Deploy cert-manager using helm helm install \ cert-manager jetstack/cert-manager \ –namespace cert-manager \ –create-namespace \ –version […]

kmerkuri