Jenkins CI / CD Pipeline Tutorial in Tamil | Create Jenkinsfile Easily | Jenkins Tutorial #9

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024
  • This video will help you to understand the below topics related to Jenkins CI / CD Pipeline Scripts and Jenkinsfile, Explained in Tamil.
    This is available in English also - Checkout here - • Jenkins #9 | Create CI...
    Support me by offering a Coffee - buymeacoffee.c...
    Topics:
    1. What is Jenkins Pipeline
    2. Types of Jenkins Pipeline Format
    3. Differences of Scripted and Declartive Pipeline
    4. How to Write Jenkinsfile easily?
    5. How to Create Jenkinsfile for Pipeline from Scratch?
    6. How to Bind Credentials in Jenkinsfile?
    7. How to Define Environment Variables in Jenkinsfile?
    It is a 9th Video from our Jenkins Tutorial Series in Tamil. If you are a beginner looking for Jenkins Tutorial in Tamil (Zero to Hero) and Want to learn Jenkins from Basics to Advanced, Go through our Playlist (bit.ly/jenkins...)
    Complete Tamil Tutorial Playlists:
    Devops Tutorials: bit.ly/devops-...
    Docker Tutorials: bit.ly/docker-...
    Kubernetes Tutorials: bit.ly/kuberne...
    Jenkins Tutorials: bit.ly/jenkins...
    Git Tutorials: bit.ly/git-tut...
    AWS Tutorials: bit.ly/aws-tut...
    Linux Tutorials: bit.ly/linux-t...
    Terraform Tutorials: bit.ly/terrafo...
    Ansible Tutorials: bit.ly/ansible...
    Blogging Tips: bit.ly/bloggin...
    OTHER RECOMMENDED VIDEOS:
    Jenkins in Tamil #1 | Jenkins Introduction | CI/CD Workflow Explained | Jenkins Tutorial in Tamil
    • Jenkins Introduction &...
    Jenkins in Tamil #2 | Jenkins Installation & Configuration | Jenkins Tutorial in Tamil
    • Jenkins Installation &...
    Jenkins in Tamil #3 | Jenkins User Management & Jenkins Role Based Strategy Tutorial
    • Jenkins User Managemen...
    Jenkins in Tamil #4 | Jenkins Pipeline or FreeStyle Jobs? | Jenkins Job Explained with Examples
    • Jenkins Pipeline or Fr...
    Jenkins Plugin Management Tutorial in Tamil | Jenkins Tutorial #5
    • Jenkins Plugin Managem...
    Kubernetes Certification Overview in Tamil | CKA | CKAD | Kubernetes Certification Exams Explained
    • Kubernetes Certificati...
    Kubernetes Full Course for Beginners in Tamil | Kubernetes Tutorial for Beginners | Learn Kubernetes in 4 Hours
    • Kubernetes Full Course...
    DevOps Explained in Tamil | Become DevOps Engineer | DevOps in Tamil
    • DevOps Explained in Ta...
    Git Full Course in Tamil - Git Tutorial for Beginners | Learn Git in 2 Hours | GitOps Tutorial
    • Git Full Course in Tam...
    Docker Full Course in Tamil | Learn Docker in 4 Hours | Docker Full Tutorial for Beginners
    • Docker Full Course in ...
    Make sure you have Subscribe to our channel @selvatechitops for more interesting videos and stay connected with us on social networking sites to get further updates immediately.
    Click here to Subscribe: bit.ly/selvatec...
    Facebook : / selvatechitops
    Twitter : / selvatechitops
    Instagram : / selvatechitops
    Pinterest : / selvatechitops
    Telegram : t.me/selvatech...
    Linkedin : / selvatechitops
    #DevOps #Jenkins #CI #CD #CICD #DevOpsTools #JenkinsCI #Linux
    #tamil #devopstamil #jenkinstamil

Комментарии • 9

  • @SELVATechITOps
    @SELVATechITOps  4 месяца назад +1

    Thank you for watching this video. Make sure you have Subscribed to our channel @selvatechitops for more interesting videos and stay connected with us on social networking sites to get further updates immediately.
    Click here to Subscribe: bit.ly/selvatechitops
    Website: www.learnitguide.net
    Facebook : facebook.com/selvatechitops
    Twitter : twitter.com/selvatechitops
    Instagram : instagram.com/selvatechitops
    Pinterest : www.pinterest.com/selvatechitops
    Telegram : t.me/selvatechitops
    Linkedin : www.linkedin.com/in/selvatechitops

  • @thilaksalivahanan2342
    @thilaksalivahanan2342 4 месяца назад +2

    Hi Selva. Please can you collaborate all your teaching into a streamline course. Which wil be helpful for the readers as in RUclips we might miss some topic or getting the doubts clarified will be challenging

    • @SELVATechITOps
      @SELVATechITOps  4 месяца назад +1

      Yes, I can understand it. But due to other commitments and considering time. I coulndt make it. Thats why, I make videos in free time and upload to viewers for free. Also I will consolidate every individual topics to single videos as crash courses. So far, I have uploaded single video course for git, docker, kubernetes, jenkins.

    • @thilaksalivahanan2342
      @thilaksalivahanan2342 4 месяца назад

      @@SELVATechITOps Thanks Selva. It helps 👍 . Let me know if we can connect and I can clear other doubts regarding the topics/ skills

  • @2RAJ21
    @2RAJ21 2 месяца назад +1

    Thank you

  • @VN_creator
    @VN_creator 4 месяца назад +1

    Good to see you back

    • @SELVATechITOps
      @SELVATechITOps  4 месяца назад

      Thanks bro, keep provide your support and share with your friends..

  • @sarath3925
    @sarath3925 4 месяца назад +2

    Hi Anna,
    In the pipeline script we used parameters variable as $param_name but with credentials we used as ${env_name}. Why??

    • @SELVATechITOps
      @SELVATechITOps  4 месяца назад +1

      Both are for variable assignment only. but there are few diference in it.
      $param_name - We used this format, because the variable is a plain text. So we can use such format.
      $(env_name) - We use this format when we have multiple commands or special charactors. On that case we can use this variable formats to avoid unnecessary syntax related issues, this will work in all variable formats.. Eg: $(uname -a)