pipeline icon indicating copy to clipboard operation
pipeline copied to clipboard

Support for variable interpolation in workspace.configmap.items * (in PipelineRun and TaskRun)

Open piyush-garg opened this issue 1 year ago • 1 comments

This is follow up issue of https://github.com/tektoncd/pipeline/issues/6384

Currently, we do support workspace provided as

    - name: custom4
      configMap:
        name: $(params.name)-configmap
        items:
          - key: message
            path: my-message.txt 

but we do not support workspace provided as

    - name: custom4
      configMap:
        name: $(params.name)-configmap
        items:
          - key: message
            path: $(params.name)-message.txt 

This is to add the support for param replacement at items level in workspace

piyush-garg avatar Feb 14 '24 09:02 piyush-garg

/assign l-qing

l-qing avatar Feb 15 '24 04:02 l-qing