From: Michael Fritch Date: Wed, 3 Mar 2021 20:00:32 +0000 (-0700) Subject: cephadm: split custom container args into argv X-Git-Tag: v17.1.0~2748^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F39822%2Fhead;p=ceph.git cephadm: split custom container args into argv introduced by usage of `shlex` in 3ea514c5 Fixes: https://tracker.ceph.com/issues/49590 Signed-off-by: Michael Fritch --- diff --git a/src/cephadm/samples/custom_container.json b/src/cephadm/samples/custom_container.json index d6e73c47463d..194a44d2abbf 100644 --- a/src/cephadm/samples/custom_container.json +++ b/src/cephadm/samples/custom_container.json @@ -2,8 +2,8 @@ "image": "docker.io/prom/alertmanager:v0.20.0", "ports": [9093, 9094], "args": [ - "-p 9093:9093", - "-p 9094:9094" + "-p", "9093:9093", + "-p", "9094:9094" ], "dirs": ["etc/alertmanager"], "files": {