-
Notifications
You must be signed in to change notification settings - Fork 71
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
Fix auditor #187
Fix auditor #187
Conversation
We could log something more specific, but for now just log the entire gcrPayload.
If the UUID hasn't been provided on in the environment, generate one automatically.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: listx 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 |
After this merges, I have to (1) promote the |
/cc @thockin |
@@ -392,7 +392,7 @@ func (s *ServerContext) Audit(w http.ResponseWriter, r *http.Request) { | |||
// If we can't find the source registry for this image, then reject the | |||
// transaction. | |||
if string(srcRegistry.Name) == "" { | |||
msg := fmt.Sprintf("(%s) TRANSACTION REJECTED: could not determine source registry: %v", s.ID) | |||
msg := fmt.Sprintf("(%s) TRANSACTION REJECTED: could not determine source registry: %v", s.ID, gcrPayload) |
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.
Is there any chance of over-logging with gcrPayload? Sharing something that shouldn't be in the log?
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.
No, the GCR payload only has very sparse details --- the image path, digest, and action (e.g., INSERT, DELETE)
/lgtm |
This brings in the fixes from kubernetes-sigs/promo-tools#187.
These address #184 and #185.