Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit f6d258a

Browse files
🌱 Make consistent naming for SovereignCloudStack organization (#150)
* Make consistent naming for SovereignCloudStack organization Signed-off-by: michal.gubricky <[email protected]> * Update hack/version.sh Co-authored-by: Roman Hros <[email protected]> Signed-off-by: Michal Gubricky <[email protected]> * Rename csmctl to csctl Signed-off-by: michal.gubricky <[email protected]> --------- Signed-off-by: michal.gubricky <[email protected]> Signed-off-by: Michal Gubricky <[email protected]> Co-authored-by: Roman Hros <[email protected]>
1 parent 2b52f4a commit f6d258a

18 files changed

+34
-34
lines changed

.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/cluster-stack-provider-openstack//.github/renovate/commitMessage.json5",
11-
"github>sovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/approval.json5",
12-
"github>sovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/golang.json5",
13-
"github>sovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/groups.json5",
14-
"github>sovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/labels.json5",
15-
"github>sovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/regexManagers.json5"
10+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/commitMessage.json5",
11+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/approval.json5",
12+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/golang.json5",
13+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/groups.json5",
14+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.github/renovate/labels.json5",
15+
"github>SovereignCloudStack/cluster-stack-provider-openstack//.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/cluster-stack-provider-openstack"],
23+
repositories: ["SovereignCloudStack/cluster-stack-provider-openstack"],
2424
ignorePaths: [
2525
"**/vendor/**",
2626
"**/test/**",

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

Lines changed: 1 addition & 1 deletion
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/cluster-stack-provider-openstack'
28+
if: github.repository == 'SovereignCloudStack/cluster-stack-provider-openstack'
2929
name: Renovate
3030
runs-on: ubuntu-latest
3131
steps:

PROJECT

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ domain: clusterstack.x-k8s.io
66
layout:
77
- go.kubebuilder.io/v4
88
projectName: cspo
9-
repo: github.com/sovereignCloudStack/cluster-stack-provider-openstack
9+
repo: github.com/SovereignCloudStack/cluster-stack-provider-openstack
1010
resources:
1111
- api:
1212
crdVersion: v1
@@ -15,7 +15,7 @@ resources:
1515
domain: clusterstack.x-k8s.io
1616
group: infrastructure.clusterstack.x-k8s.io
1717
kind: OpenStackClusterStackRelease
18-
path: github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
18+
path: github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
1919
version: v1alpha1
2020
- api:
2121
crdVersion: v1
@@ -24,7 +24,7 @@ resources:
2424
domain: clusterstack.x-k8s.io
2525
group: infrastructure.clusterstack.x-k8s.io
2626
kind: OpenStackClusterStackReleaseTemplate
27-
path: github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
27+
path: github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
2828
version: v1alpha1
2929
- api:
3030
crdVersion: v1
@@ -33,6 +33,6 @@ resources:
3333
domain: clusterstack.x-k8s.io
3434
group: infrastructure.clusterstack.x-k8s.io
3535
kind: OpenStackNodeImageRelease
36-
path: github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
36+
path: github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1
3737
version: v1alpha1
3838
version: "3"

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ COPY local_cso.yaml /local_cso.yaml
7575

7676
def deploy_cso():
7777
version = settings.get("cso_version")
78-
cso_uri = "https://github.com/sovereignCloudStack/cluster-stack-operator/releases/download/{}/cso-infrastructure-components.yaml".format(version)
78+
cso_uri = "https://github.com/SovereignCloudStack/cluster-stack-operator/releases/download/{}/cso-infrastructure-components.yaml".format(version)
7979
cmd = "curl -sSL {} | {} | kubectl apply -f -".format(cso_uri, envsubst_cmd)
8080
local(cmd, quiet = True)
8181

cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525

2626
githubclient "github.com/SovereignCloudStack/cluster-stack-operator/pkg/github/client"
2727
"github.com/SovereignCloudStack/cluster-stack-operator/pkg/github/client/fake"
28-
apiv1alpha1 "github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
29-
"github.com/sovereignCloudStack/cluster-stack-provider-openstack/internal/controller"
28+
apiv1alpha1 "github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
29+
"github.com/SovereignCloudStack/cluster-stack-provider-openstack/internal/controller"
3030
"k8s.io/apimachinery/pkg/runtime"
3131
runtimeutils "k8s.io/apimachinery/pkg/util/runtime"
3232
"k8s.io/client-go/kubernetes/scheme"

docs/develop.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ You should make sure that everything in the UI looks green. If not, you can trig
2828

2929
### Applying ClusterStack
3030

31-
When you start your tilt setup then the ClusterStack manifest gets copied from `config/cspo` directory to root of your repository. In order to apply the ClusterStack to the running local development cluster, you can click on the tilt UI. There should a click on the top-right hand side that is named as `apply-clusterstack` if you hover over it.
32-
Once the ClusterStack is applied wait for the ClusterStack and ClusterStackRelease object to be ready. In case your ClusterStack shows that it is ready, you can deploy a workload cluster.
31+
When you start your tilt setup then the ClusterStack manifest gets copied from `config/cspo` directory to root of your repository. In order to apply the ClusterStack to the running local development cluster, you can click on the tilt UI. There should a click on the top-right hand side that is named as `apply-clusterstack` if you hover over it.
32+
Once the ClusterStack is applied wait for the ClusterStack and ClusterStackRelease object to be ready. In case your ClusterStack shows that it is ready, you can deploy a workload cluster.
3333

3434
### Creating workload cluster
3535

@@ -86,7 +86,7 @@ Downloading cluster-stacks can be achieved by many ways but below is a simple wa
8686
```bash
8787
mkdir -p .release/openstack-scs-1-27-v1/
8888
cd .release/openstack-scs-1-27-v1
89-
gh release download --repo sovereigncloudstack/cluster-stacks openstack-scs-1-27-v1
89+
gh release download --repo SovereignCloudStack/cluster-stacks openstack-scs-1-27-v1
9090
```
9191

9292
Change the repo and tag as per the requirement. You can also download it directly from browser and move it to `.release` directory.
@@ -102,6 +102,6 @@ $ tree .release/openstack-scs-1-27-v1/
102102
```
103103

104104
> [!IMPORTANT]
105-
There's an alternative way to get clusterstacks using [csmctl](https://github.com/sovereigncloudstack/csmctl). You can follow the README of csmctl for specific instructions and a good quickstart.
105+
There's an alternative way to get clusterstacks using [csctl](https://github.com/SovereignCloudStack/csctl). You can follow the README of csctl for specific instructions and a good quickstart.
106106

107-
You can use `csmctl create` subcommand to create clusterstack locally. You'll need a csmctl.yaml file in the cluster-stack configuration directory. Please read more about creating configuration file for csmctl in the csmctl docs.
107+
You can use `csctl create` subcommand to create clusterstack locally. You'll need a csctl.yaml file in the cluster-stack configuration directory. Please read more about creating configuration file for csctl in the csctl docs.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sovereignCloudStack/cluster-stack-provider-openstack
1+
module github.com/SovereignCloudStack/cluster-stack-provider-openstack
22

33
go 1.21.6
44

hack/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ version::ldflags() {
7777
local key=${1}
7878
local val=${2}
7979
ldflags+=(
80-
"-X 'github.com/sovereignCloudStack/cluster-stack-provider-openstack/pkg/csoversion.${key}=${val}'"
80+
"-X 'github.com/SovereignCloudStack/cluster-stack-provider-openstack/pkg/cspoversion.${key}=${val}'"
8181
)
8282
}
8383

internal/controller/openstackclusterstackrelease_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828

2929
githubclient "github.com/SovereignCloudStack/cluster-stack-operator/pkg/github/client"
3030
"github.com/SovereignCloudStack/cluster-stack-operator/pkg/release"
31-
apiv1alpha1 "github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
31+
apiv1alpha1 "github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
3232
apierrors "k8s.io/apimachinery/pkg/api/errors"
3333
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3434
"k8s.io/apimachinery/pkg/runtime"

internal/controller/openstackclusterstackrelease_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ import (
2525
"time"
2626

2727
githubmocks "github.com/SovereignCloudStack/cluster-stack-operator/pkg/github/client/mocks"
28+
apiv1alpha1 "github.com/SovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
2829
"github.com/google/go-github/v52/github"
2930
"github.com/gophercloud/gophercloud/v2/openstack/imageservice/v2/images"
3031
. "github.com/onsi/ginkgo/v2"
3132
. "github.com/onsi/gomega"
32-
apiv1alpha1 "github.com/sovereignCloudStack/cluster-stack-provider-openstack/api/v1alpha1"
3333
"github.com/stretchr/testify/assert"
3434
corev1 "k8s.io/api/core/v1"
3535
apierrors "k8s.io/apimachinery/pkg/api/errors"

0 commit comments

Comments
 (0)