Skip to content

Commit 2f3d16b

Browse files
committed
chore: rename project owner and go module
Signed-off-by: Massimiliano Giovagnoli <[email protected]>
1 parent 0ae46d5 commit 2f3d16b

14 files changed

+23
-23
lines changed

.github/workflows/publish-charts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
publish-helm:
1616
# Skip this Release on forks
17-
if: github.repository_owner == 'maxgio92'
17+
if: github.repository_owner == 'projectcapsule'
1818
runs-on: ubuntu-20.04
1919
steps:
2020
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ linters-settings:
55
sections:
66
- standard # Captures all standard packages if they do not match another section.
77
- default # Contains all imports that could not be matched to another section type.
8-
- prefix(github.com/maxgio92/capsule-addon-fluxcd) # Groups all imports with the specified Prefix.
8+
- prefix(github.com/projectcapsule/capsule-addon-fluxcd) # Groups all imports with the specified Prefix.
99
goconst:
1010
min-len: 2
1111
min-occurrences: 3

.goreleaser.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ signs:
4949
# https://goreleaser.com/customization/ko/?h=kos
5050
kos:
5151
- base_image: cgr.dev/chainguard/static
52-
repository: ghcr.io/maxgio92/capsule-addon-fluxcd
52+
repository: ghcr.io/projectcapsule/capsule-addon-fluxcd
5353
bare: true
5454
tags:
5555
- '{{ .Version }}'
@@ -86,11 +86,11 @@ release:
8686
8787
Those were the changes on {{ .Tag }}!
8888
89-
**Full Changelog**: https://github.com/maxgio92/{{ .ProjectName }}/compare/{{ .PreviousTag }}...{{ .Tag }}
89+
**Full Changelog**: https://github.com/projectcapsule/{{ .ProjectName }}/compare/{{ .PreviousTag }}...{{ .Tag }}
9090
9191
**Container images**
92-
- `ghcr.io/maxgio92/{{ .ProjectName }}:{{ .Tag }}`
93-
- `ghcr.io/maxgio92/{{ .ProjectName }}:latest`
92+
- `ghcr.io/projectcapsule/{{ .ProjectName }}:{{ .Tag }}`
93+
- `ghcr.io/projectcapsule/{{ .ProjectName }}:latest`
9494
9595
# Generate a GitHub release with a customized changelog.
9696
changelog:

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Latest release](https://img.shields.io/github/v/release/maxgio92/capsule-addon-fluxcd?style=for-the-badge)](https://github.com/maxgio92/capsule-addon-fluxcd/releases/latest)
2-
[![License](https://img.shields.io/github/license/maxgio92/capsule-addon-fluxcd?style=for-the-badge)](COPYING)
3-
![Go version](https://img.shields.io/github/go-mod/go-version/maxgio92/capsule-addon-fluxcd?style=for-the-badge)
4-
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/maxgio92/capsule-addon-fluxcd/scan-code.yml?style=for-the-badge&label=GoSec)
1+
[![Latest release](https://img.shields.io/github/v/release/projectcapsule/capsule-addon-fluxcd?style=for-the-badge)](https://github.com/projectcapsule/capsule-addon-fluxcd/releases/latest)
2+
[![License](https://img.shields.io/github/license/projectcapsule/capsule-addon-fluxcd?style=for-the-badge)](COPYING)
3+
![Go version](https://img.shields.io/github/go-mod/go-version/projectcapsule/capsule-addon-fluxcd?style=for-the-badge)
4+
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/projectcapsule/capsule-addon-fluxcd/scan-code.yml?style=for-the-badge&label=GoSec)
55

66
# Capsule addon for Flux CD
77

@@ -16,7 +16,7 @@ This way tenants can be provided Namespace-as-a-Service in a GitOps fashion.
1616
## Install
1717

1818
```shell
19-
helm install -n capsule-system capsule-addon-fluxcd oci://ghcr.io/maxgio92/charts/capsule-addon-fluxcd
19+
helm install -n capsule-system capsule-addon-fluxcd oci://ghcr.io/projectcapsule/charts/capsule-addon-fluxcd
2020
```
2121

2222
## How it works

charts/capsule-addon-fluxcd/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A Helm chart for Kubernetes
1111
| affinity | object | `{}` | |
1212
| fullnameOverride | string | `""` | |
1313
| image.pullPolicy | string | `"IfNotPresent"` | |
14-
| image.repository | string | `"ghcr.io/maxgio92/capsule-addon-fluxcd"` | |
14+
| image.repository | string | `"ghcr.io/projectcapsule/capsule-addon-fluxcd"` | |
1515
| image.tag | string | `""` | |
1616
| imagePullSecrets | list | `[]` | |
1717
| livenessProbe | object | `{"httpGet":{"path":"/healthz","port":10080}}` | Configure the liveness probe using Deployment probe spec |

charts/capsule-addon-fluxcd/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66

77
image:
8-
repository: ghcr.io/maxgio92/capsule-addon-fluxcd
8+
repository: ghcr.io/projectcapsule/capsule-addon-fluxcd
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
1111
tag: ""

cmd/manager/manager.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"sigs.k8s.io/controller-runtime/pkg/log/zap"
1919
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
2020

21-
"github.com/maxgio92/capsule-addon-flux/pkg/controller/serviceaccount"
22-
"github.com/maxgio92/capsule-addon-flux/pkg/indexer"
21+
"github.com/projectcapsule/capsule-addon-flux/pkg/controller/serviceaccount"
22+
"github.com/projectcapsule/capsule-addon-flux/pkg/indexer"
2323
)
2424

2525
type Options struct {

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/maxgio92/capsule-addon-flux/cmd/manager"
4+
"github.com/projectcapsule/capsule-addon-flux/cmd/manager"
55
"github.com/spf13/cobra"
66
)
77

e2e/charts/serviceaccount_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"k8s.io/client-go/tools/clientcmd"
1818
"time"
1919

20-
"github.com/maxgio92/capsule-addon-flux/pkg/controller/serviceaccount"
20+
"github.com/projectcapsule/capsule-addon-flux/pkg/controller/serviceaccount"
2121
)
2222

2323
var _ = Describe("Creating a new ServiceAccount", func() {

e2e/charts/suite_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package charts
44

55
import (
66
"fmt"
7-
"github.com/maxgio92/capsule-addon-flux/e2e/utils"
7+
"github.com/projectcapsule/capsule-addon-flux/e2e/utils"
88
"os"
99
"testing"
1010
"time"

e2e/serviceaccount_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"k8s.io/client-go/tools/clientcmd"
1818
"time"
1919

20-
"github.com/maxgio92/capsule-addon-flux/pkg/controller/serviceaccount"
20+
"github.com/projectcapsule/capsule-addon-flux/pkg/controller/serviceaccount"
2121
)
2222

2323
var _ = Describe("Creating a new ServiceAccount", func() {

e2e/suite_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"sigs.k8s.io/controller-runtime/pkg/client/config"
2424
"sigs.k8s.io/controller-runtime/pkg/log/zap"
2525

26-
cmd "github.com/maxgio92/capsule-addon-flux/cmd/manager"
27-
"github.com/maxgio92/capsule-addon-flux/e2e/utils"
26+
cmd "github.com/projectcapsule/capsule-addon-flux/cmd/manager"
27+
"github.com/projectcapsule/capsule-addon-flux/e2e/utils"
2828
)
2929

3030
const (

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/maxgio92/capsule-addon-flux
1+
module github.com/projectcapsule/capsule-addon-flux
22

33
go 1.21
44

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/maxgio92/capsule-addon-flux/cmd"
7+
"github.com/projectcapsule/capsule-addon-flux/cmd"
88
)
99

1010
func main() {

0 commit comments

Comments
 (0)