Skip to content

Instantly share code, notes, and snippets.

@edwarnicke
Created October 13, 2021 21:08
Show Gist options
  • Save edwarnicke/b182f36015ace550290035af0e6796c7 to your computer and use it in GitHub Desktop.
Save edwarnicke/b182f36015ace550290035af0e6796c7 to your computer and use it in GitHub Desktop.
=== RUN TestRunFeatureSuite/TestScale_from_zero
time=2021-10-13T15:31:53-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/TestScale_from_zero=stdin
time=2021-10-13T15:31:54-05:00 level=info msg=NODES=($(kubectl get nodes -o go-template='{{range .items}}{{ if not .spec.taints }}{{ .metadata.name }} {{end}}{{end}}'))
NSC_NODE=${NODES[0]}
SUPPLIER_NODE=${NODES[1]}
if [ "$SUPPLIER_NODE" == "" ]; then SUPPLIER_NODE=$NSC_NODE; echo "Only 1 node found, testing that pod is created on the same node is useless"; fi TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:31:54-05:00 level=info msg=cat > patch-nsc.yaml <<EOF
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nsc-kernel
spec:
template:
spec:
nodeName: $NSC_NODE
containers:
- name: nsc
env:
- name: NSM_NETWORK_SERVICES
value: kernel://autoscale-icmp-responder/nsm-1
- name: NSM_REQUEST_TIMEOUT
value: 30s
EOF TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:31:54-05:00 level=info msg=cat > patch-supplier.yaml <<EOF
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nse-supplier-k8s
spec:
template:
spec:
nodeName: $SUPPLIER_NODE
containers:
- name: nse-supplier
env:
- name: NSE_SERVICE_NAME
value: autoscale-icmp-responder
- name: NSE_LABELS
value: app:icmp-responder-supplier
- name: NSE_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: NSE_POD_DESCRIPTION_FILE
value: /run/supplier/pod-template.yaml
volumeMounts:
- name: pod-file
mountPath: /run/supplier
readOnly: true
volumes:
- name: pod-file
configMap:
name: supplier-pod-template-configmap
EOF TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:31:54-05:00 level=info msg=cat > kustomization.yaml <<EOF
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: $NAMESPACE
bases:
- https://github.com/networkservicemesh/deployments-k8s/apps/nse-supplier-k8s?ref=c49ab6a85c269e440be9f18e5b2facedb47ff10e
- https://github.com/networkservicemesh/deployments-k8s/apps/nsc-kernel?ref=c49ab6a85c269e440be9f18e5b2facedb47ff10e
patchesStrategicMerge:
- patch-nsc.yaml
- patch-supplier.yaml
configMapGenerator:
- name: supplier-pod-template-configmap
files:
- https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/scale-from-zero/pod-template.yaml
EOF TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:31:54-05:00 level=info msg=kubectl apply -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/c49ab6a85c269e440be9f18e5b2facedb47ff10e/examples/features/scale-from-zero/autoscale-netsvc.yaml TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:31:55-05:00 level=info msg=networkservice.networkservicemesh.io/autoscale-icmp-responder created TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:31:55-05:00 level=info msg=kubectl apply -k . TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:00-05:00 level=info msg=role.rbac.authorization.k8s.io/pod-manupulator created
rolebinding.rbac.authorization.k8s.io/default-pod-manupulator created
configmap/supplier-pod-template-configmap-h2d5tccf68 created
deployment.apps/nsc-kernel created
deployment.apps/nse-supplier-k8s created TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:32:00-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-supplier-k8s TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:00-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:00-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:00-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-supplier-k8s TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:11-05:00 level=info msg=pod/nse-supplier-k8s-5f58b66cdb-8875v condition met TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:32:11-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nsc-kernel TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:11-05:00 level=info msg=pod/nsc-kernel-95c999c77-znvkd condition met TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:32:11-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:11-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:11-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:11-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:12-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:12-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:12-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:12-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:12-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:12-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:12-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:12-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:12-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:12-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:12-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:12-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:13-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:13-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:13-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:13-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:13-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:13-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:13-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:13-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:13-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:13-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:13-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:14-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:14-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:14-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:14-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:14-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:14-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:14-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:14-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:14-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:14-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:15-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:15-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:15-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:15-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:15-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:15-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:15-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:15-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:15-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:16-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:16-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:16-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:16-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:16-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:16-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:16-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:16-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:17-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:17-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:17-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:17-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:17-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:17-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:17-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:18-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:18-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:18-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:18-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:18-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:18-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:18-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:18-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:18-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:18-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:19-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:19-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:19-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:19-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:19-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:19-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:19-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:19-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:20-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:20-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:20-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:20-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:20-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:20-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:20-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:20-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:20-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:21-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:21-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:21-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:21-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:21-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:21-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:21-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:22-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:22-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:22-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:22-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:22-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:22-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:22-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:22-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:22-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:22-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:23-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:23-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:23-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:23-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:23-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:23-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:23-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:23-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:23-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:24-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:24-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:24-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:24-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:24-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:24-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:24-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:24-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:24-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:25-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:25-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:25-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:26-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:26-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:26-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:26-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:26-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:26-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:26-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:27-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:27-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:27-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:27-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:27-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:27-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:27-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:27-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:28-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:28-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:28-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:28-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:28-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:28-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:28-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:28-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:28-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:28-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:29-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:29-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:29-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:29-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:29-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:29-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:29-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:29-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:30-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:30-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:30-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:30-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:30-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:30-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:30-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:30-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:30-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:31-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:31-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:31-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:31-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:31-05:00 level=info msg=error: no matching resources found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:32:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:32:31-05:00 level=info msg=kubectl wait -n $NAMESPACE --for=condition=ready --timeout=1m pod -l app=nse-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:46-05:00 level=info msg=pod/nse-icmp-responder-4b139786-3c13-4fae-b5de-7c9bdd3d3b91 condition met TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:32:46-05:00 level=info msg=NSC=$(kubectl get pod -n $NAMESPACE --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}' -l app=nsc-kernel)
NSE=$(kubectl get pod -n $NAMESPACE --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}' -l app=nse-icmp-responder) TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:32:47-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:01-05:00 level=info msg=PING 169.254.0.0 (169.254.0.0): 56 data bytes
--- 169.254.0.0 ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:33:01-05:00 level=info msg=command terminated with exit code 1 TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:01-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:01-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:15-05:00 level=info msg=PING 169.254.0.0 (169.254.0.0): 56 data bytes TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:33:15-05:00 level=info msg=command terminated with exit code 137 TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:15-05:00 level=info msg=137 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:15-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:16-05:00 level=info msg=error: Internal error occurred: error executing command in container: failed to exec in container: failed to load task: no running task found: not found TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:16-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:16-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:16-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:16-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:17-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:17-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:17-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:17-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:17-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:18-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:18-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:18-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:18-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:18-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:18-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:19-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:19-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:19-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:19-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:20-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:20-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:20-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:20-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:20-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:20-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:21-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:21-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:21-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:21-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:21-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:21-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:22-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:22-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:22-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:22-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:22-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:23-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:23-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:23-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:23-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:24-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:24-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:24-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:24-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:24-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:24-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:25-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:25-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:25-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:25-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:25-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:25-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:25-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:25-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:26-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:26-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:26-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:26-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:26-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:26-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:27-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:27-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:27-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:27-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:27-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:28-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:28-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:28-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:28-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:28-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:28-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:29-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:29-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:29-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:29-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:29-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:30-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:30-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:30-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:30-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:30-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:30-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:31-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:31-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:31-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:31-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:31-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:31-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:31-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:32-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:32-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:32-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:32-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:32-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:33-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:33-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:33-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:33-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:33-05:00 level=info msg=error: unable to upgrade connection: container not found ("nsc") TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:33-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:34-05:00 level=info msg=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0 TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:33:48-05:00 level=info msg=PING 169.254.0.0 (169.254.0.0): 56 data bytes
--- 169.254.0.0 ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:33:48-05:00 level=info msg=command terminated with exit code 1 TestRunFeatureSuite/TestScale_from_zero=stderr
time=2021-10-13T15:33:48-05:00 level=info msg=1 TestRunFeatureSuite/TestScale_from_zero=exitCode
time=2021-10-13T15:33:48-05:00 level=error msg=command didn't succeed until timeout cmd=kubectl exec $NSC -n $NAMESPACE -- ping -c 4 169.254.0.0
suite.go:122:
Error Trace: suite.go:122
suite.gen.go:211
Error: Not equal:
expected: 0
actual : 1
Test: TestRunFeatureSuite/TestScale_from_zero
time="2021-10-13T15:33:49-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:33:49-05:00" level=error msg="nse-supplier-k8s-5f58b66cdb-8875v: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-supplier-k8s-5f58b66cdb-8875v)"
time="2021-10-13T15:33:53-05:00" level=error msg="nsmgr-95dk7: An error while retrieving logs: context deadline exceeded"
time="2021-10-13T15:33:53-05:00" level=error msg="forwarder-vpp-5wmgv: An error while retrieving logs: context deadline exceeded"
time="2021-10-13T15:33:53-05:00" level=error msg="registry-k8s-69884b5478-6wtcj: An error while retrieving logs: context deadline exceeded"
time="2021-10-13T15:33:53-05:00" level=error msg="nsmgr-dffmm: An error while retrieving logs: context deadline exceeded"
time=2021-10-13T15:33:53-05:00 level=info msg=kubectl delete ns ${NAMESPACE} TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:34:53-05:00 level=info msg=namespace "ns-q2d5k" deleted TestRunFeatureSuite/TestScale_from_zero=stdout
time=2021-10-13T15:34:53-05:00 level=info msg=kubectl delete -n nsm-system networkservices.networkservicemesh.io autoscale-icmp-responder TestRunFeatureSuite/TestScale_from_zero=stdin
time=2021-10-13T15:34:56-05:00 level=info msg=networkservice.networkservicemesh.io "autoscale-icmp-responder" deleted TestRunFeatureSuite/TestScale_from_zero=stdout
--- FAIL: TestRunFeatureSuite/TestScale_from_zero (182.72s)
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