Tech DevOps
482 subscribers
10 photos
265 links
Download Telegram
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Docker Swarm?
You are expected to have worked with Docker Swarm as it’s an important concept of Docker.
Docker Swarm is native clustering for Docker.
It turns a pool of Docker hosts into a single, virtual Docker host.
Docker Swarm serves the standard Docker API, any tool that already communicates with a Docker daemon can use Swarm to transparently scale to multiple hosts.
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

https://maximorlov.com/images/docker-communication.png
AWS DEVOPS πŸ€— Cloud Training ☁️

Click on the link below to join our whatsapp group
https://chat.whatsapp.com/FPLsEqXJfPuHeLST0d4CIg

AWS DEVOPS
DATE: 9-Mar-2022
TIME: 7PM IST


We provide free session also to boost up your knowledge here.


#AWS #DEVOPS #PROJECT #TRAINING
Starting New Batch on AZURE+DEVOPS !!!

Join Now in below whatspp link to attend Free Demo!!!

https://chat.whatsapp.com/EIdHRe1MEzh2uZS3KyIkRP


DATE: 16/MARCH/2022
TIME: 7PM-IST

Thank you ✌️
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Agent Directive in Jenkins?
Answer: The Agent is the section that specifies the execution point for the entire pipeline or
any specific stage in the pipeline. This section is being specified at the top-level inside the
pipeline block.
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

How to make sure that your project build does not break in Jenkins?
Answer: You need to follow the below-mentioned steps to make sure that the Project build
does not break:
1. Clean and successful installation of Jenkins on your local machine with all
unit tests.
2. All code changes are reflected successfully.
3. Checking for repository synchronization to make sure that all the differences
and changes related to config and other settings are saved in the repository
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is the difference between Maven, Ant, and Jenkins?
Answer: Maven vs Jenkins:
Maven is a build tool like Ant. It consists of a pom.xml file which is specified in Jenkins to
run the code. Whereas, Jenkins is used as a continuous integration tool and automates the
deployment process. The reports of the builds can be used to set a mark for continuous
delivery as well.

Mavan
it is a Build Automation Tool.
Defines how the software is built and describes the software dependencies.
Supports projects written in C#, Ruby
Executes Unit Tests as a part of the normal build cycle.

Ant
Java Library/Command Line Tool.
Drives build process.
Supports projects written in C and C++.
Supports single file execution introduced with Java II.

Jenkins
Continuous Integration Tool.
Automates the software development pwith Continuous Integration and facilitContinuous Deliver.
Supports version control tools like Git,AccuRev.
Can execute Apache Ant and Apache Maven
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

Which command is used to start Jenkins?
Answer: You can follow the below-mentioned steps to start Jenkins:
1. Open Command Prompt
2. From the Command Prompt browse the directory where Jenkins. war resides
3. Run the command given below:
D:\>Java –jar Jenkins.war
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Jenkinsfile?
Answer: The text file where all the definitions of pipelines are defined is called Jenkinsfile. It
is being checked in the source control repository.
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What are Scripted Pipelines in Jenkins?
Answer: Scripted Pipeline follows Groovy Syntax as given below:
Node {
}
In the above syntax, the node is a part of the Jenkins distributed mode architecture, where
there are two types of node, Master which handle all the tasks in the development
environment and the Agent is being used to handle multiple tasks individually.
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Groovy in Jenkins?
Answer: Groovy is the default scripting language that is being used in the development of
JMeter Version 3.1.
Currently Apache Groovy is the dynamic object-oriented programming language that is
used as a scripting language for the Java platform. Apache Groovy comes with some useful
features such as Java Compatibility and Development Support.
#AWS #DEVOPS #PROJECT #Training

AWS DEVOPS Training new batch

Date : 30-Mar-2022 | 7 PM



πŸ‘‡Join below whatsapp group to attend the session πŸ‘‡
https://chat.whatsapp.com/GjArFrRR69lKvdTeRpVpWS


Attend Free Demo
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

Which command is used to start Jenkins?
Answer: You can follow the below-mentioned steps to start Jenkins:
1. Open Command Prompt
2. From the Command Prompt browse the directory where Jenkins. war resides
3. Run the command given below:
D:\>Java –jar Jenkins.war
#AWS #DEVOPS #PROJECT #Training

AWS DEVOPS Training new batch

Date : 31-Mar-2022 | 7 PM



πŸ‘‡Join below whatsapp group to attend the session πŸ‘‡
https://chat.whatsapp.com/GjArFrRR69lKvdTeRpVpWS


Attend Free Demo
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Jenkinsfile?
Answer: The text file where all the definitions of pipelines are defined is called Jenkinsfile. It
is being checked in the source control repository.
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is the difference between Continuous Integration, Continuous Delivery,
and Continuous Deployment?
Answer: The diagrammatic representation given below can elaborate on the differences
between Continuous Integration, Continuous Delivery, and Continuous Deployment more
precisely.

https://i0.wp.com/devopstechie.com/wp-content/uploads/2017/11/ci-4-1024x584.png
πŸ’₯πŸ’₯ Today's Technotes πŸ’₯πŸ’₯

What is Jenkins Pipeline? What is a CI CD pipeline?
Answer: The pipeline can be defined as the suite of plugins supporting the implementation
and integration of continuous delivery pipelines in Jenkins.
Continuous integration or continuous delivery pipeline consists of build, deploy, test, release
pipeline. The pipeline feature saves a lot of time and error in maintaining the builds.
Basically, a pipeline is a group of build jobs that are chained and integrated in sequence.