We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b27c6a1 commit fba5a82Copy full SHA for fba5a82
gke/cluster/gce/windows/k8s-node-setup.psm1
@@ -652,8 +652,10 @@ function Write_PkiData {
652
# This command writes out a PEM certificate file, analogous to "base64
653
# --decode" on Linux. See https://stackoverflow.com/a/51914136/1230197.
654
[IO.File]::WriteAllBytes($File, [Convert]::FromBase64String($Data))
655
- Log_Todo ("need to set permissions correctly on ${File}; not sure what the " +
656
- "Windows equivalent of 'umask 077' is")
+
+ # The permissions for ${File}; may need to be updated for Windows
657
+ # to match Linux's 'umask 077'.
658
+ #
659
# Linux: owned by root, rw by user only.
660
# -rw------- 1 root root 1.2K Oct 12 00:56 ca-certificates.crt
661
# -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
0 commit comments