Skip to content
Open
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ cached index, run tests, then revert.
- CloudNativePG API and machinery (`github.com/cloudnative-pg/*`)
- Kubernetes controller-runtime (`sigs.k8s.io/controller-runtime`)
- NATS for the task queue (`github.com/nats-io/nats.go`)
- Kopia for deduplication (forked at `github.com/leonardoce/kopia`)
- Kopia for deduplication (forked at `github.com/cloudnative-pg/kopia`, branch `klio`)
- gRPC for client-server communication

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WORKDIR /workspace
# Clone and build Kopia with cache mounts and cross-compilation
RUN --mount=type=cache,target=/go/pkg/mod,id=kopia-mod-${TARGETARCH} \
--mount=type=cache,target=/root/.cache/go-build,id=kopia-build-${TARGETARCH} \
git clone --depth=1 --branch=klio-20260525 https://github.com/leonardoce/kopia && \
git clone --depth=1 --branch=klio https://github.com/cloudnative-pg/kopia && \
cd kopia && \
CGO_ENABLED=0 GOOS="${TARGETOS}" GOARCH="${TARGETARCH}" \
go build -o kopia main.go
Expand Down
2 changes: 1 addition & 1 deletion operator/test/e2e/otel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ func assertOTELTracesReceived(
// value "kopia" renders as "Str(kopia)"), governed by the collector image
// pinned in otel_collector.yaml;
// - Kopia's internal span names ("OpenRepository", "UploadDir"), defined in
// the leonardoce/kopia fork.
// the cloudnative-pg/kopia fork.
// If this starts failing after upgrading the collector image or the Kopia
// fork, re-derive the expected strings from the collector logs rather than
// assuming a regression in trace export.
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"go"
],
"matchPackageNames": [
"github.com/leonardoce/kopia",
"github.com/cloudnative-pg/kopia",
"github.com/leonardoce/afero-s3"
],
"enabled": false,
Expand Down
Loading