How to deploy an Openshift cluster in AWS

Originally posted on Sokube’s blog Context Thanks to the Openshift platform (OCP), thousands of companies allow their developers to build, deploy, and run applications in containers. This platform also offers advanced features such as: This platform can be hosted both on a private cloud (on-premise) and on a public cloud. It is possible to install Openshift …

How to deploy an Openshift cluster in AWS Read More »

Kubernetes storage solution with Portworx

Originally posted on https://en.sokube.ch/post/introduction-to-portworx Introduction to Kubernetes Storage As you may already know, Kubernetes is a free and open-source container orchestration platform. It helps you manage containerized environments and provides amazing features such as self-healing, rollout, rollbacks, auto scaling and packaging ! Storage may not be your main concern if you are running stateless workloads …

Kubernetes storage solution with Portworx Read More »

Kubernetes Series : My K8S Cheatsheet

Troubleshooting See my previous article : here. POD and Container Introspection List the current pods kubectl get pods Describe pod kubectl describe pod <name> Delete pod kubectl delete pod <name> Watch nodes continuously kubectl get nodes -w Cluster Introspection Get cluster information kubectl cluster-info Get the configuration kubectl config view Get information on a node kubectl …

Kubernetes Series : My K8S Cheatsheet Read More »

Kubernetes Series : How to choose between VMs and Containers ?

Introduction As discussed several times through my articles (i.e Docker), containers are now very popular and a lot of development and programs are moved to them. You can see on this graph Docker popularity over yeards : However, in some case, using VM still makes sense ! We will try to compare both technologies and find …

Kubernetes Series : How to choose between VMs and Containers ? Read More »