Skip to content

Commit 55532bd

Browse files
authored
rename the project to csctl (#77)
we want to rename the project to csctl given the client tool deals with cluster stacks. Signed-off-by: kranurag7 <[email protected]>
1 parent 6615e44 commit 55532bd

31 files changed

+148
-147
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ about: Tell us about a problem you are experiencing.
1919

2020
**Environment:**
2121

22-
- csmctl version: (use `csmctl version`)
22+
- csctl version: (use `csctl version`)
2323
- OS (e.g. from `/etc/os-release`):

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ about: Suggest an idea for this project.
1616

1717
**Environment:**
1818

19-
- csmctl version: (use `kubectl version`)
19+
- csctl version: (use `csctl version`)

.github/renovate.json5

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77
":semanticCommits",
88
"helpers:pinGitHubActionDigests",
99
"github>whitesource/merge-confidence:beta",
10-
"github>SovereignCloudStack/csmctl//.github/renovate/commitMessage.json5",
11-
"github>SovereignCloudStack/csmctl//.github/renovate/approval.json5",
12-
"github>SovereignCloudStack/csmctl//.github/renovate/golang.json5",
13-
"github>SovereignCloudStack/csmctl//.github/renovate/groups.json5",
14-
"github>SovereignCloudStack/csmctl//.github/renovate/labels.json5",
15-
"github>SovereignCloudStack/csmctl//.github/renovate/regexManagers.json5"
10+
"github>SovereignCloudStack/csctl//.github/renovate/commitMessage.json5",
11+
"github>SovereignCloudStack/csctl//.github/renovate/approval.json5",
12+
"github>SovereignCloudStack/csctl//.github/renovate/golang.json5",
13+
"github>SovereignCloudStack/csctl//.github/renovate/groups.json5",
14+
"github>SovereignCloudStack/csctl//.github/renovate/labels.json5",
15+
"github>SovereignCloudStack/csctl//.github/renovate/regexManagers.json5"
1616
],
1717
platform: "github",
1818
baseBranches: ["main"],
1919
onboarding: false,
2020
requireConfig: "ignored",
2121
timezone: "Europe/Berlin",
2222
// repo config
23-
repositories: ["SovereignCloudStack/csmctl"],
23+
repositories: ["SovereignCloudStack/csctl"],
2424
ignorePaths: [
2525
"**/vendor/**",
2626
"**/test/**",

.github/renovate/groups.json5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
description: "Update Builder Image",
55
groupName: "Builder Image",
6-
groupSlug: "csmctl-builder-image",
6+
groupSlug: "csctl-builder-image",
77
commitMessageTopic: "Builder Image group",
88
matchPaths: ["images/builder/**"],
99
separateMajorMinor: false,
@@ -56,10 +56,10 @@
5656
groupSlug: "golang-deps",
5757
},
5858
{
59-
description: "disable update of csmctl builder image",
59+
description: "disable update of csctl builder image",
6060
matchManagers: ["github-actions"],
6161
matchUpdateTypes: ["major", "minor", "patch"],
62-
matchPackageNames: ["ghcr.io/sovereigncloudstack/csmctl-builder"],
62+
matchPackageNames: ["ghcr.io/sovereigncloudstack/csctl-builder"],
6363
enabled: false,
6464
},
6565
]

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build csmctl binary
1+
name: Build csctl binary
22
# yamllint disable rule:line-length
33
on: # yamllint disable-line rule:truthy
44
push:
@@ -19,4 +19,4 @@ jobs:
1919
# Load Golang cache build from GitHub
2020
- name: build go binary
2121
run: |
22-
go build -o csmctl main.go
22+
go build -o csctl main.go

.github/workflows/builder-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
file: ./images/builder/Dockerfile
3333
context: ./images/builder
3434
push: true
35-
tags: ghcr.io/sovereigncloudstack/csmctl-builder:0.2.0
35+
tags: ghcr.io/sovereigncloudstack/csctl-builder:0.2.0

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: github.event_name != 'pull_request_target' || !github.event.pull_request.draft
2020
runs-on: ubuntu-latest
2121
container:
22-
image: ghcr.io/sovereigncloudstack/csmctl-builder:0.2.0
22+
image: ghcr.io/sovereigncloudstack/csctl-builder:0.2.0
2323
credentials:
2424
username: ${{ github.actor }}
2525
password: ${{ secrets.github_token }}

.github/workflows/schedule-link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
link-checker:
99
name: Link Checker
1010
runs-on: ubuntu-latest
11-
if: github.repository == 'SovereignCloudStack/csmctl'
11+
if: github.repository == 'SovereignCloudStack/csctl'
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/schedule-update-bot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
# yamllint disable rule:line-length
2626
jobs:
2727
update-bot:
28-
if: github.repository == 'SovereignCloudStack/csmctl'
28+
if: github.repository == 'SovereignCloudStack/csctl'
2929
name: Renovate
3030
runs-on: ubuntu-latest
3131
steps:
@@ -49,7 +49,7 @@ jobs:
4949
env:
5050
RENOVATE_HOST_RULES: '[{"hostType": "docker", "matchHost": "ghcr.io", "username": "${{ github.actor }}", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
5151
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '[".*"]'
52-
BUILDER_IMAGE: 'ghcr.io/sovereigncloudstack/csmctl-builder'
52+
BUILDER_IMAGE: 'ghcr.io/sovereigncloudstack/csctl-builder'
5353
RENOVATE_POST_UPGRADE_TASKS: '{ commands: ["BUILD_IMAGE_TOKEN=${{ secrets.GITHUB_TOKEN }} BUILD_IMAGE_USER=${{ github.actor }} CI=true ./hack/upgrade-builder-image.sh"], fileFilters: ["Makefile", ".github/**/*.yml", ".builder-image-version.txt", ".github/**/*.yaml"], executionMode: "branch"}'
5454
with:
5555
configurationFile: ${{ env.RENOVATE_CONFIG_FILE }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ temp
1616
.reports
1717
# build and release
1818
dist
19-
csmctl
19+
csctl
2020
tmp/
2121
releases/

0 commit comments

Comments
 (0)