Git Product home page Git Product logo

Comments (2)

rissson avatar rissson commented on September 27, 2024 2

We'll try to go back to a non-vendorized version of the chart with 2024.1

from helm.

p4block avatar p4block commented on September 27, 2024

Nice to hear! In the meantime I simply disabled the builtin chart and added the upstream chart. The name of the deployed service even matches so there's no configuration needed.
Because of how I deploy apps this is pretty straightforward ("dummy" helmcharts that depend on 1 or more helmcharts, and with the ability to inject some yaml)

Here for reference if anyone wants to do it like I did.

Chart.yaml

apiVersion: v2
name: authentik
version: 1.0.0
dependencies:
- name: authentik
  version: 2023.10.3
  repository: https://charts.goauthentik.io
- name: postgresql # de-vendorize postgres
  version: 13.2.14
  repository: https://charts.bitnami.com/bitnami

Values.yaml

authentik:

  postgresql:
    enabled: false

  redis:
    enabled: true
    architecture: standalone

  ingress:
    # Specify kubernetes ingress controller class name
    ingressClassName: traefik
    enabled: true
    hosts:
    # Specify external host name
    - host: authentik.bla.bla
      paths:
      - path: "/"
        pathType: Prefix


postgresql:
  global:
    postgresql:
      auth:
        username: authentik
        database: authentik

  primary:
    persistence:
      existingClaim: "authentik-postgres-16-pvc"

Another values file with the secret keys is merged by Argo, and the pvc+pv yaml exist in the templates folder.

from helm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.