Crossplane Introduction: Animated Guide, Comparison with Terraform & AWS S3 Demo

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

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

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

    Thank you for sharing your valuable knowledge with us. Keep up the great work!

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

      Thank you!

  • @ministryofwoke8931
    @ministryofwoke8931 8 หลายเดือนก่อน +3

    "Ready to own the cloud game?" - LOL - I love your enthusiasm - thank you for the awesome video!

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

      LOL thanks! We gotta have some fun with this!

  • @zenobikraweznick
    @zenobikraweznick ปีที่แล้ว +2

    This is high quality video packed with invaluable knowledge - thank you!

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว

      Thank you very much!

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

    Thanks

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

      Thank you so much!

  • @andrewhadjimichael9616
    @andrewhadjimichael9616 11 หลายเดือนก่อน +2

    Nice demo. Subbed

    • @TeKanAid
      @TeKanAid  11 หลายเดือนก่อน

      Thanks

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

      @@TeKanAid One thing that the market is crying out for is a training course on the subject. There is one book I have found out there but that's about it. A training video course would be excellent. Do you know if any training material is out there?

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

      I hear you, Andrew. I've had a few requests about it already and I'm considering it. I'm not aware of video training courses out there. However, I would need to carve some time for it as it's a big commitment to build a course like this.

  • @bertrandyangni9862
    @bertrandyangni9862 11 หลายเดือนก่อน

    Great content/Video Sam 👏

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

      Thanks Bertrand!

    • @bertrandyangni9862
      @bertrandyangni9862 11 หลายเดือนก่อน

      @@TeKanAid welcome Sam

  • @shabbirsaifee7497
    @shabbirsaifee7497 ปีที่แล้ว

    Your videos are brilliant!

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว

      Thank you very much!

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

    Can you please explain how to create composition etc end to end via the documentation

    • @TeKanAid
      @TeKanAid  3 หลายเดือนก่อน

      Yep, planning on doing that in my new crossplane course. Stay tuned!

  • @palanisamy-dl9qe
    @palanisamy-dl9qe ปีที่แล้ว

    Thanks for effort
    When the s3 bucket is deleted by user and it’s recreated by k8s way is that data has been restored inside the bucket if we define pv and pvc ?

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว +3

      When you delete an S3 bucket manually and it's recreated by Kubernetes using Crossplane, the data originally in the bucket won't automatically be restored. Here's why:
      S3 Bucket Deletion: When you delete an S3 bucket, all the data inside it has to be first removed. This is standard AWS behavior.
      Recreation via Crossplane: Crossplane will create a new, empty bucket.
      Persistent Volumes (PV) and Persistent Volume Claims (PVC): Defining PV and PVC in Kubernetes is more about managing storage in the cluster itself rather than handling data in an S3 bucket. They don't directly interact with S3 data.
      Data Restoration: To restore the data, you would need to have a backup system in place. You could automate this with AWS services or other backup tools.
      So, in short, just recreating the bucket through Crossplane won't bring back the deleted data. Always have a backup strategy! Hope this helps.