Conversation
in import-additional-cas script.
restore-all-dir-contents && import-additional-cas flow. Without this I have seen that the permission fixing didn't work reliably for restarting pods: sh-5.1$ restore-all-dir-contents sh-5.1$ restore-all-dir-contents sh-5.1$ import-additional-cas No certificates found in /usr/local/share/ca-certificates '/etc/pki/injected-ca-trust/tls-ca-bundle.pem' -> '/etc/pki/ca-trust/source/anchors/tls-ca-bundle.pem' sh-5.1$ restore-all-dir-contents cp: cannot create regular file '/etc/pki/ca-trust/extracted/pem/directory-hash/GlobalSign_ECC_Root_CA_-_R4.pem': Permission denied cp: cannot create regular file '/etc/pki/ca-trust/extracted/pem/directory-hash/GlobalSign_ECC_Root_CA_-_R5.pem': Permission denied cp: cannot create regular file '/etc/pki/ca-trust/extracted/pem/directory-hash/GlobalSign_Root_CA_-_R3.pem': Permission denied cp: cannot create regular file '/etc/pki/ca-trust/extracted/pem/directory-hash/GlobalSign_Root_CA_-_R6.pem': Permission denied cp: cannot create regular file '/etc/pki/ca-trust/extracted/pem/directory-hash/certSIGN_Root_CA_G2.pem': Permission denied sh-5.1$
There was a problem hiding this comment.
Sorry @mclasmeier, your pull request is larger than the review limit of 150000 diff characters
|
/konflux-retest main-on-push |
|
Images are ready for the commit at f3548a1. To use with deploy scripts, first |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #19437 +/- ##
=======================================
Coverage 49.73% 49.73%
=======================================
Files 2703 2703
Lines 204040 204040
=======================================
+ Hits 101478 101489 +11
+ Misses 94985 94977 -8
+ Partials 7577 7574 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
/konflux-retest scanner-v4-on-push |
|
/konflux-retest main-on-push |
|
/konflux-retest operator-bundle-on-push |
2 similar comments
|
/konflux-retest operator-bundle-on-push |
|
/konflux-retest operator-bundle-on-push |
|
/konflux-retest central-db-on-push |
|
/retest operator-bundle-on-push |
|
@mclasmeier: The The following commands are available to trigger optional jobs: Use DetailsIn 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. |
| # configured correctly in the first place. Also, this kind of gets around the | ||
| # problem where you're trying to test something locally but forget to add a | ||
| # tmpfs mount to the appropriate mount points. | ||
| cp --recursive --no-dereference --no-clobber /.init-dirs/* / |
There was a problem hiding this comment.
--no-clobberseems to be deprecated in favour of--update=none- Can't we fix the permissions and use
--forceinstead?
There was a problem hiding this comment.
FYI, I am currently exploring some other ways of addressing this.
There was a problem hiding this comment.
[root@1815735dd284 /]# cp --update=none /bin/ls /tmp
cp: option '--update' doesn't allow an argument
Try 'cp --help' for more information.
[root@1815735dd284 /]# cp --version
cp (GNU coreutils) 8.32
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
[root@1815735dd284 /]#
This is from UBI9 minimal.
Description
This PR switches all base images in the stackrox repo to UBI9. A couple of smaller changes had to be done to account for technical differences between UBI8 and UBI9.
All other changes are required for green CI.
See commit history.
User-facing documentation
Testing and quality
Automated testing
How I validated my change
change me!