]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Minor docs change regarding supervisord in Kubernetes
authorNico Vaatstra <nico.vaatstra@open-xchange.com>
Wed, 13 Dec 2023 14:12:36 +0000 (15:12 +0100)
committerPeter van Dijk <peter.van.dijk@powerdns.com>
Thu, 14 Dec 2023 11:54:47 +0000 (12:54 +0100)
(cherry picked from commit 9759a3983789f64fe3ac6a56ed671cdda467644d)

Docker-README.md

index 847dda80de97d622282cc6e4dacc1ae14b3b0ef1..44202524aeddee416ab479db8d5fb8eaaa767814 100644 (file)
@@ -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"]