Mastering Infrastructure Management with Terraform
Introduction Welcome to my How-To guide on managing infrastructure with Terraform! In this blog post, I will walk you through the steps to effortlessly…
AdminTuts is a computer science blog about machine learning, artificial intelligence & server administration providing written coding tutorials.
Introduction Welcome to my How-To guide on managing infrastructure with Terraform! In this blog post, I will walk you through the steps to effortlessly…
Introduction DevOps and GitOps are two distinct approaches to software development and deployment, each with its own set of tools, processes, and workflows. Understanding…
Introduction: Traefik is an open-source cloud-native edge router that is designed to manage the traffic flow between microservices and reverse proxy. It is widely…
Introduction In this article, you will learn how to install NxLog in a remote server, (or a set of servers) using Ansible. NXLog is…
Introduction In this article, you will learn how to create clusters on the GCP Google Kubernetes Engine (GKE) with the gcloud command-line interface and…
Introduction Portworx is a software-defined persistent storage solution designed and purpose-built for applications deployed as containers, via container orchestrators such as Kubernetes, Nomad, Marathon, …
Introduction Jenkins is an essential tool in the DevOps world, and countless organizations use it for their CI/CD pipeline needs. However, security concerns can…
Git Basics Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new…
Introduction In a previous tutorial, you learned how to install Jenkins on a Kubernetes Cluster. In this tutorial, we will create a Jenkins CI/CD…
Introduction Jenkins is a CI tool ( continuous integration) that automates a large portion of the software development process. Several development teams working on multiple projects…