Enapter / charts

Enapter Helm Charts
MIT License
48 stars 49 forks source link

Add save "" support #30

Closed dyipon closed 3 years ago

dyipon commented 3 years ago

HI,

I would like to add a simple --save "" argument to the keydb-server to disable background saving, but configExtraArgs in values.yaml can't let me do that, because templating messing up the result.

Could you help me with the correct syntax please?

Antiarchitect commented 3 years ago

Please check 0.25.1. Now the empty string is properly quoted. So

configExtraArgs:
  save: ""

comes to --save ""

configExtraArgs:
  save: ~

comes to --save

dyipon commented 3 years ago

tried, but a ")" is missing:

Error: parse error at (keydb/templates/secret-utils.yaml:37): unclosed left paren

Antiarchitect commented 3 years ago

@dyipon Please see 0.25.2

dyipon commented 3 years ago

@Antiarchitect perfect, thanks for your time!