Authentik - Installation - Docker (Compose) | Kubernetes (Helm)

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

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

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

    another great video!
    if I may, couple of comments:
    * minikube _could_ be run in a multi-node configuration. You would simply do: "minikube start -n "
    * when you were adding your labels, it is best to deploy authentik with the label already baked in. Just update your 'values.yaml' file by adding something under "deployment.labels" section.. Unfortunately, I do not know how to share links in comments (my comments with links always get deleted), otherwise I would link you straight to the field to be updated from their helm chart repository

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

      Thanks! And good to know! That sucks you can't share the link, that would definitely be helpful. Maybe space it out or truncate the http part so it won't be read as a link. Could help others.

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

      @@cooptonian yeah... even spaced out, it doesn't work 😠

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

      bummer, just checked to make sure it wasn't something on my end...I guess TH-cam blocks links in comments. I read up that sometimes these are held for review for the creator...but I see nothing in my held for review section.

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

      wow... youtube really hates me... i just wrote up how to get to the helm chart and message got deleted again 😂
      is there a way i can contact you via youtube somehow to give you those links?

    • @cooptonian
      @cooptonian  ปีที่แล้ว +1

      Thanks for the info!

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

    Great tutorial, especially kubernetes part. What would be great is to add section how to add SSL cert. Been struggling with that and finally gave up using IP address to access Authentic

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

    Excellent video. Thank you for all these tutorials! Authentik is a beast of a service and every little bit helps. I was wondering if you have any videos, or plans to make a video, on setting authentik up to use with more than one domain? I have about 4 i would like to use but dont see a way to do this. All of my efforts have failed miserably so far.

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

    I love the video. Can someone please offer me some tips? I have my authentik sitting behind Nginx Proxy Manager. I've seen the authentik post about having to update the location values and I've done so and restarted the container. However, it does not work apparently as my outpost still claims that it cannot connect. I see that the authentik host is blank. Not sure what else to check for this CSRF issue. I've looked through the internet and have seen the issue reported but not any reproducible fixes. I can onlly imagine I'm reading the directions wrong for the extra step in installation from the authentik documentation

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

    Just found your channel, searching for a way to integrate Duo Push to my authentication flow in authentik. Going to watch that video again now, and try to set it up. Thanks for the content :)

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

      You're welcome! For that video regarding DUO, note my pinned comment as the steps with API browser are no longer needed. And it's been awhile so there may be even more changes...but hopefully the video gets you through most, if not all, of it.

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

      @@cooptonian I'll report back if I stumble upon any changes that breaks the demonstration. Thanks!

  • @Phonkd-rp6po
    @Phonkd-rp6po ปีที่แล้ว

    If I were to label my pod, the pod would be overwritten by argocd.
    So i would need to lable the pod via helm chart but see no such option. Any idea?

    • @Phonkd-rp6po
      @Phonkd-rp6po ปีที่แล้ว

      I figured it out, i can just add labels via argo pod under manifest

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

    This setup assumes no docker knowledge and prevents integrating with setups that are already using docker. Quick rule of thumb; don't use a script to pull a docker compose file. It's much more difficult to understand what's happening and how I can modify it for my system.
    I like to separate my containers into stacks in portainer based on their general function, so I would like to have the postgresql and redis containers in a separate stack. Because the environment points to the container name, I am unable to deploy the server and client.
    As a side note, naming the containers 'server' and 'client' makes it difficult to understand what these containers do if I have many containers. I have the general knowledge to make that change before running the stack, however if these are the first 2 containers I'm creating in my system then I'm going to find myself questioning what they are 2-3 months down the line after adding more services.

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

      The fix for this is to use external networks.
      ```
      networks:
      someOtherStack_default:
      external: true
      services:
      server:
      . . .
      networks:
      - someOtherStack_default
      . . .
      ```