This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch 6.0.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit b463cc2c4c728deec86045ff65d3c3dca2a1305d Author: Zach Hoffman <[email protected]> AuthorDate: Mon Oct 11 17:24:26 2021 +0000 Quote spaces in env file values (#6265) (cherry picked from commit 6ee04dd692a26acbb27aa4d39c17993e14aadd52) --- infrastructure/cdn-in-a-box/variables.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/cdn-in-a-box/variables.env b/infrastructure/cdn-in-a-box/variables.env index eda91da..fb65bbc 100644 --- a/infrastructure/cdn-in-a-box/variables.env +++ b/infrastructure/cdn-in-a-box/variables.env @@ -21,7 +21,7 @@ TLD_DOMAIN=ciab.test INFRA_SUBDOMAIN=infra CDN_NAME=CDN-in-a-Box CDN_SUBDOMAIN=mycdn -DS_HOSTS=demo1 demo2 demo3 +DS_HOSTS='demo1 demo2 demo3' FEDERATION_CNAME=foo.kabletown.net. X509_CA_NAME=CIAB-CA X509_CA_COUNTRY=US @@ -80,7 +80,7 @@ TM_LOG_INFO=stdout TM_LOG_DEBUG=stdout TO_ADMIN_PASSWORD=twelve12 TO_ADMIN_USER=admin -TO_ADMIN_FULL_NAME=James Cole +TO_ADMIN_FULL_NAME='James Cole' # Set ENROLLER_DEBUG_ENABLE to true`to debug the enroller with Delve ENROLLER_DEBUG_ENABLE=false # To debug a t3c component with Delve in the `edge` container, set T3C_DEBUG_COMPONENT_EDGE to t3c-apply, t3c-check, t3c-check-refs, t3c-check-reload, t3c-diff, t3c-generate, t3c-request, or t3c-update
