Summary: | Support for RunAsGroup as a pod security context | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Jason Kincl <kincljc> |
Component: | Containers | Assignee: | Urvashi Mohnani <umohnani> |
Status: | CLOSED ERRATA | QA Contact: | weiwei jiang <wjiang> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 4.1.0 | CC: | aos-bugs, dwalsh, jokerman, mmccomas, mpatel, sponnaga |
Target Milestone: | --- | Flags: | wjiang:
needinfo?
(mpatel) |
Target Release: | 4.1.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2019-06-04 10:40:34 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: |
Description
Jason Kincl
2018-09-04 17:15:03 UTC
Mrunal are you working on this or do you want to designate Urvashi? This is available in CRI-O 1.13. However the second part would be enabling the feature gate in kubelet for this. Need wait rhcos with cri-o 1.13 package to verify. Currently latest cri-o version is 1.12.6-1. Checked with 4.1.0-0.nightly-2019-05-05-070156 with 1.13.9-1.rhaos4.1.gitd70609a.el8 and RunAsGroup work well # echo 'apiVersion: v1 kind: Pod metadata: generateName: sc- spec: containers: - name: csc image: openshift/hello-openshift securityContext: {runAsGroup: 4321} - name: psc image: nginx securityContext: {runAsGroup: 1234} '| oc create -f - sh-4.4# runc list |grep -E "4d5eb61a1a28a|d8283a874eb51" 4d5eb61a1a28a55ecd4c3c941d2aad6504da2b1cb3740db6d4e54ed59908e40a 53428 running /run/containers/storage/overlay-containers/4d5eb61a1a28a55ecd4c3c941d2aad6504da2b1cb3740db6d4e54ed59908e40a/userdata 2019-05-07T09:28:32.43542341Z root d8283a874eb516438ea9b5cd919ccb5f5c4b5d7d30d49f1e1bd97af66d70b95c 53344 running /run/containers/storage/overlay-containers/d8283a874eb516438ea9b5cd919ccb5f5c4b5d7d30d49f1e1bd97af66d70b95c/userdata 2019-05-07T09:28:29.136396508Z root sh-4.4# cat /run/containers/storage/overlay-containers/4d5eb61a1a28a55ecd4c3c941d2aad6504da2b1cb3740db6d4e54ed59908e40a/userdata/config.json |head { "ociVersion": "1.0.0", "process": { "user": { "uid": 0, "gid": 1234 }, "args": [ "nginx", "-g", sh-4.4# cat /run/containers/storage/overlay-containers/d8283a874eb516438ea9b5cd919ccb5f5c4b5d7d30d49f1e1bd97af66d70b95c/userdata/config.json | json_ json_reformat json_verify sh-4.4# cat /run/containers/storage/overlay-containers/d8283a874eb516438ea9b5cd919ccb5f5c4b5d7d30d49f1e1bd97af66d70b95c/userdata/config.json | head { "ociVersion": "1.0.0", "process": { "user": { "uid": 1001, "gid": 4321 }, "args": [ "/hello-openshift" ], Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:0758 |