File tree 14 files changed +23
-23
lines changed
charts/capsule-addon-fluxcd
14 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
publish-helm :
16
16
# Skip this Release on forks
17
- if : github.repository_owner == 'maxgio92 '
17
+ if : github.repository_owner == 'projectcapsule '
18
18
runs-on : ubuntu-20.04
19
19
steps :
20
20
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ linters-settings:
5
5
sections :
6
6
- standard # Captures all standard packages if they do not match another section.
7
7
- 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.
9
9
goconst :
10
10
min-len : 2
11
11
min-occurrences : 3
Original file line number Diff line number Diff line change 49
49
# https://goreleaser.com/customization/ko/?h=kos
50
50
kos :
51
51
- base_image : cgr.dev/chainguard/static
52
- repository : ghcr.io/maxgio92 /capsule-addon-fluxcd
52
+ repository : ghcr.io/projectcapsule /capsule-addon-fluxcd
53
53
bare : true
54
54
tags :
55
55
- ' {{ .Version }}'
@@ -86,11 +86,11 @@ release:
86
86
87
87
Those were the changes on {{ .Tag }}!
88
88
89
- **Full Changelog**: https://github.com/maxgio92 /{{ .ProjectName }}/compare/{{ .PreviousTag }}...{{ .Tag }}
89
+ **Full Changelog**: https://github.com/projectcapsule /{{ .ProjectName }}/compare/{{ .PreviousTag }}...{{ .Tag }}
90
90
91
91
**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`
94
94
95
95
# Generate a GitHub release with a customized changelog.
96
96
changelog :
Original file line number Diff line number Diff line change 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 )
5
5
6
6
# Capsule addon for Flux CD
7
7
@@ -16,7 +16,7 @@ This way tenants can be provided Namespace-as-a-Service in a GitOps fashion.
16
16
## Install
17
17
18
18
``` 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
20
20
```
21
21
22
22
## How it works
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ A Helm chart for Kubernetes
11
11
| affinity | object | ` {} ` | |
12
12
| fullnameOverride | string | ` "" ` | |
13
13
| image.pullPolicy | string | ` "IfNotPresent" ` | |
14
- | image.repository | string | ` "ghcr.io/maxgio92 /capsule-addon-fluxcd" ` | |
14
+ | image.repository | string | ` "ghcr.io/projectcapsule /capsule-addon-fluxcd" ` | |
15
15
| image.tag | string | ` "" ` | |
16
16
| imagePullSecrets | list | ` [] ` | |
17
17
| livenessProbe | object | ` {"httpGet":{"path":"/healthz","port":10080}} ` | Configure the liveness probe using Deployment probe spec |
Original file line number Diff line number Diff line change 5
5
replicaCount : 1
6
6
7
7
image :
8
- repository : ghcr.io/maxgio92 /capsule-addon-fluxcd
8
+ repository : ghcr.io/projectcapsule /capsule-addon-fluxcd
9
9
pullPolicy : IfNotPresent
10
10
# Overrides the image tag whose default is the chart appVersion.
11
11
tag : " "
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import (
18
18
"sigs.k8s.io/controller-runtime/pkg/log/zap"
19
19
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
20
20
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"
23
23
)
24
24
25
25
type Options struct {
Original file line number Diff line number Diff line change 1
1
package cmd
2
2
3
3
import (
4
- "github.com/maxgio92 /capsule-addon-flux/cmd/manager"
4
+ "github.com/projectcapsule /capsule-addon-flux/cmd/manager"
5
5
"github.com/spf13/cobra"
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
"k8s.io/client-go/tools/clientcmd"
18
18
"time"
19
19
20
- "github.com/maxgio92 /capsule-addon-flux/pkg/controller/serviceaccount"
20
+ "github.com/projectcapsule /capsule-addon-flux/pkg/controller/serviceaccount"
21
21
)
22
22
23
23
var _ = Describe ("Creating a new ServiceAccount" , func () {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ package charts
4
4
5
5
import (
6
6
"fmt"
7
- "github.com/maxgio92 /capsule-addon-flux/e2e/utils"
7
+ "github.com/projectcapsule /capsule-addon-flux/e2e/utils"
8
8
"os"
9
9
"testing"
10
10
"time"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
"k8s.io/client-go/tools/clientcmd"
18
18
"time"
19
19
20
- "github.com/maxgio92 /capsule-addon-flux/pkg/controller/serviceaccount"
20
+ "github.com/projectcapsule /capsule-addon-flux/pkg/controller/serviceaccount"
21
21
)
22
22
23
23
var _ = Describe ("Creating a new ServiceAccount" , func () {
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
23
23
"sigs.k8s.io/controller-runtime/pkg/client/config"
24
24
"sigs.k8s.io/controller-runtime/pkg/log/zap"
25
25
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"
28
28
)
29
29
30
30
const (
Original file line number Diff line number Diff line change 1
- module github.com/maxgio92 /capsule-addon-flux
1
+ module github.com/projectcapsule /capsule-addon-flux
2
2
3
3
go 1.21
4
4
Original file line number Diff line number Diff line change 4
4
"fmt"
5
5
"os"
6
6
7
- "github.com/maxgio92 /capsule-addon-flux/cmd"
7
+ "github.com/projectcapsule /capsule-addon-flux/cmd"
8
8
)
9
9
10
10
func main () {
You can’t perform that action at this time.
0 commit comments