-
Bug
-
Resolution: Unresolved
-
Undefined
-
4.20.z, 4.21.z, 4.22
-
None
Description of problem:
The nested-container SCC has an incorrect specification of UID ranges, which is why they are completely missing on clusters. What it currently is on OCP 4.20+: runAsUser: type: MustRunAsRange ranges: - min: 0 max: 65534 What it should be: runAsUser: type: MustRunAsRange uidRangeMin: 0 uidRangeMax: 65534
Version-Release number of selected component (if applicable):
How reproducible:
Always
Steps to Reproduce:
1. oc get scc nested-container -o yaml [...] runAsUser: type: MustRunAsRange seLinuxContext: seLinuxOptions: [...]
Actual results:
[...] runAsUser: type: MustRunAsRange seLinuxContext: seLinuxOptions: [...]
Expected results:
[...] runAsUser: type: MustRunAsRange uidRangeMin: 0 uidRangeMax: 65534 seLinuxContext: seLinuxOptions: [...]
Additional info: