Day 21/40 - Manage TLS Certificates In a Kubernetes Cluster - Create Certificate Signing Request

Поділитися
Вставка
  • Опубліковано 21 лис 2024

КОМЕНТАРІ • 51

  • @GrigTech
    @GrigTech Місяць тому +2

    Great work Piyush, thank you so much, everyday i am getting stronger

  • @SivanagireddyNandyala
    @SivanagireddyNandyala 15 днів тому +1

    great explanation, thank you

  • @abc-edm
    @abc-edm Місяць тому +1

    thank you Piyush for good sharing again ...
    just feel more confidence on CKA exam :)

  • @floehden
    @floehden 4 місяці тому +1

    Thank you for the Video! It's an interesting topic and how Kubernetes handles it!

  • @sangativamsikrishna1691
    @sangativamsikrishna1691 4 місяці тому +1

    Thanks Piyush, great explanation about TLS certificates. Really understoood well and need to practice more. Thank you

  • @GopiVivekManne
    @GopiVivekManne 4 місяці тому

    Thanks Piyush!! Clear explanations on TLS certificates in k8s 👍

  • @artbart9080
    @artbart9080 4 місяці тому

    Great!Good explanation with practice!

  • @Alex-rl1gl
    @Alex-rl1gl 2 місяці тому

    thank you for the explanation and your effort

  • @niroshthota5819
    @niroshthota5819 4 місяці тому +1

    Great Video, Thanks Piyush

  • @praveenkore842
    @praveenkore842 3 місяці тому

    Mind blowing
    Going for rbac
    For Full details.!
    Thanks 😊

  • @baburaogurana5970
    @baburaogurana5970 4 місяці тому

    Great explanation

  • @chebrolunarendra
    @chebrolunarendra 4 місяці тому +1

    Thank you.

  • @tendaimakuwerere5693
    @tendaimakuwerere5693 4 місяці тому +1

    Awsome thank you Piyush #cka 🚀

  • @amirghanbari3946
    @amirghanbari3946 3 місяці тому

    Great! Thanks

  • @oshabzsam9773
    @oshabzsam9773 4 місяці тому +1

    Nice video

  • @BilalOsmany
    @BilalOsmany Місяць тому +1

    I completed your 40 days in 10 days I say for 2 hours daily along lab which I have from kodekloud so it was easy for me to do labs as I did not have to setup k8 all time
    I had a question I understand your busy schedule but plz if u cud ans this
    I've completed this very well I've seen you suggesting not to rely on CKA courses to get jobs or clear interview so plz guide where and what to do to completely be experienced in K8 or atleast something to clear interview a pathway or guide would be a blessing

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  Місяць тому +1

      Great job completing the course. The reason I suggested to build the lab yourself so that you understand the administration part of it, installation, upgrades, setup and troubleshooting issues, when you build everything from scratch, you face a lot of issues, you then research and fix those issues hence, you learn a lot during that process. After this, I'd suggest below:-
      - Learn a managed cloud service such as GKE, AKS, EKS, Openshift etc
      - Learn kubernetes related tools Kustomize, Helm, ArgoCD and implement projects using those.
      - Implement a few k8s specific tasks such as Certificate rotation, hardening the kubernetes cluster for compliance, implement policy as code, implement best practises for performance, cost optimization, HA and failure etc
      - Implement projects for Kubernetes Infra provisioning using Terraform and create project on Github for the same
      - Setup Monitoring, alerting and logging on Kubernetes using the opensource tools.
      I know it's a long list but do whatever you can. All the best.

    • @BilalOsmany
      @BilalOsmany Місяць тому

      @@TechTutorialswithPiyush I was not expecting a reply or a short reply thinking about your busy schedule
      But u gave me the guidance I wanted the most
      Thanks a lot bhai this is a lot ❤️
      I loved your videos because you jave explained dot on point waiting for your next videos

  • @vamsikrishna-f8y
    @vamsikrishna-f8y 4 місяці тому

    thank you piyush

  • @narasimhasaladi7
    @narasimhasaladi7 4 місяці тому +1

    Bro Can u create some end to end projects
    Which may help to grasp concepts in much better way
    Thank you...

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  4 місяці тому

      Yes, We will create one end to end project at the end of the series. I wanted to cover all the fundamental concepts before implementing a complete project

    • @narasimhasaladi7
      @narasimhasaladi7 4 місяці тому

      @@TechTutorialswithPiyush thank you broo 🙌

  • @suhasdhoke1735
    @suhasdhoke1735 3 місяці тому +1

    Instead of running "#kubectl certificate approve adam" to approve the request , can we update the csr.yml file directly with status:true , type:Approved ?

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  3 місяці тому

      I would suggest trying it out and let me know what results you get :) It will make things clear

  • @ITMicronova
    @ITMicronova 2 місяці тому

    Hi Piyush,
    I am getting below error can you please add the csr.yaml file in the github repo ?
    Error from server (BadRequest): error when creating "csr.yaml": CertificateSigningRequest in version "v1" cannot be handled as a CertificateSigningRequest: illegal base64 data at input byte 0

    • @blitzerdisco
      @blitzerdisco Місяць тому +2

      try following command when converting your plain text csr to base64 encoded:
      cat adam.csr | base64 -w 0
      then paste it in the yaml file and apply

  • @ITMicronova
    @ITMicronova 2 місяці тому

    Hi Piyush,
    i am getting below error....
    Error from server (BadRequest): error when creating "csr.yaml": CertificateSigningRequest in version "v1" cannot be handled as a CertificateSigningRequest: illegal base64 data at input byte 0

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  2 місяці тому

      Looks like the file is corrupted, please perform the steps again, I might have used /n incorrectly which corrupted my file as well. Make sure to take of that

  • @naveensilver
    @naveensilver 2 місяці тому +1

    What is Cert manager ?

    • @fio_mak
      @fio_mak 2 місяці тому +1

      @@naveensilver
      It's a mechanism to issue ssl certificates for services hosted on k8s. Mostly via ingress controller (using http01) or dns01

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  2 місяці тому

      Cert Manager is a tool that automatically issues and renews the certificates. I will create a seperate video for the same.

    • @TechTutorialswithPiyush
      @TechTutorialswithPiyush  2 місяці тому

      Thank you for replying

    • @naveensilver
      @naveensilver 2 місяці тому +1

      @@TechTutorialswithPiyush thank you so much !!

  • @karthiksundaram544
    @karthiksundaram544 2 місяці тому

    hi piyush i guess tls have a higher latency time