Properly pass traefik command options

Traefik command options need to be passed as `--key=value`, not `--key value`.
This commit is contained in:
Tobias Bühlmann
2023-03-14 15:04:33 +01:00
parent b668ce3f25
commit 3ca5bc50b6
3 changed files with 12 additions and 6 deletions

View File

@@ -56,7 +56,7 @@ class Mrsk::Commands::Traefik < Mrsk::Commands::Base
private
def cmd_option_args
if args = config.traefik["args"]
optionize args
optionize args, with: "="
else
[]
end