-
Notifications
You must be signed in to change notification settings - Fork 251
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
HIVE-2687: Privatelink improvements #2528
base: master
Are you sure you want to change the base?
Conversation
@jstuever: This pull request references HIVE-2687 which is a valid 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. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jstuever 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 |
97cc525
to
7bd9cd8
Compare
f5afd12
to
20cdfee
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2528 +/- ##
==========================================
+ Coverage 49.78% 49.90% +0.12%
==========================================
Files 281 281
Lines 33027 33127 +100
==========================================
+ Hits 16442 16532 +90
- Misses 15252 15259 +7
- Partials 1333 1336 +3
🚀 New features to boost your workflow:
|
/retest |
@jstuever: The following test failed, say
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. |
/assign @2uasimojo |
Getting started on this. It would be cool if the commit messages and the PR description could reference the original PR where the comments were made that prompted this one. (To be clear, not asking for references to specific comments -- just to the PR as a whole.) |
@@ -140,6 +140,7 @@ func (a *AWSHubActuator) Reconcile(cd *hivev1.ClusterDeployment, metadata *hivev | |||
if err != nil { | |||
return reconcile.Result{}, errors.Wrap(err, "failed to update condition on cluster deployment") | |||
} | |||
return reconcile.Result{Requeue: true}, nil |
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.
nit: Requeue: true
is redundant as the update will trigger a requeue anyway. I don't hate being explicit though.
} | ||
} | ||
break | ||
} | ||
_, err = a.awsClientHub.ChangeResourceRecordSets(&route53.ChangeResourceRecordSetsInput{ |
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.
nit: the error message on L501 might should say s/adding/changing/?
for _, record := range record.ResourceRecords { | ||
oldRecords.Insert(aws.StringValue(record.Value)) |
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.
This is a valid but confusing reuse of the var name record
. Working backwards, it would seem to make sense to name the outer loop var (defined on L396) some variant of recordSet
instead. Which would then be confusing against rSet
. Which could perhaps be mitigated by propagating the old
vs desired
prefixes all the way out.
if aws.StringValue(record.Type) != aws.StringValue(rSet.Type) { | ||
modified = true | ||
hzLog.WithFields(log.Fields{ | ||
"record": aws.StringValue(rSet.Name), |
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.
- The field key here should probably be
recordSet
orrecordSetName
or similar. - Is there a reason we wouldn't include this field for every message in this loop iter? Something like
rsetLog := hzLog.WithField("recordSetName", rSet.Name)
and then usersetLog
throughout this scope?
if record.AliasTarget == nil { | ||
modified = true | ||
hzLog.WithFields(log.Fields{ | ||
"record": aws.StringValue(rSet.Name), | ||
}).Debug("updating the record to use alias target") | ||
break | ||
} |
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.
Did I miss the path where we're switching from alias?
return false, nil | ||
} | ||
} else if rSet.AliasTarget != nil { | ||
logger.Debugf("AliasTarget") |
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 this still needed?
if !modified { | ||
return false, nil | ||
} |
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.
can this block be DRYed by moving it out one level?
rSet, err := a.recordSet(cd, apiDomain, dnsRecord) | ||
if err != nil { | ||
return false, errors.Wrap(err, "error generating DNS records") | ||
} | ||
|
||
recordsResp, err := a.awsClientHub.ListResourceRecordSets(&route53.ListResourceRecordSetsInput{ |
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.
This whole delta exists just so we can tell whether we've changed something?
Ugh, I looked at the API and I can see why that needs to be the case. Gross :(
I guess a DeepEquals()
isn't sufficient?
No description provided.