Kubernetes is the winner


There used to be lots of debates on what is the best container orchestration platform? Is it  ECS or Mesos or Nomad or swarm or Kubernetes ? With some moves in the industry recently, I think the answer is obvious now - Kubernetes is the winner!  What happened in the past a few weeks? Docker announced 'Adding Kubernetes … Continue reading Kubernetes is the winner

Autoscaler on OpenShift Dedicated


At the time of writing, OpenShift dedicated (v3.5.5.31) only supports autoscaling based on the CPU metrics. So the first step is to ensure the CPU request is in place. It can be setup in the section of container spec. e.g spec: containers: image: 'poc/web' name: my-web ports: - containerPort: 3000 resources: requests: cpu: 200m limits: … Continue reading Autoscaler on OpenShift Dedicated

Build smart into your docker images


We have been running mysql 5.7 on OpenShift with RedHat provisioned images.  To make it work is easy, but to make it work correctly is a bit harder. One example is that how to setup the innodb_buffer_pool_size (one of the most important parameters of mysql)? When you build the image you don't know how much memory the … Continue reading Build smart into your docker images