-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Accept ns/name Secret reference in annotations #2382
Accept ns/name Secret reference in annotations #2382
Conversation
/assign @aledbf |
/approve |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aledbf, antoineco 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 |
@antoineco thanks! |
Codecov Report
@@ Coverage Diff @@
## master #2382 +/- ##
==========================================
+ Coverage 39.12% 39.33% +0.21%
==========================================
Files 73 73
Lines 5204 5214 +10
==========================================
+ Hits 2036 2051 +15
+ Misses 2878 2874 -4
+ Partials 290 289 -1
Continue to review full report at Codecov.
|
if err != nil { | ||
glog.Errorf("error reading secret reference in annotation %q: %s", ann, err) |
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.
Just realized parser.parseString()
throws errors.ErrMissingAnnotations
if the Ingress object being processed does not have a given annotation. This is probably something we want to silence.
Fixes #2375