Tag: kubernetes

  • How many microservices per kubernetes pod?

    How many microservices should I have per Kubernetes Pod? This is the question I had when I first encountered Kubernetes when trying to decide how to deploy my Microservice architecture based application. When reading through Kubernetes documentation or watching videos about kubernetes, you are told a pod holds one or more containers. So your first…

  • Kubernetes resources

    Kubernetes resource list Kubernetes and Microservices go hand in hand. Basically you don’t want to do one without the other. Kubernetes is a container orchestration software. When you build a system based on the Microservice architecture you need a way to package and run those microservices on the cloud. The traditional way of preparing a…

  • Redhat developer resources

    My list of resources and information about Redhat software etc. RedHat OpenShift developer resources. This page has many links to free books, videos, articles etc. Building containerized applications Lots of useful information and resources here. This covers some of the tools RedHat offers for development with containers such as Buildah, Podman and Skopeo. It has…

  • OpenShift information and resources

    OpenShift information and resources page OpenShift is a useful developer toolset. Articles Building Scala and SBT Applications on OpenShift Disaster Recovery Strategies for Applications Running on OpenShift OpenShift vs Kubernetes  This article covers the differences between OpenShift and Regular old Kubernetes. What is OpenShift? Once you decide you want to use Kubernetes you need some…

  • Container technology resources and information

    Containers are quickly and drastically changing the way we build and deploy apps these days. Containers make deployment easier and faster by providing the exact environment that your code needs to operate. However, with this power and ease comes complexity. First off there are various container technologies, but the most common is Docker. Articles and…

  • Microservice resources

    Microservice Resources Most of us older people have been building monoliths for most of our careers. Now BAM! a new buzzyword is born Microservices. Microservices are all about tearing apart the dreaded monolith into smaller services that all function together to perform the actions of the monolith. Microservices have many benefits over Monoliths, however they…