Git Product home page Git Product logo

charts's People

Contributors

200sc avatar alexstojda avatar dbinger avatar get2brad avatar skeggse avatar tuannvm avatar turner-strongdm avatar wmmarco avatar wobo-mattmencel avatar wrenhunter avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

charts's Issues

FEATURE REQUEST: Support for using the sdm-relay chart as a subchart (naming of resources & global values)

Hello StrongDM team,

I'd be useful when using your chart as a sub-chart to be able to override the name of resources instead of using directly {{ .Release.Name }} for naming the resources like most community charts support.

Also, why are many values set under global? This is something you normally use when you want to share values with subcharts however here they are consumed locally by the charts themselves :
https://helm.sh/docs/chart_template_guide/subcharts_and_globals/

A last thing I noted while using this chart, it'd be great if we had the possibility to pass a user defined secret for the token.

Not rendering extra environment variables correctly (relay template)

Given a values file like:

global:
  ...
  extraEnvironmentVars:
    - name: ABC_EFG
      value: "hello"

The template renders:

        env:        
        - name: "%!S(INT=0)"
          value: "map[name:ABC_EFG value:hello]"

Making the following change appears to correct:

remove:
        {{- include "sdm.extraEnvironmentVars" .Values.global | indent 8 }}
add:
        {{- range .Values.global.extraEnvironmentVars }}
        - name: {{ .name }}
          value: {{ .value | quote }}
        {{- end }}

Opened on @wcraigjones behalf

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.