Skip to content

Instantly share code, notes, and snippets.

@edwarnicke
Created October 13, 2021 21:10
Show Gist options
  • Save edwarnicke/a5c38c8e181b6c1c70505da23db60e89 to your computer and use it in GitHub Desktop.
Save edwarnicke/a5c38c8e181b6c1c70505da23db60e89 to your computer and use it in GitHub Desktop.
=== RUN TestRunFeatureSuite/TestNse_composition
time=2021-10-13T15:27:54-05:00 level=info msg=NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10} TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:55-05:00 level=info msg=NODE=($(kubectl get nodes -o go-template='{{range .items}}{{ if not .spec.taints }}{{index .metadata.labels "kubernetes.io/hostname"}} {{end}}{{end}}')[0]) TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:56-05:00 level=info msg=cat > kustomization.yaml <<EOF
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: ${NAMESPACE}
resources:
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/nse-composition/config-file.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/nse-composition/passthrough-1.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/nse-composition/passthrough-2.yaml
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/nse-composition/passthrough-3.yaml
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=c49ab6a85c269e440be9f18e5b2facedb47ff10e
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-kernel?ref=c49ab6a85c269e440be9f18e5b2facedb47ff10e
- https://github.com/networkservicemesh/deployments-k8s/examples/features/nse-composition/nse-firewall?ref=c49ab6a85c269e440be9f18e5b2facedb47ff10e
patchesStrategicMerge:
- patch-nsc.yaml
- patch-nse.yaml
EOF TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:56-05:00 level=info msg=cat > patch-nsc.yaml <<EOF
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nsc-kernel
spec:
template:
spec:
containers:
- name: nsc
env:
- name: NSM_NETWORK_SERVICES
value: kernel://nse-composition/nsm-1
nodeSelector:
kubernetes.io/hostname: ${NODE}
EOF TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:56-05:00 level=info msg=cat > patch-nse.yaml <<EOF
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nse-kernel
spec:
template:
spec:
containers:
- name: nse
env:
- name: NSM_CIDR_PREFIX
value: 172.16.1.100/31
- name: NSM_SERVICE_NAMES
value: "nse-composition"
- name: NSM_REGISTER_SERVICE
value: "false"
- name: NSM_LABELS
value: "app:gateway"
- name: nginx
image: networkservicemesh/nginx
imagePullPolicy: IfNotPresent
nodeSelector:
kubernetes.io/hostname: ${NODE}
EOF TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:56-05:00 level=info msg=kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/nse-composition/nse-composition-ns.yaml TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:27:57-05:00 level=info msg=networkservice.networkservicemesh.io/nse-composition created TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:27:57-05:00 level=info msg=kubectl apply -k . TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:10-05:00 level=info msg=configmap/vppagent-firewall-config-file created
deployment.apps/nsc-kernel created
deployment.apps/nse-firewall-vpp created
deployment.apps/nse-kernel created
deployment.apps/nse-passthrough-1 created
deployment.apps/nse-passthrough-2 created
deployment.apps/nse-passthrough-3 created TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:10-05:00 level=info msg=kubectl wait --for=condition=ready --timeout=1m pod -l app=nsc-kernel -n ${NAMESPACE} TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:19-05:00 level=info msg=pod/nsc-kernel-546b665456-rbhd6 condition met TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:19-05:00 level=info msg=kubectl wait --for=condition=ready --timeout=1m pod -l app=nse-kernel -n ${NAMESPACE} TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:20-05:00 level=info msg=pod/nse-kernel-586bdfbcf6-jw9vg condition met TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:20-05:00 level=info msg=NSC=$(kubectl get pods -l app=nsc-kernel -n ${NAMESPACE} --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}') TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:21-05:00 level=info msg=NSE=$(kubectl get pods -l app=nse-kernel -n ${NAMESPACE} --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}') TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:21-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:30-05:00 level=info msg=PING 172.16.1.100 (172.16.1.100): 56 data bytes TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:30-05:00 level=info msg=command terminated with exit code 137 TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:30-05:00 level=info msg=137 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:30-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:32-05:00 level=info msg=error: Internal error occurred: error executing command in container: failed to exec in container: container is in CONTAINER_EXITED state TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:32-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:32-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:32-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:32-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:32-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:33-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:33-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:33-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:34-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:34-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:34-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:35-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:35-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:35-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:35-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:35-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:35-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:36-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:36-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:36-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:52-05:00 level=info msg=PING 172.16.1.100 (172.16.1.100): 56 data bytes
--- 172.16.1.100 ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:52-05:00 level=info msg=command terminated with exit code 1 TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:52-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:52-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:54-05:00 level=info msg=PING 172.16.1.100 (172.16.1.100): 56 data bytes TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:28:54-05:00 level=info msg=command terminated with exit code 137 TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:54-05:00 level=info msg=137 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:54-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:55-05:00 level=info msg=error: Internal error occurred: error executing command in container: failed to exec in container: failed to create exec "2e1c8dfa563a5c52dd27d1a9927b4dd878c87c1632e0fbdf51c9946d0a072da5": container not created: not found TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:55-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:56-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:56-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:56-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:56-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:57-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:57-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:57-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:57-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:57-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:57-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:58-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:58-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:58-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:58-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:58-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:58-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:59-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:59-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:59-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:28:59-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:28:59-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:28:59-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:00-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:00-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:00-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:00-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:00-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:00-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:01-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:01-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:01-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:01-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:01-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:02-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:02-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:02-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:02-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:02-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:02-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:03-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:03-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:03-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:03-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:03-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:03-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:03-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:04-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:04-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:04-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:05-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:05-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:05-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:05-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:05-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:05-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:06-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:06-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:06-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:06-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:06-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:06-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:07-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:07-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:07-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:07-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:07-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:08-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:08-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:08-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:08-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:09-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:09-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:09-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:09-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:09-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:09-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:10-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:10-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:10-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:10-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:10-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:10-05:00 level=info msg=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100 TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:29:25-05:00 level=info msg=PING 172.16.1.100 (172.16.1.100): 56 data bytes
--- 172.16.1.100 ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss TestRunFeatureSuite/TestNse_composition=stdout
time=2021-10-13T15:29:25-05:00 level=info msg=command terminated with exit code 1 TestRunFeatureSuite/TestNse_composition=stderr
time=2021-10-13T15:29:25-05:00 level=info msg=1 TestRunFeatureSuite/TestNse_composition=exitCode
time=2021-10-13T15:29:25-05:00 level=error msg=command didn't succeed until timeout cmd=kubectl exec ${NSC} -n ${NAMESPACE} -- ping -c 4 172.16.1.100
suite.go:122:
Error Trace: suite.go:122
suite.gen.go:172
Error: Not equal:
expected: 0
actual : 1
Test: TestRunFeatureSuite/TestNse_composition
time="2021-10-13T15:29:26-05:00" level=error msg="admission-webhook-k8s-7688b745d-tvbcg: An error while retrieving logs: the server rejected our request for an unknown reason (get pods admission-webhook-k8s-7688b745d-tvbcg)"
time="2021-10-13T15:29:27-05:00" level=error msg="nse-passthrough-3-7f789c7ff4-n7mt4: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-passthrough-3-7f789c7ff4-n7mt4)"
time="2021-10-13T15:29:27-05:00" level=error msg="nse-kernel-586bdfbcf6-jw9vg: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-kernel-586bdfbcf6-jw9vg)"
time="2021-10-13T15:29:27-05:00" level=error msg="nse-passthrough-1-6d864c44f6-9zm6m: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-passthrough-1-6d864c44f6-9zm6m)"
time="2021-10-13T15:29:27-05:00" level=error msg="nse-firewall-vpp-886b79d9f-kzl87: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-firewall-vpp-886b79d9f-kzl87)"
time="2021-10-13T15:29:27-05:00" level=error msg="nse-passthrough-2-979766d77-tj9dw: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-passthrough-2-979766d77-tj9dw)"
time="2021-10-13T15:29:30-05:00" level=error msg="nsmgr-95dk7: An error while retrieving logs: context deadline exceeded"
time="2021-10-13T15:29:30-05:00" level=error msg="registry-k8s-69884b5478-6wtcj: An error while retrieving logs: context deadline exceeded"
time="2021-10-13T15:29:30-05:00" level=error msg="nsmgr-dffmm: An error while retrieving logs: context deadline exceeded"
time=2021-10-13T15:29:30-05:00 level=info msg=kubectl delete ns ${NAMESPACE} TestRunFeatureSuite/TestNse_composition=stdin
time=2021-10-13T15:30:52-05:00 level=info msg=namespace "ns-tq5ld" deleted TestRunFeatureSuite/TestNse_composition=stdout
--- FAIL: TestRunFeatureSuite/TestNse_composition (177.76s)
Expected :0
Actual :1
<Click to see difference>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment