AKS Today – Google Anthos

Coming out of spring break, I wanted to give a quick update on some work that Google is doing to support Kubernetes across multiple clouds (Google, AWS and Azure). Very interesting to see them take this kind of approach considering they created Kubernetes – an orchestrator for docker – in the first place. Stay tuned […]

AKS Today – Choosing a Base Image

We recommend using official images from Docker Hub. These images have been curated to provide the key languages, runtimes, best practices and security updates. Considering your image will be copied to the container registry and downloaded numerous times through the deployment pipeline, it is important to keep your image sizes small. In general, you want […]

AKS Today – Artifact Stores

Well…I’m familiar with container registries but there is a new paradigm that is being worked on… an artifact registry. The idea is the same as a container (image) registry…store versions of files/configs/images, etc and distribute it to your containers. This would create a new standard that would be supported across all docker implementations and would […]

AKS Today – Hands-on with Docker

Here are some commands that I put together to give you a walkthrough of using docker to create a container image and publish it to Docker Hub. #kubectl cheat sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet #docker cheat sheet: https://devhints.io/docker #Tutorials: https://kubernetes.io/docs/tutorials/ #Contents of the Dockerfile### #FROM nginx #COPY static-html-directory /usr/share/nginx/html docker build -t mydemoimage1 . docker images #make sure […]