mirror of https://git.rancher.io/charts
4 lines
131 B
PowerShell
4 lines
131 B
PowerShell
|
$ErrorActionPreference = 'Stop'
|
||
|
|
||
|
# Sleep forever, since a DaemonSet's restartPolicy must be Always
|
||
|
while(1) { Start-Sleep -s 3600 }
|