From e44210f17de85a59006487c702621e6a00d15871 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Thu, 4 Jul 2024 20:52:48 +0300 Subject: [PATCH] Escape `$` to make it work --- install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.yaml b/install.yaml index 415b929..ad16a95 100644 --- a/install.yaml +++ b/install.yaml @@ -29,7 +29,7 @@ post_install_actions: {{ $project_tld := "ddev.site" }} {{ if .DdevGlobalConfig.project_tld }}{{ $project_tld = .DdevGlobalConfig.project_tld }}{{ end }} {{ if .DdevProjectConfig.project_tld }}{{ $project_tld = .DdevProjectConfig.project_tld }} {{ end }} - {{ $novarnish_hostnames := print "novarnish.$DDEV_HOSTNAME" }} + {{ $novarnish_hostnames := print "novarnish.\\$DDEV_HOSTNAME" }} {{ $sep := print "." $project_tld ",novarnish." }} {{ if .DdevProjectConfig.additional_hostnames }} {{ $novarnish_hostnames = print $novarnish_hostnames "," "novarnish." (.DdevProjectConfig.additional_hostnames | join $sep) "." $project_tld }}