Skip to content
Merged
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 pkg/app/pipedv1/plugin/example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/pipe-cd/pipecd/pkg/app/pipedv1/plugin/example

go 1.24.1

require github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf
require github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb

require (
cloud.google.com/go v0.112.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions pkg/app/pipedv1/plugin/example/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRW
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/pipe-cd/pipecd v0.52.0 h1:/WRzHs4hqeYRJBvu0ask6UAO7qBlvPgN1ulBdA1VjgE=
github.com/pipe-cd/pipecd v0.52.0/go.mod h1:Hi4d3mndTeY+hPB4YbN9aIgvP00EBV0CM+NQgyEwn98=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf h1:+/Pt5kCbSlkcVRQD0xf2mOHh448N3BpJtl4we3RD33M=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb h1:dDgNZzEJl/RrHqSK8TDGVdvAxCNKDKaT9pWUDOYv6NA=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ func determineVersions(manifests []provider.Manifest) []sdk.ArtifactVersion {
for i := range imageMap {
image := parseContainerImage(i)
versions = append(versions, sdk.ArtifactVersion{
Kind: sdk.ArtifactKindContainerImage,
Version: image.tag,
Name: image.name,
URL: i,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
Expand Down Expand Up @@ -163,13 +162,11 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
},
{
Kind: sdk.ArtifactKindContainerImage,
Version: "6.0.9",
Name: "redis",
URL: "redis:6.0.9",
Expand All @@ -196,7 +193,6 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
Expand Down
4 changes: 3 additions & 1 deletion pkg/app/pipedv1/plugin/kubernetes/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/goccy/go-yaml v1.9.8
github.com/google/go-cmp v0.7.0
github.com/pipe-cd/pipecd v0.52.0
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.19.1
golang.org/x/mod v0.22.0
Expand All @@ -17,6 +17,8 @@ require (
sigs.k8s.io/yaml v1.3.0
)

replace github.com/pipe-cd/piped-plugin-sdk-go => ../../../../plugin/sdk

require (
cloud.google.com/go v0.112.1 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
Expand Down
2 changes: 0 additions & 2 deletions pkg/app/pipedv1/plugin/kubernetes/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,6 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9
github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
github.com/pipe-cd/pipecd v0.52.0 h1:/WRzHs4hqeYRJBvu0ask6UAO7qBlvPgN1ulBdA1VjgE=
github.com/pipe-cd/pipecd v0.52.0/go.mod h1:Hi4d3mndTeY+hPB4YbN9aIgvP00EBV0CM+NQgyEwn98=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf h1:+/Pt5kCbSlkcVRQD0xf2mOHh448N3BpJtl4we3RD33M=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ func determineVersions(manifests []provider.Manifest) []sdk.ArtifactVersion {
for i := range imageMap {
image := parseContainerImage(i)
versions = append(versions, sdk.ArtifactVersion{
Kind: sdk.ArtifactKindContainerImage,
Version: image.tag,
Name: image.name,
URL: i,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
Expand Down Expand Up @@ -163,13 +162,11 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
},
{
Kind: sdk.ArtifactKindContainerImage,
Version: "6.0.9",
Name: "redis",
URL: "redis:6.0.9",
Expand All @@ -196,7 +193,6 @@ spec:
},
want: []sdk.ArtifactVersion{
{
Kind: sdk.ArtifactKindContainerImage,
Version: "1.19.3",
Name: "nginx",
URL: "nginx:1.19.3",
Expand Down
2 changes: 1 addition & 1 deletion pkg/app/pipedv1/plugin/kubernetes_multicluster/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/creasty/defaults v1.6.0
github.com/google/go-cmp v0.7.0
github.com/pipe-cd/pipecd v0.52.0
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.19.1
golang.org/x/mod v0.22.0
Expand Down
4 changes: 2 additions & 2 deletions pkg/app/pipedv1/plugin/kubernetes_multicluster/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9
github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
github.com/pipe-cd/pipecd v0.52.0 h1:/WRzHs4hqeYRJBvu0ask6UAO7qBlvPgN1ulBdA1VjgE=
github.com/pipe-cd/pipecd v0.52.0/go.mod h1:Hi4d3mndTeY+hPB4YbN9aIgvP00EBV0CM+NQgyEwn98=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf h1:+/Pt5kCbSlkcVRQD0xf2mOHh448N3BpJtl4we3RD33M=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb h1:dDgNZzEJl/RrHqSK8TDGVdvAxCNKDKaT9pWUDOYv6NA=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
4 changes: 3 additions & 1 deletion pkg/app/pipedv1/plugin/wait/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ go 1.24.1

require (
github.com/pipe-cd/pipecd v0.52.0
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250612023157-bc4c32dc15cb
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.19.1
)

replace github.com/pipe-cd/piped-plugin-sdk-go => ../../../../plugin/sdk

require (
cloud.google.com/go v0.112.1 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
Expand Down
2 changes: 0 additions & 2 deletions pkg/app/pipedv1/plugin/wait/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,6 @@ github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRW
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/pipe-cd/pipecd v0.52.0 h1:/WRzHs4hqeYRJBvu0ask6UAO7qBlvPgN1ulBdA1VjgE=
github.com/pipe-cd/pipecd v0.52.0/go.mod h1:Hi4d3mndTeY+hPB4YbN9aIgvP00EBV0CM+NQgyEwn98=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf h1:+/Pt5kCbSlkcVRQD0xf2mOHh448N3BpJtl4we3RD33M=
github.com/pipe-cd/piped-plugin-sdk-go v0.0.0-20250611015256-e41eb352a1cf/go.mod h1:WpVRto2ZLgFRJ4VOk8gtTChHNCrGa4UjRhGN81TCl2E=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down