galaxy-helm icon indicating copy to clipboard operation
galaxy-helm copied to clipboard

tusd deployment does not manage extra volume as other deployment

Open NilsKrattinger opened this issue 1 year ago • 1 comments

Hi, It looks like tusd deployment doesn't handle extra-volume through tpl function. This make extra-volume name extrapolation harder.

This is probaly related to tusd extra volume missing tpl call.

Logs

Values:

  extraVolumes:
      - name: master-data
        persistentVolumeClaim:
           claimName: '{{ template "galaxy.fullname" $ }}-master-data-pvc'

tusd-deployment helm template export :

  - name: master-data
    persistentVolumeClaim:
      claimName: '{{ template "galaxy.fullname" $ }}-master-data-pvc'

web (or other) helm template export:

 - name: master-data
    persistentVolumeClaim:
      claimName: dev01-galaxy-master-data-pvc

NilsKrattinger avatar Sep 16 '24 15:09 NilsKrattinger

I've made a simple correction by adding tpl function but it hasn't been tested yet.

NilsKrattinger avatar Sep 16 '24 15:09 NilsKrattinger