Worker Isolation
Available on: Enterprise Edition
How to configure worker isolation in Kestra.
Java security
By default, Kestra uses a shared worker to handle workloads. This is fine for most use cases. However, when you are using a shared Kestra instance between multiple teams, this can allow people to access temporary files created by Kestra with powerful tasks like Groovy, Jython, etc... This is because the worker shares the same file system.
You can use the following to opt-in to real isolation of file systems using advanced Kestra EE Java security:
kestra:
ee:
java-security:
enabled: true
forbidden-paths:
- /etc/
authorized-class-prefix:
- io.kestra.plugin.core
- io.kestra.plugin.gcp
kestra.ee.java-security.forbidden-paths
This is a list of paths on the file system that the Kestra Worker will be forbidden to read or write to. This can be useful to protect Kestra configuration files, for example.
kestra.ee.java-security.authorized-class-prefix
This is a list of classes that can create threads. Here you can set a list of prefixes (namespace) classes that will be allowed. All others will be refused.
For example, GCP plugins will need to create a thread in order to reach the GCP API. Since this whole plugin is deemed safe, you can whitelist it.
kestra.ee.java-security.forbidden-class-prefix
kestra:
ee:
java-security:
enabled: true
forbidden-class-prefix:
- io.kestra.plugin.scripts
This is a list of classes that can't create any threads. Others plugins will be authorized.
Currently, all the official Kestra plugins are safe to be whitelisted except all scripts plugins since they allow custom code to be created that can be read and written on the file system. Do not add these to the forbidden-class-prefix
.
Scripting isolation
For Bash tasks and other script tasks in the core, we advise you to force io.kestra.plugin.scripts.runner.docker.Docker
isolation and to configure global cluster pluginDefaults
:
kestra:
tasks:
defaults:
- type: io.kestra.plugin.scripts.shell.Commands
forced: true
values:
containerImage: ubuntu:latest
taskRunner:
type: io.kestra.plugin.scripts.runner.docker.Docker
You will need to add all script plugins tasks (like Python & Node) to be sure that no tasks can bypass the docker isolation.
Was this page helpful?