Tag: Containers
-
Turn your docker image into an auto-scaling Kubernetes deployment using Amazon EKS
Posted on December 11, 2019, Level interemediate Resource Length long
Omer Hanetz wrote this piece about his experiences with using EKS as the link between your cloud environment with all its computation power, storage, and security features, and your Kubernetes-based containerized environment with its micro-service and auto-scale capabilities.
Tags containers software-architecture kubernetes aws
-
Do you know what's in Helm 3?
Posted on November 20, 2019, Level intermediate Resource Length long
Understand new capabilities and migration options for Helm 3, the package manager for Kubernetes. By Martin Hickey on IBM Developer Blog.
Tags kubernetes devops containers cicd web-development
-
Going serverless with OpenFaaS and Golang -- The ultimate setup and workflow
Posted on November 19, 2019, Level intermediate Resource Length long
Martin Heinz put together this article on building serverless OpenFaaS application with Go. OpenFaaS which is open source Function as a Service tool for developing cloud-native serverless applications.
Tags golang serverless containers apis
-
A mini-guide: Build a REST API as a Go microservice together with MySQL
Posted on November 10, 2019, Level intermediate Resource Length short
In this mini-tutorial, author creates a simple REST-API with a MySQL database. Author have recently found himself coding and deploying a lot of Go microservices and this is his experience and advice. By Johan Lejdung.
Tags golang apis mysql containers docker microservices
-
Intro guide to Dockerfile best practices
Posted on October 20, 2019, Level intermediate Resource Length medium
Tibor Vass wrote this piece about best Dockerfile practices. There are over 1 million Dockerfiles on GitHub today, but not all Dockerfiles are created equally. Efficiency is critical, and this blog series will cover five areas for Dockerfile best practices to help you write better Dockerfiles: incremental build time, image size, maintainability, security and repeatability.
Tags cicd containers docker devops software-architecture
-
Why every test automation engineer needs Jenkins
Posted on October 19, 2019, Level beginner Resource Length medium
Continuous Integration (CI) is a game-changer for increasing the adoption of test automation for every step of the software development process. In this article, the author will describe how CI affects the working day from a test automation engineer's point of view and what are the achievable benefits of CI. By Vincenzo Marrazzo.
Tags cicd containers docker devops
-
Best practices for running Buildah in a container
Posted on October 3, 2019, Level intermediate Resource Length long
One of the cool things about separating the container runtimes into different tools is that you can start to combine them to help secure one other. An article by Daniel Walsh.
Tags containers web-development cloud software-architecture infosec
-
How to build a serverless web crawler
Posted on September 19, 2019, Level intermediate Resource Length medium
James Beswick wrote this piece about how to use serverless to scale an old concept for the modern era. It describes a client project which involved the need to crawl a large media site to generate a list of URLs and site assets.
Tags serverless containers cicd web-development
-
The basics of Kubernetes networking
Posted on September 11, 2019, Level intermediate Resource Length medium
Kamil Lelonek explains everything you need to know about Kubernetes networking in this article. When you deploy your application to a Kubernetes cluster, you usually want to have it accessible from the outside. For real-world production applications, one of the important questions to ask is how to get external traffic into your container.
Tags devops programming kubernetes containers
-
AWS Lambda: how to share code between functions in a monorepo
Posted on September 1, 2019, Level beginner Resource Length short
Yan Cui put together this tutorial about sharing business logic between services in a Node.js monorepo.
Tags serverless containers aws web-development javascript
-
Getting started with Rancher
Posted on August 22, 2019, Level intermediate Resource Length medium
An article by Mike 'MJ' Johnson about getting your hands on Rancher. With the power and flexibility of Kubernetes, you also get a massive amount of complexity. Rancher was founded in 2014 with a company focus on creating software to help manage Docker containers. Rancher 2 can help you more easily deploy, manage and maintain your Kubernetes clusters across multiple environments, both on premise and in the cloud.
Tags web-development devops kubernetes containers how-to
-
Starting local Kubernetes using kind and Docker
Posted on April 21, 2019, Level intermediate Resource Length short
Youichi Fujimoto wrote this guide about running Kubernetes easily in Docker. He shows the steps to run a cluster in single Docker container using kind.
Tags docker containers kubernetes