RocketChat / helm-charts

Repository for RocketChat helm charts
36 stars 67 forks source link

Change tls parameter default empty value from {} to [] in values.yaml #115

Closed acostaedg closed 1 year ago

acostaedg commented 1 year ago

The default empty value for tls parameter in values.yaml file is an empty object {} and should be a empty list []:

This PR will change in the values.yaml file:

...
  tls: {}
...

for this:

...
  tls: []
...