Update git submodules
authorKrzysztof Opasiak <k.opasiak@samsung.com>
Wed, 1 Apr 2020 09:59:44 +0000 (09:59 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 1 Apr 2020 09:59:44 +0000 (09:59 +0000)
commit3c26b5b7f98f38bd48913b7c36f9cfe76f0feae3
treec1f4d288469c218cceecfe7a013d736afab29a4a
parent64ac1d37f13f71dbb78940d8eb9b0130a30431a8
Update git submodules

* Update docs/submodules/oom.git from branch 'master'
  to bf1af5c0a0caad1830bd2f56dded7d8d7fe35b3e
  - Merge "[COMMON] Allow to include filePaths as a reference to variable"
  - [COMMON] Allow to include filePaths as a reference to variable

    filePaths comes as a list and we didn't "fully support" passing this
    variable as a reference to other variable like we do in all other
    cases.

    Let's fix that and allow both constructs:

    secrets:
      - name: construct 1
        type: generic
        filePaths:
          - file1
          - file2
      - name: construct 2
        type: generic
        filePaths: '{{ .Values.fpaths }}'

    fpaths: |
      - file1
      - file2
      - '{{ include "templateThatGeneratesFileName" . }}

    Please note the | after : in fpaths. It means that from yaml point of
    view this is is a string. We need to do it this way because we pass
    this to tpl function and then we need to collect a proper list from it.

    Issue-ID: SO-2730
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
    Change-Id: I5a6b475366bfea4cd0995a7e530bf88cb8ad639e
docs/submodules/oom.git