Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
update to common logging pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
jsturtevant committed Oct 25, 2018
1 parent 7573121 commit 9bea82e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions parts/k8s/kuberneteswindowssetup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ try
if ($true) {
Write-Log "Provisioning $global:DockerServiceName... with IP $MasterIP"

Write-Log "apply telemetry data setting"
Write-Log "Apply telemetry data setting"
Set-TelemetrySetting -WindowsTelemetryGUID $global:WindowsTelemetryGUID

Write-Log "resize os drive if possible"
Write-Log "Resize os drive if possible"
Resize-OSDrive

Write-Log "install docker"
Write-Log "Install docker"
Install-Docker -DockerVersion $global:DockerVersion

Write-Log "Download kubelet binaries and unzip"
Expand All @@ -156,6 +156,7 @@ try
# this is a temporary work around to get the binaries until we depreciate
# custom package and nssm.exe as defined in #3851.
if ($global:WindowsKubeBinariesURL){
Write-Log "Overwriting kube node binaries from $global:WindowsKubeBinariesURL"
Get-KubeBinaries -KubeBinariesURL $global:WindowsKubeBinariesURL
}

Expand Down Expand Up @@ -215,7 +216,7 @@ try
Get-HnsPsm1 -HNSModule $global:HNSModule
}

Write-Log "write kubelet startfile with pod CIDR of $podCIDR"
Write-Log "Write kubelet startfile with pod CIDR of $podCIDR"
Install-KubernetesServices `
-KubeletConfigArgs $global:KubeletConfigArgs `
-KubeBinariesVersion $global:KubeBinariesVersion `
Expand Down

0 comments on commit 9bea82e

Please sign in to comment.