Author: thedevopsguy.co.in
-
2. Load Balancer
What is a Load balancer? A load balancer helps us distribute traffic or client requests to multiple resources(servers). It also ensures the availability and reliability of servers while serving those requests. It enables us to scale down and up as per requirements. Why do we need a load balancer? As no of requests/traffic grows for…
-
1. Scaling
Definition Scalability means increasing/decreasing application resources as per demand. These resources are required to handle increased load on the system or to improve the system’s performance. Now whenever an application is deployed on a given server(Machine) we expose our program via a certain protocol over a given network for people to use. In our example…
-
3 Steps to Learn Git Workflows Quickly
Introduction Have you wondered how git workflows work in an enterprise? Making Development building and deployment easier while collaborating with others simultaneously.There are three parts to this continuous development cycle. Local Copy for development from Remote Repository Firstly to start development you should have the local copy of the already created remote repository.In Section 1…
-
Git Commands (12 basic Commands)
In this Git Tutorial Post we will learn about basic commands ,strategies and workflows of Git.
-
Google Jib(Compiler for Containers)
What is Google Jib? Google Jib is a Plugin developed by Google engineers to build and containerize Java Applications without a docker file. Jib Plugin is available with Maven and Gradle, or you can also use it as a library. Maven / Gradle Plugin To use the Google Jib plugin you need to add it…
-
What is Docker Compose ?
Definition(Docker Compose) Docker Compose will define multi-container applications via the YAML configuration file. Docker Compose will simplify the control of your entire application stack and provide a streamlined and efficient development and deployment experience.Compose work in all environments production and non-production and has commands to manage the whole lifecycle of your application such as –…
-
Dockerizing your Spring Boot App
Pre – Requisite for dockerizing your Spring Boot App Dockerizing your spring boot app requires some pre-requisite is Process Flow There are multiple process by which we can dockerize our java application (Spring boot app in this case). Here we will discuss the basic process of doing so and in subsequent articles we will discuss…
-
Docker CLI commands
Docker Base command(Docker CLI Commands) The Docker CLI base commands is docker. Once docker is set up on your machine you will be able to access multiple subcommands with the help of the docker keyword.There are numerous docker cli commands available for a different purposes but here we are going to look at some basic…
-
Docker Overview(Everything about docker)
The Post is about about basic docker overview for beginners .
-
8 Components of Best Cypress Automation Framework
Introduction In this post, we will discuss key important components of a good cypress automation framework. We will discuss key components and their usage/importance in the overall framework. Different Components and Configurations for Cypress Automation Framework Cypress Automation Framework consists of many components/configurations. Here we will go through each of them and explore their needs…