Good night, everyone! Is there any configuration ...
# deployment-kubernetes
i
Good night, everyone! Is there any configuration I can use to delete these "PODs" after the execution? (elegant_feyman and jovial_swanson) They are created by the DockerRunLauncher
j
Hi Ismael, you can set
Copy code
run_launcher:
  module: dagster_docker
  class: DockerRunLauncher
  config:
    ...
    container_kwargs:
      auto_remove: true
auto_remove
will get passed to the
container.create
method of the Docker python client https://docker-py.readthedocs.io/en/stable/containers.html#docker.models.containers.ContainerCollection.run
i
Thanks!!