Kubernetes Cron/CronJobs in 10 minutes

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024

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

  • @MrTofu1ukr
    @MrTofu1ukr Год назад +2

    Thank you. The last part with your own experience is especially valuable.

  • @AndrewLitvinov
    @AndrewLitvinov 3 года назад +3

    thank you for the "kubectl get pods --watch" command

  • @KingAtem1000
    @KingAtem1000 4 года назад +6

    This was a very clear and intuitive tutorial. Thanks as well for uploading!!!

  • @VladimirSanchez
    @VladimirSanchez 3 года назад +4

    You're a great (under-rated) teacher! Keep producing!

  • @lukystreik
    @lukystreik 4 года назад +4

    great short tutorial, that covers all my questions. Thanks a lot!

  • @miguel550
    @miguel550 3 года назад +1

    Great tutorial, I like how short and informative it is! Thanks man!

  • @krishind99
    @krishind99 Год назад +1

    This is amazing. I’ll now follow the entire series

    • @ProductivityforProgrammers
      @ProductivityforProgrammers  Год назад

      Thank you for the kind words. Let me know if there are any adjacent topics that you would like videos on and please subscribe if you haven’t already.

    • @krishind99
      @krishind99 Год назад +1

      @@ProductivityforProgrammers Similar sessions on Kubernetes Jobs, Replication sets, PV, Ingress Controller, Gateways, VirtualService. There's a long list of things you can take up. If I can help either in preparation, evaluation, more than happy

  • @Sliceace
    @Sliceace 2 года назад +1

    I tried this and it works. This is super cool.

  • @hkmehandiratta
    @hkmehandiratta Год назад +1

    Thanks a ton. This tutorial was really helpful.

  • @rohitdalvi9702
    @rohitdalvi9702 4 года назад +1

    Great tutorial, thanks for uploading.

  • @Hackenbaker
    @Hackenbaker 2 года назад +1

    Very clear! Thanks a lot.

  • @pfallasro
    @pfallasro 2 года назад +1

    This was awesome, thanks!

  • @based3765
    @based3765 2 года назад +1

    very good tutorial, thank you!

    • @ProductivityforProgrammers
      @ProductivityforProgrammers  2 года назад +1

      Thank you, please consider subscribing, will be doing more videos on batch jobs in the near future.

  • @ethanleroux2028
    @ethanleroux2028 2 года назад +1

    supa helpful, thanks

  • @nahidhossain8499
    @nahidhossain8499 Год назад +1

    Thanks , Will be glad if you share POC git reference

  • @YTonYahoo
    @YTonYahoo 5 месяцев назад +1

    cool

  • @DeepakAggarwal-sc7cm
    @DeepakAggarwal-sc7cm 9 месяцев назад +1

    where will be history saved ?

  • @santoshkumarnayak7025
    @santoshkumarnayak7025 3 года назад +1

    Thanks, video is wonderful. My question is how to run kubectl command like "kubectl apply -f my_job.yaml" inside a container. Please share some insight on it or any reference.

    • @ProductivityforProgrammers
      @ProductivityforProgrammers  3 года назад

      I haven't had the need to do this yet -- so I haven't explored it.
      If you don't mind sharing, what is your use case for doing so? It could be as easy as storing the "kubeconfig" file in a secret and then mounting it in the pod e.g.
      serverfault.com/questions/1013420/kubernetes-kubeconfig-inside-pod

  • @raavivamsi1642
    @raavivamsi1642 3 года назад +1

    i have a use case where i am trying to send email notification from kubernetes using cronjob but i am not able to succeed, where as i am able to do it with kind- deployment. Any help would appreciate

  • @alvinong2008
    @alvinong2008 2 года назад +1

    How can we trigger a manual run even though we have scheduled them?

  • @poornimapv380
    @poornimapv380 2 года назад +1

    Is it possible to replicate the same using only docker ?

    • @ProductivityforProgrammers
      @ProductivityforProgrammers  2 года назад

      The way I would do it in Docker is probably by embedding a scheduler in the Docker image itself.

  • @poojarsangve1313
    @poojarsangve1313 2 года назад

    I have a springboot batch application which is connecting to postgres db and getting data , now I want schedule the cronjob to run the springboot batch application every 15 mins and get the results. But I don't know the logic to cronjob to connect to batch application.

  • @Vishwanathasetty
    @Vishwanathasetty 9 месяцев назад +1

    Is the code available for practice?