-
Notifications
You must be signed in to change notification settings - Fork 216
NO-ISSUE: okd: Add read permission to /etc/shadow #4494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NO-ISSUE: okd: Add read permission to /etc/shadow #4494
Conversation
During the github runner on arm64, found out that running configure-vm script fails with following error. After debugging it in the runner looks like in the container after creating the `microshift` user the `/etc/shadow` file permission is not updated. This is only happening with github ubuntu-arm runner. This PR fixes it. ``` STEP 15/16: RUN echo '{"auths":{"fake":{"auth":"aWQ6cGFzcwo="}}}' > /tmp/.pull-secret && /src/scripts/devenv-builder/configure-vm.sh --no-build --no-set-release-version --skip-dnf-update /tmp/.pull-secret && /src/okd/sr c/use_okd_assets.sh --replace ${OKD_REPO} ${OKD_VERSION_TAG} sudo: PAM account management error: Authentication service cannot retrieve authentication info ```
@praveenkumar: This pull request explicitly references no jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
Skipping CI for Draft Pull Request. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pmtk, praveenkumar The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@praveenkumar: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
/cherry-pick release-4.18 |
@praveenkumar: new pull request created: #4727 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
During the github runner on arm64, found out that running configure-vm script fails with following error. After debugging it in the runner looks like in the container after creating the
microshift
user the/etc/shadow
file permission is not updated. This is only happening with github ubuntu-arm runner. This PR fixes it.