Skip to content

Instantly share code, notes, and snippets.

@upodroid
Created February 24, 2023 15:37
Show Gist options
  • Save upodroid/a8f08367e4bf9abb3dbd1f7870c9178d to your computer and use it in GitHub Desktop.
Save upodroid/a8f08367e4bf9abb3dbd1f7870c9178d to your computer and use it in GitHub Desktop.
Sig Node E2E decoupling.
maha4472@knative-e2e:~/kubernetes$ cat ~/.ssh/config
# SSH over AWS Systems Manager Session Manager
host i-* mi-*
ProxyCommand sh -c "aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters 'portNumber=%p'"
User ubuntu
maha4472@knative-e2e:~/kubernetes$ CGO_ENABLED=0 make test-e2e-node REMOTE=true REMOTE_MODE=ssh HOSTS="i-02122ff7e9fd7ce37" SKIP="" PARALLELISM=1 FOCUS="Eviction" SSH_KEY=~/.ssh/google_compute_engine SSH_USER=ubuntu
go version go1.20.1 linux/amd64
+++ [0224 15:30:11] Building go targets for linux/amd64
github.com/onsi/ginkgo/v2/ginkgo (non-static)
go version go1.20.1 linux/amd64
Creating artifacts directory at /tmp/_artifacts/230224T153014
Test artifacts will be written to /tmp/_artifacts/230224T153014
Initializing e2e tests using host i-02122ff7e9fd7ce37.
I0224 15:30:17.056170 81424 remote.go:72] Building archive...
I0224 15:30:17.056319 81424 build.go:43] Building k8s binaries...
+++ [0224 15:30:17] Building go targets for linux/amd64
k8s.io/kubernetes/cmd/kubelet (non-static)
k8s.io/kubernetes/test/e2e_node/e2e_node.test (test)
github.com/onsi/ginkgo/v2/ginkgo (non-static)
k8s.io/kubernetes/cluster/gce/gci/mounter (non-static)
k8s.io/kubernetes/test/e2e_node/plugins/gcp-credential-provider (non-static)
I0224 15:31:00.595651 81424 remote.go:106] Staging test binaries on "i-02122ff7e9fd7ce37"
I0224 15:31:00.596015 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- mkdir /tmp/node-e2e-20230224T153100]
I0224 15:31:04.159526 81424 ssh.go:120] Running the command scp, with args: [-i /home/maha4472/.ssh/google_compute_engine /home/maha4472/kubernetes/_output/local/go/src/k8s.io/kubernetes/e2e_node_test.tar.gz ubuntu@i-02122ff7e9fd7ce37:/tmp/node-e2e-20230224T153100/]
I0224 15:32:56.347417 81424 remote.go:133] Extracting tar on "i-02122ff7e9fd7ce37"
I0224 15:32:56.347496 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sh -c 'cd /tmp/node-e2e-20230224T153100 && tar -xzvf ./e2e_node_test.tar.gz']
I0224 15:33:01.448211 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- mkdir /tmp/node-e2e-20230224T153100/results]
I0224 15:33:03.925244 81424 remote.go:148] Running test on "i-02122ff7e9fd7ce37"
I0224 15:33:03.925273 81424 utils.go:66] Install CNI on "i-02122ff7e9fd7ce37"
I0224 15:33:03.925322 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'mkdir -p /tmp/node-e2e-20230224T153100/cni/bin ; curl -s -L https://storage.googleapis.com/k8s-artifacts-cni/release/v1.2.0/cni-plugins-linux-amd64-v1.2.0.tgz | tar -xz -C /tmp/node-e2e-20230224T153100/cni/bin']
I0224 15:33:08.170128 81424 utils.go:79] Adding CNI configuration on "i-02122ff7e9fd7ce37"
I0224 15:33:08.170219 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'mkdir -p /tmp/node-e2e-20230224T153100/cni/net.d ; echo '"'"'{
"name": "mynet",
"type": "bridge",
"bridge": "mynet0",
"isDefaultGateway": true,
"forceAddress": false,
"ipMasq": true,
"hairpinMode": true,
"ipam": {
"type": "host-local",
"subnet": "10.10.0.0/16"
}
}
'"'"' > /tmp/node-e2e-20230224T153100/cni/net.d/mynet.conf']
I0224 15:33:10.586177 81424 utils.go:106] Configure iptables firewall rules on "i-02122ff7e9fd7ce37"
I0224 15:33:10.586232 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'iptables -I INPUT 1 -w -p tcp -j ACCEPT&&iptables -I INPUT 1 -w -p udp -j ACCEPT&&iptables -I INPUT 1 -w -p icmp -j ACCEPT&&iptables -I FORWARD 1 -w -p tcp -j ACCEPT&&iptables -I FORWARD 1 -w -p udp -j ACCEPT&&iptables -I FORWARD 1 -w -p icmp -j ACCEPT']
I0224 15:33:13.058779 81424 utils.go:92] Configuring kubelet credential provider on "i-02122ff7e9fd7ce37"
I0224 15:33:13.058830 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'echo '"'"'kind: CredentialProviderConfig
apiVersion: kubelet.config.k8s.io/v1
providers:
- name: gcp-credential-provider
apiVersion: credentialprovider.kubelet.k8s.io/v1
matchImages:
- "gcr.io"
- "*.gcr.io"
- "container.cloud.google.com"
- "*.pkg.dev"
defaultCacheDuration: 1m'"'"' > /tmp/node-e2e-20230224T153100/credential-provider.yaml']
I0224 15:33:15.540247 81424 utils.go:127] Killing any existing node processes on "i-02122ff7e9fd7ce37"
I0224 15:33:15.540309 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'pkill kubelet ; pkill kube-apiserver ; pkill etcd ; pkill e2e_node.test']
E0224 15:33:18.031441 81424 ssh.go:123] failed to run SSH command: out: , err: exit status 1
I0224 15:33:18.031512 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo cat /etc/os-release]
I0224 15:33:20.497030 81424 node_e2e.go:200] Starting tests on "i-02122ff7e9fd7ce37"
I0224 15:33:20.497079 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'cd /tmp/node-e2e-20230224T153100 && timeout -k 30s 2700.000000s ./ginkgo -timeout=24h -focus="Eviction" -untilItFails=false ./e2e_node.test -- --system-spec-name= --system-spec-file= --extra-envs= --runtime-config= --v 4 --node-name=i-02122ff7e9fd7ce37 --report-dir=/tmp/node-e2e-20230224T153100/results --report-prefix=i-02122ff7e9fd7ce37 --image-description="" --kubelet-flags=--kernel-memcg-notification=true --kubelet-flags=--feature-gates=DisableKubeletCloudCredentialProviders=true,KubeletCredentialProviders=true --kubelet-flags=--image-credential-provider-config=/tmp/node-e2e-20230224T153100/credential-provider.yaml --kubelet-flags=--image-credential-provider-bin-dir=/tmp/node-e2e-20230224T153100 --kubelet-flags="--cluster-domain=cluster.local" --dns-domain="cluster.local" --container-runtime-endpoint=unix:///run/containerd/containerd.sock ']
E0224 15:33:23.343659 81424 ssh.go:123] failed to run SSH command: out: W0224 15:33:22.873827 4629 test_context.go:502] Unable to find in-cluster config, using default host : https://127.0.0.1:6443
I0224 15:33:22.873868 4629 test_context.go:519] Tolerating taints "node-role.kubernetes.io/control-plane,node-role.kubernetes.io/master" when considering if nodes are ready
Feb 24 15:33:22.873: INFO: The --provider flag is not set. Continuing as if --provider=skeleton had been used.
I0224 15:33:22.873984 4629 feature_gate.go:249] feature gates: &{map[]}
Running Suite: E2eNode Suite - /tmp/node-e2e-20230224T153100
============================================================
Random Seed: 1677252802 - will randomize all specs
Will run 11 of 389 specs
W0224 15:33:22.968891 4639 test_context.go:502] Unable to find in-cluster config, using default host : https://127.0.0.1:6443
I0224 15:33:22.968934 4639 test_context.go:519] Tolerating taints "node-role.kubernetes.io/control-plane,node-role.kubernetes.io/master" when considering if nodes are ready
Feb 24 15:33:22.968: INFO: The --provider flag is not set. Continuing as if --provider=skeleton had been used.
I0224 15:33:22.969098 4639 feature_gate.go:249] feature gates: &{map[]}
Validating os...
OS: Linux
Validating kernel...
KERNEL_VERSION: 5.15.0-1028-aws
CONFIG_NAMESPACES: enabled
CONFIG_NET_NS: enabled
CONFIG_PID_NS: enabled
CONFIG_IPC_NS: enabled
CONFIG_UTS_NS: enabled
CONFIG_CGROUPS: enabled
CONFIG_CGROUP_CPUACCT: enabled
CONFIG_CGROUP_DEVICE: enabled
CONFIG_CGROUP_FREEZER: enabled
CONFIG_CGROUP_PIDS: enabled
CONFIG_CGROUP_SCHED: enabled
CONFIG_CPUSETS: enabled
CONFIG_MEMCG: enabled
CONFIG_INET: enabled
CONFIG_EXT4_FS: enabled
CONFIG_PROC_FS: enabled
CONFIG_NETFILTER_XT_TARGET_REDIRECT: enabled (as module)
CONFIG_NETFILTER_XT_MATCH_COMMENT: enabled (as module)
CONFIG_FAIR_GROUP_SCHED: enabled
CONFIG_OVERLAY_FS: enabled (as module)
CONFIG_AUFS_FS: not set - Required for aufs.
CONFIG_BLK_DEV_DM: enabled
CONFIG_CFS_BANDWIDTH: enabled
CONFIG_CGROUP_HUGETLB: enabled
CONFIG_SECCOMP: enabled
CONFIG_SECCOMP_FILTER: enabled
Validating cgroups...
CGROUPS_CPU: enabled
CGROUPS_CPUSET: enabled
CGROUPS_DEVICES: enabled
CGROUPS_FREEZER: enabled
CGROUPS_MEMORY: enabled
CGROUPS_PIDS: enabled
CGROUPS_HUGETLB: enabled
CGROUPS_IO: enabled
Validating package...
PASS
------------------------------
[SynchronizedBeforeSuite] [FAILED] [0.301 seconds]
[SynchronizedBeforeSuite]
test/e2e_node/e2e_node_suite_test.go:197
Timeline >>
I0224 15:33:22.985030 4629 e2e_node_suite_test.go:204] Pre-pulling images so that they are cached for the tests.
Feb 24 15:33:22.987: INFO: Parsing ds from https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml
I0224 15:33:23.183870 4629 remote_runtime.go:72] "Connecting to runtime service" endpoint="unix:///run/containerd/containerd.sock"
I0224 15:33:23.184142 4629 remote_runtime.go:117] "Validating the CRI v1 API runtime version"
[FAILED] in [SynchronizedBeforeSuite] - test/e2e_node/e2e_node_suite_test.go:207 @ 02/24/23 15:33:23.186
<< Timeline
[FAILED] Unexpected error:
<*fmt.wrapError | 0xc00042c220>: {
msg: "validate service connection: validate CRI v1 runtime API for endpoint \"unix:///run/containerd/containerd.sock\": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService",
err: <*fmt.wrapError | 0xc00042c200>{
msg: "validate CRI v1 runtime API for endpoint \"unix:///run/containerd/containerd.sock\": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService",
err: <*status.Error | 0xc00038c5c0>{
s: {
s: {
state: {
NoUnkeyedLiterals: {},
DoNotCompare: [],
DoNotCopy: [],
atomicMessageInfo: nil,
},
sizeCache: 0,
unknownFields: nil,
Code: 12,
Message: "unknown service runtime.v1.RuntimeService",
Details: nil,
},
},
},
},
}
validate service connection: validate CRI v1 runtime API for endpoint "unix:///run/containerd/containerd.sock": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService
occurred
In [SynchronizedBeforeSuite] at: test/e2e_node/e2e_node_suite_test.go:207 @ 02/24/23 15:33:23.186
------------------------------
Summarizing 1 Failure:
[FAIL] [SynchronizedBeforeSuite]
test/e2e_node/e2e_node_suite_test.go:207
Ran 0 of 389 Specs in 0.301 seconds
FAIL! -- A BeforeSuite node failed so all tests were skipped.
--- FAIL: TestE2eNode (0.31s)
FAIL
Ginkgo ran 1 suite in 405.830858ms
Test Suite Failed
You're using deprecated Ginkgo functionality:
=============================================
--untilItFails is deprecated, use --until-it-fails instead
Learn more at: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#changed-command-line-flags
To silence deprecations that can be silenced set the following environment variable:
ACK_GINKGO_DEPRECATIONS=2.7.0
, err: exit status 1
I0224 15:33:23.343740 81424 remote.go:233] Test failed unexpectedly. Attempting to retrieving system logs (only works for nodes with journald)
I0224 15:33:23.343828 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'journalctl --system --all > /tmp/20230224T153323-system.log']
I0224 15:33:25.805111 81424 remote.go:238] Got the system logs from journald; copying it back...
I0224 15:33:25.805157 81424 ssh.go:120] Running the command scp, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37:/tmp/20230224T153323-system.log /tmp/_artifacts/230224T153014/i-02122ff7e9fd7ce37-system.log]
I0224 15:33:29.647324 81424 remote.go:158] Copying test artifacts from "i-02122ff7e9fd7ce37"
I0224 15:33:29.647443 81424 ssh.go:120] Running the command scp, with args: [-i /home/maha4472/.ssh/google_compute_engine -r ubuntu@i-02122ff7e9fd7ce37:/tmp/node-e2e-20230224T153100/results/*.log /tmp/_artifacts/230224T153014/i-02122ff7e9fd7ce37]
E0224 15:33:32.166834 81424 ssh.go:123] failed to run SSH command: out: scp: /tmp/node-e2e-20230224T153100/results/*.log: No such file or directory
, err: exit status 1
I0224 15:33:32.166887 81424 ssh.go:120] Running the command ssh, with args: [-i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo rm -rf /tmp/node-e2e-20230224T153100]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
> START TEST >
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Start Test Suite on Host i-02122ff7e9fd7ce37
W0224 15:33:22.873827 4629 test_context.go:502] Unable to find in-cluster config, using default host : https://127.0.0.1:6443
I0224 15:33:22.873868 4629 test_context.go:519] Tolerating taints "node-role.kubernetes.io/control-plane,node-role.kubernetes.io/master" when considering if nodes are ready
Feb 24 15:33:22.873: INFO: The --provider flag is not set. Continuing as if --provider=skeleton had been used.
I0224 15:33:22.873984 4629 feature_gate.go:249] feature gates: &{map[]}
Running Suite: E2eNode Suite - /tmp/node-e2e-20230224T153100
============================================================
Random Seed: 1677252802 - will randomize all specs
Will run 11 of 389 specs
W0224 15:33:22.968891 4639 test_context.go:502] Unable to find in-cluster config, using default host : https://127.0.0.1:6443
I0224 15:33:22.968934 4639 test_context.go:519] Tolerating taints "node-role.kubernetes.io/control-plane,node-role.kubernetes.io/master" when considering if nodes are ready
Feb 24 15:33:22.968: INFO: The --provider flag is not set. Continuing as if --provider=skeleton had been used.
I0224 15:33:22.969098 4639 feature_gate.go:249] feature gates: &{map[]}
Validating os...
OS: Linux
Validating kernel...
KERNEL_VERSION: 5.15.0-1028-aws
CONFIG_NAMESPACES: enabled
CONFIG_NET_NS: enabled
CONFIG_PID_NS: enabled
CONFIG_IPC_NS: enabled
CONFIG_UTS_NS: enabled
CONFIG_CGROUPS: enabled
CONFIG_CGROUP_CPUACCT: enabled
CONFIG_CGROUP_DEVICE: enabled
CONFIG_CGROUP_FREEZER: enabled
CONFIG_CGROUP_PIDS: enabled
CONFIG_CGROUP_SCHED: enabled
CONFIG_CPUSETS: enabled
CONFIG_MEMCG: enabled
CONFIG_INET: enabled
CONFIG_EXT4_FS: enabled
CONFIG_PROC_FS: enabled
CONFIG_NETFILTER_XT_TARGET_REDIRECT: enabled (as module)
CONFIG_NETFILTER_XT_MATCH_COMMENT: enabled (as module)
CONFIG_FAIR_GROUP_SCHED: enabled
CONFIG_OVERLAY_FS: enabled (as module)
CONFIG_AUFS_FS: not set - Required for aufs.
CONFIG_BLK_DEV_DM: enabled
CONFIG_CFS_BANDWIDTH: enabled
CONFIG_CGROUP_HUGETLB: enabled
CONFIG_SECCOMP: enabled
CONFIG_SECCOMP_FILTER: enabled
Validating cgroups...
CGROUPS_CPU: enabled
CGROUPS_CPUSET: enabled
CGROUPS_DEVICES: enabled
CGROUPS_FREEZER: enabled
CGROUPS_MEMORY: enabled
CGROUPS_PIDS: enabled
CGROUPS_HUGETLB: enabled
CGROUPS_IO: enabled
Validating package...
PASS
------------------------------
[SynchronizedBeforeSuite] [FAILED] [0.301 seconds]
[SynchronizedBeforeSuite]
test/e2e_node/e2e_node_suite_test.go:197
Timeline >>
I0224 15:33:22.985030 4629 e2e_node_suite_test.go:204] Pre-pulling images so that they are cached for the tests.
Feb 24 15:33:22.987: INFO: Parsing ds from https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml
I0224 15:33:23.183870 4629 remote_runtime.go:72] "Connecting to runtime service" endpoint="unix:///run/containerd/containerd.sock"
I0224 15:33:23.184142 4629 remote_runtime.go:117] "Validating the CRI v1 API runtime version"
[FAILED] in [SynchronizedBeforeSuite] - test/e2e_node/e2e_node_suite_test.go:207 @ 02/24/23 15:33:23.186
<< Timeline
[FAILED] Unexpected error:
<*fmt.wrapError | 0xc00042c220>: {
msg: "validate service connection: validate CRI v1 runtime API for endpoint \"unix:///run/containerd/containerd.sock\": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService",
err: <*fmt.wrapError | 0xc00042c200>{
msg: "validate CRI v1 runtime API for endpoint \"unix:///run/containerd/containerd.sock\": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService",
err: <*status.Error | 0xc00038c5c0>{
s: {
s: {
state: {
NoUnkeyedLiterals: {},
DoNotCompare: [],
DoNotCopy: [],
atomicMessageInfo: nil,
},
sizeCache: 0,
unknownFields: nil,
Code: 12,
Message: "unknown service runtime.v1.RuntimeService",
Details: nil,
},
},
},
},
}
validate service connection: validate CRI v1 runtime API for endpoint "unix:///run/containerd/containerd.sock": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService
occurred
In [SynchronizedBeforeSuite] at: test/e2e_node/e2e_node_suite_test.go:207 @ 02/24/23 15:33:23.186
------------------------------
Summarizing 1 Failure:
[FAIL] [SynchronizedBeforeSuite]
test/e2e_node/e2e_node_suite_test.go:207
Ran 0 of 389 Specs in 0.301 seconds
FAIL! -- A BeforeSuite node failed so all tests were skipped.
--- FAIL: TestE2eNode (0.31s)
FAIL
Ginkgo ran 1 suite in 405.830858ms
Test Suite Failed
You're using deprecated Ginkgo functionality:
=============================================
--untilItFails is deprecated, use --until-it-fails instead
Learn more at: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#changed-command-line-flags
To silence deprecations that can be silenced set the following environment variable:
ACK_GINKGO_DEPRECATIONS=2.7.0
Failure Finished Test Suite on Host i-02122ff7e9fd7ce37
[command [ssh -i /home/maha4472/.ssh/google_compute_engine ubuntu@i-02122ff7e9fd7ce37 -- sudo sh -c 'cd /tmp/node-e2e-20230224T153100 && timeout -k 30s 2700.000000s ./ginkgo -timeout=24h -focus="Eviction" -untilItFails=false ./e2e_node.test -- --system-spec-name= --system-spec-file= --extra-envs= --runtime-config= --v 4 --node-name=i-02122ff7e9fd7ce37 --report-dir=/tmp/node-e2e-20230224T153100/results --report-prefix=i-02122ff7e9fd7ce37 --image-description="" --kubelet-flags=--kernel-memcg-notification=true --kubelet-flags=--feature-gates=DisableKubeletCloudCredentialProviders=true,KubeletCredentialProviders=true --kubelet-flags=--image-credential-provider-config=/tmp/node-e2e-20230224T153100/credential-provider.yaml --kubelet-flags=--image-credential-provider-bin-dir=/tmp/node-e2e-20230224T153100 --kubelet-flags="--cluster-domain=cluster.local" --dns-domain="cluster.local" --container-runtime-endpoint=unix:///run/containerd/containerd.sock '] failed with error: exit status 1, command [scp -i /home/maha4472/.ssh/google_compute_engine -r ubuntu@i-02122ff7e9fd7ce37:/tmp/node-e2e-20230224T153100/results/*.log /tmp/_artifacts/230224T153014/i-02122ff7e9fd7ce37] failed with error: exit status 1]
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
< FINISH TEST <
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Failure: 1 errors encountered.
exit status 1
make: *** [Makefile:273: test-e2e-node] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment