Blocker flag did not get copied over on the cherry-pick
I will open the PR to update the WMCO kubelet submodule once https://github.com/openshift/kubernetes/pull/815 merges
This bug has been verified on OCP 4.8.0-0.nightly-2021-06-23-201305 and passed, thanks. Version-Release number of selected component (if applicable): WMCO commit: 2043f8e518dd2f73498bde9f044ecda97f2f853e OCP build: 4.8.0-0.nightly-2021-06-23-201305 Steps: 1, Build WMCO from master branch and install the operator on OCP 4.8 2, Bootstrap Windows node 3, Create the Secrets for Projected Volume oc new-project winc-test echo -n "admin" > ./username.txt echo -n "1f2d1e2e67df" > ./password.txt oc create secret generic user --from-file=./username.txt oc create secret generic pass --from-file=./password.txt 4, Create Windows Pod with Projected Volume e.g. oc create -f https://raw.githubusercontent.com/sgaoshang/winc-test/master/data/WinWebServer_Projected_Volume.yaml 5, Check creating Windows pod with a Projected Volume succeed and the projected-volume directory contains your projected sources $ oc get pod -owide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES win-webserver-66bbf764c5-rl9vb 1/1 Running 0 16m 10.132.0.2 winworker-h2wdm <none> <none> $ oc exec -it win-webserver-66bbf764c5-rl9vb powershell kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead. Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. Try the new cross-platform PowerShell https://aka.ms/pscore6 PS C:\> ls .\projected-volume\ Directory: C:\projected-volume Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 6/25/2021 2:00 AM ..2021_06_25_06_00_02.8261305 19 d----l 6/25/2021 2:00 AM ..data -a---l 6/25/2021 2:00 AM 0 password.txt -a---l 6/25/2021 2:00 AM 0 username.txt PS C:\> cat .\projected-volume\username.txt admin PS C:\> cat .\projected-volume\password.txt 1f2d1e2e67df