Skip to content

Commit

Permalink
Change PowerShell example to use the -Raw flag (kubernetes#17645)
Browse files Browse the repository at this point in the history
  • Loading branch information
lojies authored and zacharysarah committed Dec 5, 2019
1 parent 9970207 commit 013ea79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Patch your Deployment:
kubectl patch deployment patch-demo --patch "$(cat patch-file.yaml)"
{{< /tab >}}
{{< tab name="PowerShell" codelang="posh" >}}
kubectl patch deployment patch-demo --patch $(cat patch-file.yaml)
kubectl patch deployment patch-demo --patch $(Get-Content patch-file.yaml -Raw)
{{< /tab >}}}
{{< /tabs >}}
Expand Down

0 comments on commit 013ea79

Please sign in to comment.