Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,24 @@ jobs:
loki_push_url: ${{ secrets.LOKI_PUSH_URL || '' }}
loki_username: ${{ secrets.LOKI_USERNAME || '' }}
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
topology_kube_kind:
name: Validate topology on kind cluster
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/run-monitored-tmpnet-cmd
with:
run: ./scripts/run_task.sh test-topology-kube-kind
runtime: kube
artifact_prefix: topology-kube
prometheus_url: ${{ secrets.PROMETHEUS_URL || '' }}
prometheus_push_url: ${{ secrets.PROMETHEUS_PUSH_URL || '' }}
prometheus_username: ${{ secrets.PROMETHEUS_USERNAME || '' }}
prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }}
loki_url: ${{ secrets.LOKI_URL || '' }}
loki_push_url: ${{ secrets.LOKI_PUSH_URL || '' }}
loki_username: ${{ secrets.LOKI_USERNAME || '' }}
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
robustness:
Comment thread
maru-ava marked this conversation as resolved.
runs-on: ubuntu-24.04
steps:
Expand Down
3 changes: 3 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ use_repo(
"com_github_ava_labs_simplex",
"com_github_btcsuite_btcd_btcutil",
"com_github_cespare_xxhash_v2",
"com_github_chaos_mesh_chaos_mesh_api",
"com_github_cockroachdb_pebble",
"com_github_compose_spec_compose_go",
"com_github_datadog_zstd",
Expand All @@ -75,6 +76,7 @@ use_repo(
"com_github_decred_dcrd_dcrec_secp256k1_v4",
"com_github_fjl_gencodec",
"com_github_go_cmd_cmd",
"com_github_go_logr_logr",
"com_github_google_btree",
"com_github_google_go_cmp",
"com_github_google_renameio_v2",
Expand Down Expand Up @@ -121,6 +123,7 @@ use_repo(
"io_k8s_api",
"io_k8s_apimachinery",
"io_k8s_client_go",
"io_k8s_sigs_controller_runtime",
"io_k8s_utils",
"io_opentelemetry_go_otel",
"io_opentelemetry_go_otel_exporters_otlp_otlptrace",
Expand Down
2,611 changes: 2,611 additions & 0 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,13 @@ For more information, refer to the [GRPC Golang Quick Start Guide](https://grpc.

See [the Contributing document autogenerated mocks section](CONTRIBUTING.md####Autogenerated-mocks).

## Documentation

In-repo documentation conventions are described in
[`docs/documentation-guidelines.md`](docs/documentation-guidelines.md). New
feature documentation, package-level docs, and maintainer-oriented context
should follow that guide.

## Versioning

### Version Semantics
Expand Down
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,11 @@ tasks:
- task: generate-load-contract-bindings
- cmd: '{{.NIX_RUN}} bash -x ./scripts/tests.load.kube.kind.sh {{.CLI_ARGS}}'

test-topology-kube-kind:
desc: Runs the tmpnet topology end-to-end test against a kind cluster
cmds:
- cmd: '{{.NIX_RUN}} bash -x ./scripts/tests.topology.kube.kind.sh {{.CLI_ARGS}}'

test-robustness:
desc: Deploys kind with chaos mesh. Intended to eventually run a robustness (fault-injection) test suite.
cmds:
Expand Down
Loading
Loading