From 9759a3983789f64fe3ac6a56ed671cdda467644d Mon Sep 17 00:00:00 2001 From: Nico Vaatstra Date: Wed, 13 Dec 2023 15:12:36 +0100 Subject: [PATCH] Minor docs change regarding supervisord in Kubernetes --- Docker-README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docker-README.md b/Docker-README.md index 84700e84e5..4e8c967a39 100644 --- a/Docker-README.md +++ b/Docker-README.md @@ -64,9 +64,9 @@ Note: Docker Engine 20.10.0 (released december 2020) removed the need to set the The auth image uses `tini` as init process to run auth via the startup.py wrapper. However, it also has `supervisord` available for special use cases. Example scenarios for using `supervisord` include: * Running multiple processes (ie: auth + ixfrdist) within the same container - Generally not advisable, but has benefits in some cases -* Allowing restarts of processes within a container without having the entire container restart - Primarily has benefits in Kubernetes where you could have a process (ixfrdist for example) restart when a mounted configmap containing the process' configuration is observed to be modified. +* Allowing restarts of processes within a container without having the entire container restart - Primarily has benefits in Kubernetes where you could have a process (ixfrdist for example) restart when a script/agent detects changes in a mounted configmap containing the process' configuration. -To use `supervisord` as within Kubernetes, you can configure the container with the following: +To use `supervisord` within Kubernetes, you can configure the container with the following: ```yaml command: ["supervisord"] -- 2.47.3