-
Notifications
You must be signed in to change notification settings - Fork 84
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
fips: Modified the postStart lifecycle hook to reference to sha256 (PROJQUAY-8185) #1002
Conversation
Skipping CI for Draft Pull Request. |
echo 'Waiting for PostgreSQL to start...'; | ||
sleep 2; | ||
done; | ||
if [ \"\$(cat /proc/sys/crypto/fips_enabled)\" -eq 1 ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you may want to change this to something like if [[ -f /proc/sys/crypto/fips_enabled && $(< /proc/sys/crypto/fips_enabled) -eq 0 ]]; then
so it checks for the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My linter says this results in "invalid escape sequence", i'm also getting an error saying it can't inflate this file
/cherry-pick redhat-3.13 |
@bcaton85: new pull request created: #1003 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. |
Testing