Friday, June 11, 2021

Jenkins Learning Task 05 - Configure Security Settings in Jenkins

 Configure Security Settings in jenkins

1. Create a Jenkins job named Packages. ( No worries about configuration now) 

2. Create users named kumar with password kumar@1234 and user raja with password raja@1234.

2. Grant permissions to these users to access Packages job as per details mentioned below:

    a.) Make sure to select Inherit permissions from parent ACL under inheritance strategy for granting permissions to these users.

    b.) Grant mentioned permissions to kumar user : build, configure and read.

    c.) Grant mentioned permissions to raja user : build, cancel, configure, read, update and tag.

Note:
Please do not modify/alter any other existing job configuration. If  Project-based Matrix Authorization Strategy not available then you need to install the below plugin.
Plugin Name: Matrix Authorization Strategy
You might need to install some plugins and restart Jenkins service.

* This is a learning task and you can try to do it in your own learning environment. I have done a sample solution for this task on Ubuntu OS.

Solution:

check below the sample solution video for the above task.



PLEASE SUPPORT ME BY
LIKE || SUBSCRIBE || COMMENTS  on MY YOUTUBE CHANNEL AND BLOG 

STAY TUNED FOR MORE VIDEOS.......

#Learn    #Practice    #Re-Learn    #Improve    #Motivate
    #Continue-Learning    #Apply    #Get-Help    #Help-Others


Jenkins Learning Task 04 -Create Views in Jenkins

 Create Views in Jenkins

1. Create a Jenkins job which should be named jenkins-pipeline-job.

2. Configure this job to run a simple bash command to echo Hello Jenkins!!.

3. Create a view named jenkins-crons (should be a List View) and make sure Jenkins-pipeline-job under this new view.

4. Schedule this newly create job to build periodically at every minute i.e '* * * * *' (please make sure to use the cron expression exactly the same how it is mentioned here)

5. Make sure the job builds successfully.

* This is a learning task and you can try to do it in your own learning environment. I have done a sample solution for this task on Ubuntu OS.

Solution:

check below the sample solution video for the above task.



PLEASE SUPPORT ME BY
LIKE || SUBSCRIBE || COMMENTS  on MY YOUTUBE CHANNEL AND BLOG 

STAY TUNED FOR MORE VIDEOS.......

#Learn    #Practice    #Re-Learn    #Improve    #Motivate
    #Continue-Learning    #Apply    #Get-Help    #Help-Others


Docker Learning Task 02 - How to create a basic docker network

 How to create a basic docker network 1. Create a docker network named  mynetwork . 2. Configure it to use bridge drivers. 3. Set it to use ...