Bug 1826230: Rebase 1.18#84
Conversation
|
/hold |
f4b36c0 to
624e19a
Compare
|
/retest |
|
/retest |
624e19a to
46cbfef
Compare
|
/retest |
|
/retest On the other hand, 2 out of 3 OCM pods only seem to log I am not sure why that would be happening unless something performs tests with some kind of miscreant tokens. |
46cbfef to
72761a8
Compare
|
bumped kube to 1.18 |
3ffd44f to
6b00e46
Compare
6b00e46 to
b8af519
Compare
|
/hold cancel |
| k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.17.3 | ||
| k8s.io/metrics => k8s.io/metrics v0.17.3 | ||
| k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.17.3 | ||
| k8s.io/api => k8s.io/api v0.18.0 |
There was a problem hiding this comment.
wondering why library-go doesn't have to specify replace for k8s repositories?
https://github.com/openshift/library-go/blob/master/go.mod
There was a problem hiding this comment.
it does not depend on k8s.io/kubernetes which seems to raise this requirement, or at least it did when I was trying to remove the replaces
There was a problem hiding this comment.
oh, I think you are right.
| k8s.io/kubectl v0.17.3 | ||
| k8s.io/kubernetes v1.17.3 | ||
| k8s.io/kube-aggregator v0.18.0 | ||
| k8s.io/kube-openapi v0.0.0-20200121204235-bf4fb3bd569c |
There was a problem hiding this comment.
okay, it matches kube https://github.com/kubernetes/kubernetes/blob/v1.18.0/go.mod#L158
|
|
||
| func (r *REST) getLogs(podNamespace, podName string, logOpts *corev1.PodLogOptions) (runtime.Object, error) { | ||
| func (r *REST) getLogs(ctx context.Context, podNamespace, podName string, logOpts *corev1.PodLogOptions) (runtime.Object, error) { | ||
| logRequest := r.podClient.Pods(podNamespace).GetLogs(podName, logOpts) |
There was a problem hiding this comment.
fun, it doesn't want ctx ?
There was a problem hiding this comment.
It only constructs the request, but does no .Do() it, that's because of the streaming below
|
/retest Please review the full test history for this PR and help us cut down flakes. |
11 similar comments
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
/hold |
|
/hold cancel |
|
/retest |
|
@stlaz: This pull request references Bugzilla bug 1826230, which is valid. The bug has been moved to the POST state. The bug has been updated to refer to the pull request using the external bug tracker. 3 validation(s) were run on this bug
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/test-infra repository. |
|
/retest Please review the full test history for this PR and help us cut down flakes. |
1 similar comment
|
/retest Please review the full test history for this PR and help us cut down flakes. |
|
@stlaz: All pull requests linked via external trackers have merged: openshift/openshift-apiserver#84. Bugzilla bug 1826230 has been moved to the MODIFIED state. 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/test-infra repository. |
| @@ -1,9 +1,9 @@ | |||
| FROM registry.svc.ci.openshift.org/openshift/release:golang-1.12 AS builder | |||
| FROM registry.svc.ci.openshift.org/openshift/release:golang-1.13 AS builder | |||
There was a problem hiding this comment.
| @@ -1,9 +1,9 @@ | |||
| FROM registry.svc.ci.openshift.org/ocp/builder:golang-1.12 AS builder | |||
| FROM registry.svc.ci.openshift.org/ocp/builder:golang-1.13 AS builder | |||
There was a problem hiding this comment.
This seems to compile and pass most unit tests.
There are a bunch of unit tests that I think might be failing for me locally since I'm using golang 1.14 and I suspect they added some new checks/improved the old ones.
Let's throw it at CI to see what it thinks about it