A simple repository with two commits.
$ mkdir repo
$ cd repo/
$ git init .
Initialized empty Git repository in /Users/bittrance/tmp/repo/.git/
$ echo 1 > ze-file
| { | |
| "configs": [ | |
| { | |
| "@type": "type.googleapis.com/envoy.admin.v3.BootstrapConfigDump", | |
| "bootstrap": { | |
| "node": { | |
| "id": "host~127.0.0.1~no-id~localdomain", | |
| "cluster": "ingress-cluster", | |
| "user_agent_name": "envoy", | |
| "user_agent_build_version": { |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: hello-grpc | |
| --- | |
| apiVersion: gateway.networking.k8s.io/v1beta1 | |
| kind: Gateway | |
| metadata: | |
| name: hello-grpc | |
| namespace: hello-grpc |
| admin: | |
| address: | |
| pipe: | |
| path: /var/run/cilium/envoy/sockets/admin.sock | |
| applicationLogConfig: | |
| logFormat: | |
| textFormat: '[%Y-%m-%d %T.%e][%t][%l][%n] [%g:%#] %v' | |
| bootstrapExtensions: | |
| - name: envoy.bootstrap.internal_listener | |
| typedConfig: |
| apiVersion: gateway.networking.k8s.io/v1 | |
| kind: HTTPRoute | |
| metadata: | |
| name: hello-backend | |
| namespace: waypoint-test | |
| spec: | |
| parentRefs: | |
| - name: hello-upstream | |
| port: 8082 | |
| kind: Service |
| apiVersion: gateway.networking.k8s.io/v1 | |
| kind: HTTPRoute | |
| metadata: | |
| name: hello-backend | |
| namespace: waypoint-test | |
| spec: | |
| parentRefs: | |
| - name: hello-upstream | |
| port: 8082 | |
| kind: Service |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "os" | |
| "time" | |
| memdb "github.com/hashicorp/go-memdb" | |
| ) |
| failures: | |
| ---- topology::tests::topology_remove_source_add_source_with_same_port stdout ---- | |
| thread 'topology::tests::topology_remove_source_add_source_with_same_port' panicked at 'assertion failed: `(left == right)` | |
| left: `100`, | |
| right: `0`', src/topology/mod.rs:892:9 | |
| note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. | |
| stack backtrace: | |
| 0: std::sys::unix::backtrace::tracing::imp::unwind_backtrace | |
| at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39 | |
| 1: std::sys_common::backtrace::_print |