GetKeys GetKeys

yaml
type: "io.kestra.plugin.core.kv.GetKeys"

Gets keys matching a given prefix.

Examples

Get keys that are prefixed by myvar.

yaml
id: keys_kv
type: io.kestra.plugin.core.kv.GetKeys
prefix: myvar
namespace: dev # the current namespace of the flow will be used by default

Properties

namespace

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️
  • Default: {{ flow.namespace }}

The namespace on which to get the value.

prefix

  • Type: string
  • Dynamic: ✔️
  • Required:

The key for which to get the value.

Outputs

keys

  • Type: array
  • SubType: string
  • Dynamic:
  • Required:

Found keys for given prefix.

Definitions

Was this page helpful?