From 9835b79d832f44ab329bb4cb103025c302905e5e Mon Sep 17 00:00:00 2001 From: Makram Kamaleddine Date: Thu, 22 Jan 2026 11:32:32 +0200 Subject: [PATCH] framework/components/blockchain/canton: set labels Set container labels to framework.DefaultTCLabels() so that tooling that uses this label can find the containers. --- framework/components/blockchain/canton/canton.go | 1 + framework/components/blockchain/canton/nginx.go | 1 + framework/components/blockchain/canton/postgres.go | 1 + framework/components/blockchain/canton/splice.go | 1 + 4 files changed, 4 insertions(+) diff --git a/framework/components/blockchain/canton/canton.go b/framework/components/blockchain/canton/canton.go index 9ca5dcf20..e8090b55a 100644 --- a/framework/components/blockchain/canton/canton.go +++ b/framework/components/blockchain/canton/canton.go @@ -354,6 +354,7 @@ func ContainerRequest( FileMode: 0755, }, }, + Labels: framework.DefaultTCLabels(), } return cantonReq diff --git a/framework/components/blockchain/canton/nginx.go b/framework/components/blockchain/canton/nginx.go index cc50e80af..a85318aae 100644 --- a/framework/components/blockchain/canton/nginx.go +++ b/framework/components/blockchain/canton/nginx.go @@ -222,6 +222,7 @@ func NginxContainerRequest( FileMode: 0755, }, }, + Labels: framework.DefaultTCLabels(), } return nginxReq diff --git a/framework/components/blockchain/canton/postgres.go b/framework/components/blockchain/canton/postgres.go index 3f8288c23..498552321 100644 --- a/framework/components/blockchain/canton/postgres.go +++ b/framework/components/blockchain/canton/postgres.go @@ -87,6 +87,7 @@ func PostgresContainerRequest( "-c", "max_connections=2000", "-c", "log_statement=all", }, + Labels: framework.DefaultTCLabels(), } return postgresReq diff --git a/framework/components/blockchain/canton/splice.go b/framework/components/blockchain/canton/splice.go index 193f0c37f..3ac4b6e6a 100644 --- a/framework/components/blockchain/canton/splice.go +++ b/framework/components/blockchain/canton/splice.go @@ -364,6 +364,7 @@ func SpliceContainerRequest( FileMode: 0755, }, }, + Labels: framework.DefaultTCLabels(), } return spliceReq