Saturday, July 28, 2018

Jenkins Tutorial For Beginners 16 - Creating and Configuring Slaves/Nod...



In this Video I am going to show How to Create and Configure Slaves/Nodes using using SSH. This video will provide the answer to the question : What is the use of master and slave in Jenkins?. Also we will discuss how to configure linux jenkins agent/slave on remote machine using ssh method.
Jenkins Master Schedules the build and jobs, Dispatch builds to the slaves for the actual job execution, Monitor the slaves and record the build results, Can also execute build jobs directly. Jenkins Slave Executes build jobs dispatched by the master.


-------------------Online Courses to learn----------------------------
Java -
https://bit.ly/2H6wqXk
C++ -
https://bit.ly/2q8VWl1
AngularJS -
https://bit.ly/2qebsLu
Python -
https://bit.ly/2Eq0VSt
C-
https://bit.ly/2HfZ6L8
Android -
https://bit.ly/2qaRSAS
Linux -
https://bit.ly/2IwOuqz
AWS Certified Solutions Architect -
https://bit.ly/2JrGoAF
Modern React with Redux -
https://bit.ly/2H6wDtA
MySQL -
https://bit.ly/2qcF63Z
----------------------Follow---------------------------------------------
My Website -
http://www.codebind.com
My Blog -
https://goo.gl/Nd2pFn
My Facebook Page -
https://goo.gl/eLp2cQ
Google+ -
https://goo.gl/lvC5FX
Twitter -
https://twitter.com/ProgrammingKnow
Pinterest -
https://goo.gl/kCInUp
Text Case Converter -
https://goo.gl/pVpcwL
-------------------------Stuff I use to make videos -------------------
Stuff I use to make videos
Windows notebook –
http://amzn.to/2zcXPyF
Apple MacBook Pro –
http://amzn.to/2BTJBZ7
Ubuntu notebook -
https://amzn.to/2GE4giY
Desktop -
http://amzn.to/2zct252
Microphone –
http://amzn.to/2zcYbW1
notebook mouse –
http://amzn.to/2BVs4Q3
------------------Facebook Links ----------------------------------------
http://fb.me/ProgrammingKnowledgeLear...
http://fb.me/AndroidTutorialsForBegin...
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter

Monday, July 23, 2018

Jenkins Tutorial For Beginners 15 - Pipeline script from SCM + Using Je...



In this Video I am going to show How to use Pipeline script from SCM and How to use Jenkinsfile in Github Project.Jenkins Pipeline is a Whole suite of plugins (10+) which are open-sourced and Shipped with Jenkins 2.x.x. These Pipeline plugins were Formerly commercially available by CloudBees, called Workflow. We use a file called Jekinsfile to Define pipeline as code (again Groovy DSL) stage("Hello") { echo "*Hello*" } stage("World") { echo "*World*" }

Jenkins sample pipeline script in Jenkinsfile
------------------------
pipeline {
agent any
stages {
stage('---clean---') {
steps {
sh "mvn clean"
}
}
stage('--test--') {
steps {
sh "mvn test"
}
}
stage('--package--') {
steps {
sh "mvn package"
}
}
}
}


-------------------Online Courses to learn----------------------------
Java -
https://bit.ly/2H6wqXk
C++ -
https://bit.ly/2q8VWl1
AngularJS -
https://bit.ly/2qebsLu
Python -
https://bit.ly/2Eq0VSt
C-
https://bit.ly/2HfZ6L8
Android -
https://bit.ly/2qaRSAS
Linux -
https://bit.ly/2IwOuqz
AWS Certified Solutions Architect -
https://bit.ly/2JrGoAF
Modern React with Redux -
https://bit.ly/2H6wDtA
MySQL -
https://bit.ly/2qcF63Z
----------------------Follow---------------------------------------------
My Website -
http://www.codebind.com
My Blog -
https://goo.gl/Nd2pFn
My Facebook Page -
https://goo.gl/eLp2cQ
Google+ -
https://goo.gl/lvC5FX
Twitter -
https://twitter.com/ProgrammingKnow
Pinterest -
https://goo.gl/kCInUp
Text Case Converter -
https://goo.gl/pVpcwL
-------------------------Stuff I use to make videos -------------------
Stuff I use to make videos
Windows notebook –
http://amzn.to/2zcXPyF
Apple MacBook Pro –
http://amzn.to/2BTJBZ7
Ubuntu notebook -
https://amzn.to/2GE4giY
Desktop -
http://amzn.to/2zct252
Microphone –
http://amzn.to/2zcYbW1
notebook mouse –
http://amzn.to/2BVs4Q3
------------------Facebook Links ----------------------------------------
http://fb.me/ProgrammingKnowledgeLear...
http://fb.me/AndroidTutorialsForBegin...
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter

Wednesday, July 18, 2018

Jenkins Tutorial For Beginners 14 - What is Pipeline + How to create Jen...



In this Video I am going to show What is Pipeline in Jenkins (DevOps) and How to create Jenkins Pipeline with an Example. In addition We will also see How to use Pipeline as Code.Jenkins Pipeline is a Whole suite of plugins (10+) which are open-sourced and Shipped with Jenkins 2.x.x. These Pipeline plugins were Formerly commercially available by CloudBees, called Workflow. We use a file called Jekinsfile to Define pipeline as code (again Groovy DSL) stage("Hello") { echo "*Hello*" } stage("World") { echo "*World*" }

Jenkins sample pipeline script
------------------------
pipeline {
agent any
stages {
stage('Example clean') {
steps {
sh "rm -rf my-app"
sh "git clone
https://github.com/pknowledge/my-app.git"
sh "mvn clean -f my-app"
}
}
stage('Example install') {
steps {
sh "mvn install -f my-app"
}
}
stage('Example test') {
steps {
sh "mvn test -f my-app"
}
}
stage('Example package') {
steps {
sh "mvn package -f my-app"
}
}
}
}


-------------------Online Courses to learn----------------------------
Java -
https://bit.ly/2H6wqXk
C++ -
https://bit.ly/2q8VWl1
AngularJS -
https://bit.ly/2qebsLu
Python -
https://bit.ly/2Eq0VSt
C-
https://bit.ly/2HfZ6L8
Android -
https://bit.ly/2qaRSAS
Linux -
https://bit.ly/2IwOuqz
AWS Certified Solutions Architect -
https://bit.ly/2JrGoAF
Modern React with Redux -
https://bit.ly/2H6wDtA
MySQL -
https://bit.ly/2qcF63Z
----------------------Follow---------------------------------------------
My Website -
http://www.codebind.com
My Blog -
https://goo.gl/Nd2pFn
My Facebook Page -
https://goo.gl/eLp2cQ
Google+ -
https://goo.gl/lvC5FX
Twitter -
https://twitter.com/ProgrammingKnow
Pinterest -
https://goo.gl/kCInUp
Text Case Converter -
https://goo.gl/pVpcwL
-------------------------Stuff I use to make videos -------------------
Stuff I use to make videos
Windows notebook –
http://amzn.to/2zcXPyF
Apple MacBook Pro –
http://amzn.to/2BTJBZ7
Ubuntu notebook -
https://amzn.to/2GE4giY
Desktop -
http://amzn.to/2zct252
Microphone –
http://amzn.to/2zcYbW1
notebook mouse –
http://amzn.to/2BVs4Q3
------------------Facebook Links ----------------------------------------
http://fb.me/ProgrammingKnowledgeLear...
http://fb.me/AndroidTutorialsForBegin...
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter
IT Certification Category (English)640x480

Partner Sites

VideoToGifs.com

EasyOnlineConverter.com

SqliteTutorials.com


Top Online Courses From ProgrammingKnowledge

Python Course http://bit.ly/2vsuMaS
Java Coursehttp://bit.ly/2GEfQMf
Bash Coursehttp://bit.ly/2DBVF0C
Linux Coursehttp://bit.ly/2IXuil0
C Course http://bit.ly/2GQCiD1
C++ Coursehttp://bit.ly/2V4oEVJ
PHP Coursehttp://bit.ly/2XP71WH
Android Coursehttp://bit.ly/2UHih5H
C# Coursehttp://bit.ly/2Vr7HEl
JavaFx Coursehttp://bit.ly/2XMvZWA
NodeJs Coursehttp://bit.ly/2GPg7gA
Jenkins Course http://bit.ly/2Wd4l4W
Scala Coursehttp://bit.ly/2PysyA4
Bootstrap Coursehttp://bit.ly/2DFQ2yC
MongoDB Coursehttp://bit.ly/2LaCJfP
QT C++ GUI Coursehttp://bit.ly/2vwqHSZ