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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ to support more (FBC, Helm, and other Kubernetes-native application artifacts)
## Installation

```console
go install github.com/joelanford/kpm@latest
go install github.com/operator-framework/kpm@latest
```

## OLM `registry+v1` bundles
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/joelanford/kpm
module github.com/operator-framework/kpm

go 1.24.3

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/joelanford/kpm/internal/pkg/spec"
"github.com/operator-framework/kpm/internal/pkg/spec"
)

func Build() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/bundle/registry/v1/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"oras.land/oras-go/v2"
"oras.land/oras-go/v2/content"

"github.com/joelanford/kpm/internal/pkg/util/tar"
"github.com/operator-framework/kpm/internal/pkg/util/tar"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/bundle/registry/v1/manifests.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

"github.com/operator-framework/api/pkg/operators/v1alpha1"

"github.com/joelanford/kpm/internal/pkg/bundle/registry/internal"
"github.com/operator-framework/kpm/internal/pkg/bundle/registry/internal"
)

type manifests struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/bundle/registry/v1/manifests_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/operator-framework/api/pkg/operators/v1alpha1"

"github.com/joelanford/kpm/internal/pkg/bundle/registry/internal"
"github.com/operator-framework/kpm/internal/pkg/bundle/registry/internal"
)

func Test_manifestsFSLoader_loadFiles(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/bundle/registry/v1/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/validation"

"github.com/joelanford/kpm/internal/pkg/bundle/registry/internal"
"github.com/operator-framework/kpm/internal/pkg/bundle/registry/internal"
)

type metadata struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/spec/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
"oras.land/oras-go/v2/content/oci"

"github.com/joelanford/kpm/internal/pkg/util/tar"
"github.com/operator-framework/kpm/internal/pkg/util/tar"
)

type BuildReport struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/spec/registryv1.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"sigs.k8s.io/yaml"

specsv1 "github.com/joelanford/kpm/internal/api/specs/v1"
registryv1 "github.com/joelanford/kpm/internal/pkg/bundle/registry/v1"
specsv1 "github.com/operator-framework/kpm/internal/api/specs/v1"
registryv1 "github.com/operator-framework/kpm/internal/pkg/bundle/registry/v1"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"github.com/joelanford/kpm/internal/cli"
"github.com/operator-framework/kpm/internal/cli"
)

func main() {
Expand Down