Tag: Containers
-
Architecture of a large-scale web search engine, circa 2019
Posted on December 19, 2019, Level beginner Resource Length long
This is a long overview of bunch of search engines and their architecture. By Tech & Cliqz on 0x65.dev.
Tags search software-architecture containers kubernetes
-
Google Cloud Platform free tier vs physical and cloud servers for startups
Posted on December 18, 2019, Level interemediate Resource Length long
Over a decade ago, it was a common practice to host server software on dedicated private servers. In the age of cloud computing, this hasn't changed a lot because many businesses continue using cloud services as usual servers. By topal on hackernoon.
Tags software-architecture google containers kubernetes
-
How we 30x'd our Node parallelism
Posted on December 13, 2019, Level interemediate Resource Length long
What's the best way to safely increase parallelism in a production Node service? What if your application is a bank integration service? That's a question author's team needed to answer a couple of months ago. By Evan Limanto.
Tags software-architecture nodejs cloud cio containers kubernetes
-
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 sql 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