File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -647,7 +647,6 @@ test/e2e/common
647
647
test/e2e/framework
648
648
test/e2e/framework/providers/gce
649
649
test/e2e/framework/providers/kubemark
650
- test/e2e/instrumentation
651
650
test/e2e/instrumentation/logging
652
651
test/e2e/instrumentation/monitoring
653
652
test/e2e/lifecycle
@@ -665,7 +664,6 @@ test/e2e/windows
665
664
test/e2e_kubeadm
666
665
test/e2e_node
667
666
test/e2e_node/builder
668
- test/e2e_node/environment
669
667
test/e2e_node/remote
670
668
test/e2e_node/runner/remote
671
669
test/e2e_node/services
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ limitations under the License.
17
17
package instrumentation
18
18
19
19
import (
20
+ // ensure libs have a chance to perform initialization
20
21
_ "k8s.io/kubernetes/test/e2e/instrumentation/logging"
21
22
_ "k8s.io/kubernetes/test/e2e/instrumentation/monitoring"
22
23
)
Original file line number Diff line number Diff line change @@ -119,12 +119,12 @@ func containerRuntime() error {
119
119
return printSuccess ("Container Runtime Check: %s" , success )
120
120
}
121
121
122
- const kubeletClusterDnsRegexStr = `\/kubelet.*--cluster-dns=(\S+) `
122
+ const kubeletClusterDNSRegexStr = `\/kubelet.*--cluster-dns=(\S+) `
123
123
const kubeletClusterDomainRegexStr = `\/kubelet.*--cluster-domain=(\S+)`
124
124
125
125
// dns checks that cluster dns has been properly configured and can resolve the kubernetes.default service
126
126
func dns () error {
127
- dnsRegex , err := regexp .Compile (kubeletClusterDnsRegexStr )
127
+ dnsRegex , err := regexp .Compile (kubeletClusterDNSRegexStr )
128
128
if err != nil {
129
129
// This should never happen and can only be fixed by changing the code
130
130
panic (err )
You can’t perform that action at this time.
0 commit comments