Deploy Containers on Kubernetes (Docker Beginner to Pro - BONUS VIDEO)

Поділитися
Вставка
  • Опубліковано 18 кві 2024
  • Deploying the sample application from DevOps Directive's "Docker Beginner to Pro" course to a Kubernetes cluster running on Civo Cloud.
    Check out the full course at: courses.devopsdirective.com/d...
    Configurations can be found here: github.com/sidpalas/devops-di...
    This video used to only be available via purchase (sidpalas.gumroad.com/l/uwhjr), but now it is freely available!
  • Наука та технологія

КОМЕНТАРІ • 11

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

    Thanks Sid for such a thorough + clear walkthrough!

  • @anandhukraju9382
    @anandhukraju9382 11 місяців тому

    This is a gem!

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

    You should do a video on minikube

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

    Would be nice to see some sort of a content where different namespaces represent different environments and users with rbac implemented 🤔
    Often I do end up doubting what size my cluster should be further the pods and how my image size effects this thought process as well🤔

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

      I usually separate environments at the cluster boundary. Namespaces just don’t provide the level of isolation I want between environments and a mistake in one environment can cause issues in another

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

      @@DevOpsDirective Fair. got it thanks :))

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

    Plz make a course on k8s also ❤

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

    let me know sir, frontend pod how to connect backend service without using config backend service name, I think you are using react nginx config localhost. traefik can handle same dns name with different paths?

    • @DevOpsDirective
      @DevOpsDirective  6 днів тому

      In this case, the frontend pod only serves the html/css/javascript to the browser.
      The browser then makes requests to the /api/golang and /api/node endpoints (via public DNS) and the ingress controller routes to the correct pod.
      > Traefik can handle same dns name with different paths?
      Yes! Any ingress controller should be able to do this. One thing that may differ is handling things like stripping the path prefix so that it isn’t included in the request to the backend pods