Skip to content

Commit 3d3aee9

Browse files
committed
♻️ refactor name
modified: PROJECT; modified: README.md; modified: go copy.mod; modified: go.mod; modified: main.go
1 parent b7fd939 commit 3d3aee9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

PROJECT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
domain: auto.request.operator
22
layout:
33
- go.kubebuilder.io/v3
4-
projectName: auto-request-operator
5-
repo: github.com/jatalocks/auto-request-operator
4+
projectName: kube-reqsizer
5+
repo: github.com/jatalocks/kube-reqsizer
66
version: "3"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# auto-request-operator
1+
# kube-reqsizer
22
// TODO(user): Add simple overview of use/purpose
33

44
## Description
@@ -18,13 +18,13 @@ kubectl apply -f config/samples/
1818
2. Build and push your image to the location specified by `IMG`:
1919

2020
```sh
21-
make docker-build docker-push IMG=<some-registry>/auto-request-operator:tag
21+
make docker-build docker-push IMG=<some-registry>/kube-reqsizer:tag
2222
```
2323

2424
3. Deploy the controller to the cluster with the image specified by `IMG`:
2525

2626
```sh
27-
make deploy IMG=<some-registry>/auto-request-operator:tag
27+
make deploy IMG=<some-registry>/kube-reqsizer:tag
2828
```
2929

3030
### Uninstall CRDs

go copy.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jatalocks/auto-request-operator
1+
module github.com/jatalocks/kube-reqsizer
22

33
go 1.19
44

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jatalocks/auto-request-operator
1+
module github.com/jatalocks/kube-reqsizer
22

33
go 1.19
44

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
2424
// to ensure that exec-entrypoint and run can make use of them.
25-
"github.com/jatalocks/auto-request-operator/controllers"
25+
"github.com/jatalocks/kube-reqsizer/controllers"
2626
"github.com/labstack/gommon/log"
2727
"k8s.io/client-go/kubernetes"
2828
_ "k8s.io/client-go/plugin/pkg/client/auth"
@@ -79,7 +79,7 @@ func main() {
7979
Port: 9443,
8080
HealthProbeBindAddress: probeAddr,
8181
LeaderElection: enableLeaderElection,
82-
LeaderElectionID: "d84d636a.padok.fr",
82+
LeaderElectionID: "d84d636a.kube-reqsizer",
8383
})
8484
if err != nil {
8585
setupLog.Error(err, "unable to start manager")

0 commit comments

Comments
 (0)