Paul K
Programming with Paulers

Programming with Paulers

Follow
homeAboutbadges
Tag

aks

#aks

More content

Read more stories on Hashnode


Articles with this tag

How to call other services in Kubernetes

May 14, 20202 min read

In a scenario where you have multiple services running in one cluster, you will want them to communicate with each other. There are multiple ways to...

How to call other services in Kubernetes

Journey into Kubernetes - Ingress

May 9, 20205 min read

The last step in our cluster creation process -- creating an ingress controller. Let's talk about what that is. Ingress means "going in". In the K8s...

Journey into Kubernetes - Ingress

Journey into Kubernetes - SSL

May 6, 20202 min read

In this short article I want to prepare us for what will be the last step in this series - ingress controller and TLS termination. This preparation...

Journey into Kubernetes - SSL

Journey into Kubernetes - Services

May 3, 20203 min read

A service makes pods accessible. If you want the pods in your deployment to communicate with other pods or be accessible from outside the cluster, you...

Journey into Kubernetes - Services

Journey into Kubernetes - Deployments

Apr 30, 20206 min read

Now that our namespaces and resource quotas are set, it's time to finally start putting some microservices into the cluster. The way a service gets up...

Journey into Kubernetes - Deployments

Journey into Kubernetes - Resources

Apr 27, 20205 min read

We don't want a rogue microservice to eat up all the CPU and memory in the cluster. Pods can be restricted to use a specific % of CPU and a flat...

Journey into Kubernetes - Resources