Skip to content

Commit 5c580b9

Browse files
committed
chore: update import paths from GitLab to GitHub in code and documentation
1 parent 27e9ccc commit 5c580b9

18 files changed

Lines changed: 33 additions & 35 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
If your GOPATH is set up, you can install `qseal` using the following command:
1616

1717
```bash
18-
go install gitlab.42paris.fr/froz/qseal@latest
18+
go install github.com/42paris/qseal@latest
1919
```
2020

21-
You can also download the latest release from the [releases page](https://gitlab.42paris.fr/froz/qseal/-/releases).
21+
You can also download the latest release from the [releases page](https://github.com/42paris/qseal/releases).
2222

2323
## Getting Started
2424

cmd/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4+
"github.com/42paris/qseal/pkg/qsealrc"
45
"github.com/spf13/cobra"
5-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
66
)
77

88
var initCmd = &cobra.Command{

cmd/qseal.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"os"
55

6+
"github.com/42paris/qseal/pkg/qseal"
7+
"github.com/42paris/qseal/pkg/qsealrc"
68
"github.com/spf13/cobra"
7-
"gitlab.42paris.fr/froz/qseal/pkg/qseal"
8-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
99
)
1010

1111
var RootCmd = &cobra.Command{
@@ -37,4 +37,4 @@ func init() {
3737
RootCmd.AddCommand(unsealAllCmd)
3838
RootCmd.AddCommand(syncCmd)
3939
RootCmd.AddCommand(statusCmd)
40-
}
40+
}

cmd/seal-all.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package cmd
22

33
import (
4+
"github.com/42paris/qseal/pkg/qseal"
5+
"github.com/42paris/qseal/pkg/qsealrc"
46
"github.com/spf13/cobra"
5-
"gitlab.42paris.fr/froz/qseal/pkg/qseal"
6-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
77
)
88

99
var sealAllCmd = &cobra.Command{
@@ -23,4 +23,4 @@ var sealAllCmd = &cobra.Command{
2323
}
2424
cmd.Println("all secrets sealed successfully")
2525
},
26-
}
26+
}

cmd/status.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package cmd
22

33
import (
4+
"github.com/42paris/qseal/pkg/qseal"
5+
"github.com/42paris/qseal/pkg/qsealrc"
46
"github.com/spf13/cobra"
5-
"gitlab.42paris.fr/froz/qseal/pkg/qseal"
6-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
77
)
88

99
var statusCmd = &cobra.Command{

cmd/sync.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package cmd
22

33
import (
4+
"github.com/42paris/qseal/pkg/qseal"
5+
"github.com/42paris/qseal/pkg/qsealrc"
46
"github.com/spf13/cobra"
5-
"gitlab.42paris.fr/froz/qseal/pkg/qseal"
6-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
77
)
88

99
var syncCmd = &cobra.Command{
@@ -23,4 +23,4 @@ var syncCmd = &cobra.Command{
2323
}
2424
cmd.Println("all secrets synced successfully")
2525
},
26-
}
26+
}

cmd/unseal-all.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package cmd
22

33
import (
4+
"github.com/42paris/qseal/pkg/qseal"
5+
"github.com/42paris/qseal/pkg/qsealrc"
46
"github.com/spf13/cobra"
5-
"gitlab.42paris.fr/froz/qseal/pkg/qseal"
6-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
77
)
88

99
var unsealAllCmd = &cobra.Command{
@@ -23,4 +23,4 @@ var unsealAllCmd = &cobra.Command{
2323
}
2424
cmd.Println("all secrets unsealed successfully")
2525
},
26-
}
26+
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module gitlab.42paris.fr/froz/qseal
1+
module github.com/42paris/qseal
22

33
go 1.24.0
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"gitlab.42paris.fr/froz/qseal/cmd"
7+
"github.com/42paris/qseal/cmd"
88
)
99

1010
func main() {

pkg/qseal/kubeseal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"crypto/rsa"
66
"os"
77

8+
"github.com/42paris/qseal/pkg/qsealrc"
89
"github.com/bitnami-labs/sealed-secrets/pkg/kubeseal"
9-
"gitlab.42paris.fr/froz/qseal/pkg/qsealrc"
1010
"k8s.io/client-go/kubernetes"
1111
"k8s.io/client-go/tools/clientcmd"
1212
)

0 commit comments

Comments
 (0)