getredash / contrib-helm-chart

Community maintained Redash Helm Chart
Apache License 2.0
163 stars 143 forks source link

fix(worker): fix imagePullSecrets templating #190

Open emaincourt opened 2 months ago

emaincourt commented 2 months ago

Hi,

imagePullSecrets templating goes wrong on master at the moment. Some spaces should not be removed.

Current behavior:

imagePullSecrets:
        - name: my-secret serviceAccountName: redash

Expected behavior, after fix:

imagePullSecrets:
        - name: my-secret
serviceAccountName: redash

Thanks in advance for reviewing.