UNCLASSIFIED - NO CUI

Skip to content

#5 Allow tags to be passed as array in values.yaml

Masaya Ando requested to merge yaml-list into development

Pass tag as array in values.yaml and join them into a comma-separated string before passing it to env

The following yaml

    targetTags:
      - targetFoo
    excludeTags:
      - excludeFoo
      - excludeBar
    builtinTags:
      - builtin

will be passed to the environment as

APPGATE_OPERATOR_BUILTIN_TAGS=builtin
APPGATE_OPERATOR_TARGET_TAGS=targetFoo
APPGATE_OPERATOR_EXCLUDE_TAGS=excludeFoo,excludeBar
Edited by Masaya Ando

Merge request reports