
Kestra Plugin List
CertifiedList namespaces with paging
Kestra Plugin List
List namespaces with paging
Retrieves namespaces filtered by prefix with optional pagination. When page is null, iterates all pages. Defaults: size 10, existingOnly false.
type: io.kestra.plugin.kestra.namespaces.ListExamples
List all namespaces with pagination
id: list_paginated_namespaces
namespace: company.team
tasks:
- id: list_namespaces_paged
type: io.kestra.plugin.kestra.namespaces.List
kestraUrl: http://localhost:8080
auth:
username: admin@kestra.io # pass your Kestra username as secret or KV pair
password: "{{ secret('KESTRA_PASSWORD') }}" # pass your Kestra password as secret or KV pair
page: 1
size: 20
List only existing namespaces starting with 'dev.'
id: list_filtered_namespaces
namespace: company.team
tasks:
- id: list_dev_namespaces
type: io.kestra.plugin.kestra.namespaces.List
kestraUrl: https://cloud.kestra.io
auth:
username: admin@kestra.io # pass your Kestra username as secret or KV pair
password: "{{ secret('KESTRA_PASSWORD') }}" # pass your Kestra password as secret or KV pair
tenantId: mytenant
prefix: dev.
existingOnly: true
List all namespaces without pagination (fetch all pages)
id: list_all_namespaces
namespace: company.team
tasks:
- id: fetch_all_namespaces
type: io.kestra.plugin.kestra.namespaces.List
kestraUrl: http://localhost:8080
auth:
username: admin@kestra.io # pass your Kestra username as secret or KV pair
password: "{{ secret('KESTRA_PASSWORD') }}" # pass your Kestra password as secret or KV pair
# No 'page' or 'size' properties to fetch all
Properties
auth Non-dynamic
Select API authentication
Use either an API token or HTTP Basic (username/password); do not provide both.
io.kestra.plugin.kestra.AbstractKestraTask-Auth
API token for bearer auth
trueAutomatically retrieve credentials from Kestra's configuration if available
The default configuration can be configured globally inside the Kestra configuration file:
- Set
kestra.tasks.sdk.authentication.api-tokento use an API token - Set
kestra.tasks.sdk.authentication.usernameandkestra.tasks.sdk.authentication.passwordfor HTTP basic authentication - Set
kestra.tasks.sdk.authentication.urlto also default the Kestra API endpoint (seekestraUrlabove) The Enterprise edition also provides setting a default configuration at the Namespace or Tenant level by an administrator. Set to false to also opt out of the default URL.
Password for HTTP Basic auth
Username for HTTP Basic auth
existingOnly booleanstring
falseExisting namespaces only
Defaults to false. When true, returns namespaces backed by stored definition, excluding transient ones.
kestraUrl string
Override Kestra API endpoint
URL used for calls to the Kestra API. When null, falls back to the url configured alongside the default SDK authentication (Namespace or Tenant level, Enterprise edition), then renders {{ kestra.url }} from configuration; if still empty, defaults to http://localhost: 8080. Trailing slashes are stripped before use.
page integerstring
Page number
When null, fetches every page. Set with size to limit requests.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
prefix string
Namespace prefix
Defaults to empty string to return all namespaces.
size integerstring
10Page size
Defaults to 10.
tenantId string
Override target tenant
Tenant identifier applied to API calls; defaults to the current execution tenant.
Outputs
namespaces array
A list of Kestra namespaces