Kubernetes for the Spring Developer - Meaghan Kjelland

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

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

  • @odedia
    @odedia 6 ปีที่แล้ว +16

    FINALLY, a real-world Spring Boot on K8S demo :) Great talk, thank you.

  • @gautamdevkhanna4255
    @gautamdevkhanna4255 4 ปีที่แล้ว

    Short n sweet upto the mark ... unlike others vids where loads of theories and at times deviates from main topic ...

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

    yep - informative and with detailed demo examples covering all steps - thanks!

  • @shriramdevanathan7222
    @shriramdevanathan7222 6 ปีที่แล้ว +4

    Great stuff. Thank you :-)

  • @SreenathV
    @SreenathV 5 ปีที่แล้ว

    Short and nice tutorial

  • @russomi
    @russomi 6 ปีที่แล้ว

    well done!

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

    Thanks for the presentation!
    Here's an idea. First you say, what you wanna say, and then you show the slide. You don't show a slide and start talking while people are trying to read from the slide.

  • @skernelman2208
    @skernelman2208 4 ปีที่แล้ว

    cool

  • @shaofeiliu9404
    @shaofeiliu9404 6 ปีที่แล้ว

    k8s has service find. I don't want use like this ' kubectl create configmap hostname-config --from-literal=postgres_host=$(kubectl get svc postgres -o jsonpath="{.spec.clusterIP}")'. I expose a postgres service(name is POSTGRES). In my app config, I want use service variable like "${POSTGRES.HOST} or ${POSTGRES_HOST} lalala". How can i do it?

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

      if the service name is "postgres-service" then you can have your connection string as "postgresql://postgres-service/mydb". Kubernetes DNS will automatically resolve this to the cluster ip.

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

      @@RajaAnbazhagan Awesome tip.

  • @Prak2311991
    @Prak2311991 6 ปีที่แล้ว

    Awesome video.Could you please share github link.

    • @meaghankjelland9213
      @meaghankjelland9213 6 ปีที่แล้ว +7

      Of course, here are the steps:
      github.com/mkjelland/spring-boot-postgres-on-k8s-sample

  • @Dxeus
    @Dxeus 5 ปีที่แล้ว

    Working at Google and don't know how to use secrets in Kubernates? Writing plain text "username" and "password" into a YAML file set a very bad example for a new learner.

    • @thusithaniroshan
      @thusithaniroshan 4 ปีที่แล้ว +6

      disagree. in a beginner tutorial it's okay to write PW as long as it's a default password so beginners know where this is being used. as an engineer, you don't have to know it all. probably she works in different projects.