From bacf7394cd6ce4a4c83ed9f24f68463a90f9015a Mon Sep 17 00:00:00 2001 From: Peter Hornyack Date: Wed, 3 Mar 2021 12:40:53 -0800 Subject: [PATCH] Repair quotes for some Windows log messages --- cluster/gce/windows/k8s-node-setup.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/windows/k8s-node-setup.psm1 b/cluster/gce/windows/k8s-node-setup.psm1 index 2183db515b7..318b885add5 100644 --- a/cluster/gce/windows/k8s-node-setup.psm1 +++ b/cluster/gce/windows/k8s-node-setup.psm1 @@ -1754,12 +1754,12 @@ function DownloadAndInstall-LoggingAgents { function Create-LoggingAgentServices { cd $LOGGINGAGENT_ROOT - Log-Output 'Creating service: ${LOGGINGAGENT_SERVICE}' + Log-Output "Creating service: ${LOGGINGAGENT_SERVICE}" sc.exe create $LOGGINGAGENT_SERVICE binpath= "${LOGGINGAGENT_ROOT}\bin\fluent-bit.exe -c \fluent-bit\conf\fluent-bit.conf" sc.exe failure $LOGGINGAGENT_SERVICE reset= 30 actions= restart/5000 sc.exe query $LOGGINGAGENT_SERVICE - Log-Output 'Creating service: ${LOGGINGEXPORTER_SERVICE}' + Log-Output "Creating service: ${LOGGINGEXPORTER_SERVICE}" sc.exe create $LOGGINGEXPORTER_SERVICE binpath= "${LOGGINGEXPORTER_ROOT}\flb-exporter.exe --kubernetes-separator=_ --stackdriver-resource-model=k8s --enable-pod-label-discovery --logtostderr --winsvc --pod-label-dot-replacement=_" sc.exe failure $LOGGINGEXPORTER_SERVICE reset= 30 actions= restart/5000 sc.exe query $LOGGINGEXPORTER_SERVICE