How to integrate Jenkins with Kubernetes Cluster | Jenkins integration with Kubernetes Cluster

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 38

  • @gpldakhil
    @gpldakhil 10 หลายเดือนก่อน +1

    Thanks for this video tutorial.

    • @Iam.7hills
      @Iam.7hills  10 หลายเดือนก่อน

      Thank you for watching this video, please share with your friends.

  • @PrashantSharma-dl9zf
    @PrashantSharma-dl9zf 3 หลายเดือนก่อน +1

    useful👏👏

  • @suneelsai_e4123
    @suneelsai_e4123 4 หลายเดือนก่อน +1

    This video is useful

  • @ganeshpawar231
    @ganeshpawar231 วันที่ผ่านมา +1

    Hi sir,
    As you are mentioning token will expire in 10 years and immediately you explained will expire in 1 hour.
    Just confused.
    What exactly by default duration?
    Thanks.

    • @Iam.7hills
      @Iam.7hills  วันที่ผ่านมา +1

      Default is 60 minutes , in the demo I had used 10 years duration.

    • @ganeshpawar231
      @ganeshpawar231 19 ชั่วโมงที่ผ่านมา

      But You have used --duration=8760h it means after 1 year token will expire
      365*24=8760h

  • @Deepak-Singh23
    @Deepak-Singh23 ปีที่แล้ว +1

    Nice, can we implement using local setup of minikube ?

    • @Iam.7hills
      @Iam.7hills  ปีที่แล้ว +1

      Thank you Deepak.. Yes we can do Jenkins integration with minikube as well.. But we need to make sure Jenkins and your Minikube should be running inside the same network. I will try to put a video on this weekend.

    • @Deepak-Singh23
      @Deepak-Singh23 ปีที่แล้ว +1

      @@Iam.7hills Sure, Thank you so much, mean while even I'll try it out .

    • @Iam.7hills
      @Iam.7hills  ปีที่แล้ว

      Hi Deepak - Please check this video and let me know if you need any help
      th-cam.com/video/T4Y0TTjS680/w-d-xo.html

  • @davidperdomo9
    @davidperdomo9 11 หลายเดือนก่อน +1

    Hi! I was able to connect kubernetes with jenkins but I am not sure what is next in the code pipeline. I would like to see an example, thank you!

    • @Iam.7hills
      @Iam.7hills  11 หลายเดือนก่อน +1

      Hi Dave, Can you please check this URL
      github.com/Iam-7hills/kubernetes/blob/main/pipeline.txt.
      You can also use a freestyle job following this video - th-cam.com/video/Kekftw7Ms3Q/w-d-xo.html

    • @davidperdomo9
      @davidperdomo9 11 หลายเดือนก่อน +1

      @@Iam.7hills Thank you very much!

  • @gpldakhil
    @gpldakhil 10 หลายเดือนก่อน +1

    Sure Sir, How to define the number of pods for the jobs and how to scale up pods ( how to do that)

    • @Iam.7hills
      @Iam.7hills  10 หลายเดือนก่อน

      Hi Gopal, as far as i know, replicas for pods can be managed using replicasset and deployment. I don't think they use for JOB kind. Instead they use Parallelism, which you can check my blog for the details.
      kubernetes7hills.blogspot.com/p/jobs.html.
      I have the video to explain hpa Autoscale based on the kubernetes.io documentaion, please do let me know if it is not clear. th-cam.com/video/jriZOTVVwvE/w-d-xo.html

    • @gpldakhil
      @gpldakhil 10 หลายเดือนก่อน

      Sure sir I will explore your blog if any doubts I will let know Thanks for your support

    • @Iam.7hills
      @Iam.7hills  10 หลายเดือนก่อน

      @@gpldakhil please ask me for any doubts, happy to help

  • @cabrera-dev
    @cabrera-dev 4 หลายเดือนก่อน +1

    Hi! How can i deploy a kustomization? Bc i need to create a deployment which will be exposed by a svc and has his own configmap for environments

    • @Iam.7hills
      @Iam.7hills  3 หลายเดือนก่อน

      Hi, I have the video for Kustomization.please do check this and let me know if it helps.. If you still have a further questions, do let me know. thank you.
      th-cam.com/video/CgZ3Hvfvta8/w-d-xo.html

    • @Iam.7hills
      @Iam.7hills  3 หลายเดือนก่อน

      th-cam.com/video/CgZ3Hvfvta8/w-d-xo.html

  • @knr12191
    @knr12191 8 หลายเดือนก่อน +1

    if you attached the pipeline script it will usefull for beginers like me

    • @Iam.7hills
      @Iam.7hills  8 หลายเดือนก่อน

      Please find this link : github.com/Iam-7hills/kubernetes/blob/main/pipeline.txt

    • @knr12191
      @knr12191 8 หลายเดือนก่อน +1

      Thanks a lot

    • @Iam.7hills
      @Iam.7hills  8 หลายเดือนก่อน

      @knr12191 thanks for watching my video

  • @saikrishnasiddhard4814
    @saikrishnasiddhard4814 2 หลายเดือนก่อน +1

    Sir can You kindly share that cd job code Git code link

    • @Iam.7hills
      @Iam.7hills  2 หลายเดือนก่อน

      Here you go :
      pipeline {
      agent {
      kubernetes {
      yaml '''
      apiVersion: v1
      kind: Pod
      spec:
      containers:
      - name: maven
      image: maven:alpine
      command:
      - cat
      tty: true
      '''
      }
      }
      stages {
      stage('Run maven') {
      steps {
      container('maven') {
      sh 'mvn -version'
      }
      }
      }
      }
      }

  • @FoodStop.
    @FoodStop. 7 หลายเดือนก่อน

    Hi Sir,
    Iam not able to create token it says unknown flag for duration and I had read that token will get auto generated when we create service account but for me its not getting generated. What permissions I need to create token?

    • @Iam.7hills
      @Iam.7hills  5 หลายเดือนก่อน

      what error do you get ?

  • @pavans2927
    @pavans2927 5 หลายเดือนก่อน

    How to create pipeline if I have tank file in git

    • @Iam.7hills
      @Iam.7hills  5 หลายเดือนก่อน

      what is tank file means ?

  • @kirtiparate4571
    @kirtiparate4571 3 หลายเดือนก่อน +1

    May i know pipeline code

    • @Iam.7hills
      @Iam.7hills  3 หลายเดือนก่อน

      Please check this link for the pipeline code. Thanks for watching the video.
      github.com/Iam-7hills/kubernetes/blob/main/pipeline.txt.

  • @rex-dj5cu
    @rex-dj5cu 11 หลายเดือนก่อน

    facing websocket error

    • @Iam.7hills
      @Iam.7hills  11 หลายเดือนก่อน

      I think, I had seen this error. Let me replicate this issue.. Can you please contact me @ iam.7hills@gmail.com

  • @manoharkodurivlogs4460
    @manoharkodurivlogs4460 4 หลายเดือนก่อน +1

    Not clear? Please make videos clearly step by steps

    • @Iam.7hills
      @Iam.7hills  4 หลายเดือนก่อน

      Sure, I will try my best. Thanks for your feedback