From 1474477375761b3d18e221375201d23dd8a2ab79 Mon Sep 17 00:00:00 2001 From: Michael Fritch Date: Wed, 3 Mar 2021 13:00:32 -0700 Subject: [PATCH] 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 --- src/cephadm/samples/custom_container.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cephadm/samples/custom_container.json b/src/cephadm/samples/custom_container.json index d6e73c47463d8..194a44d2abbf1 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": { -- 2.39.5