Skip to content

Commit 2e56c07

Browse files
committed
Return netcraccker.com group
1 parent 777fc96 commit 2e56c07

23 files changed

+43
-43
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
3737
# This variable is used to construct full image tags for bundle and catalog images.
3838
#
3939
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
40-
# qubership.org/zookeeper-service-operator-bundle:$VERSION and qubership.org/zookeeper-service-operator-catalog:$VERSION.
41-
IMAGE_TAG_BASE ?= qubership.org/zookeeper-service-operator
40+
# netcracker.com/zookeeper-service-operator-bundle:$VERSION and netcracker.com/zookeeper-service-operator-catalog:$VERSION.
41+
IMAGE_TAG_BASE ?= netcracker.com/zookeeper-service-operator
4242

4343
# BUNDLE_IMG defines the image:tag used for the bundle.
4444
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
@@ -87,9 +87,9 @@ help: ## Display this help.
8787
.PHONY: manifests
8888
manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects.
8989
$(CONTROLLER_GEN) rbac:roleName=manager-role crd:maxDescLen=0 webhook paths="./..." output:crd:artifacts:config=config/crd/bases
90-
sed -i "/annotations:/a\ crd.qubership.org\/version: $(CRD_VERSION)" config/crd/bases/qubership.org_zookeeperservices.yaml
90+
sed -i "/annotations:/a\ crd.netcracker.com\/version: $(CRD_VERSION)" config/crd/bases/netcracker.com_zookeeperservices.yaml
9191
$(CONTROLLER_GEN) rbac:roleName=manager-role crd:crdVersions=v1beta1,trivialVersions=false,maxDescLen=0 webhook paths="./..." output:crd:artifacts:config=config/crd/old
92-
sed -i "/annotations:/a\ crd.qubership.org\/version: $(CRD_VERSION)" config/crd/old/qubership.org_zookeeperservices.yaml
92+
sed -i "/annotations:/a\ crd.netcracker.com\/version: $(CRD_VERSION)" config/crd/old/netcracker.com_zookeeperservices.yaml
9393

9494
.PHONY: generate
9595
generate: controller-gen ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
@@ -243,5 +243,5 @@ capabilities: capmd-gen
243243
capmd-gen:
244244
rm -rf ./$(CAPMDGEN_DIR) && \
245245
mkdir -p $(CAPMDGEN_DIR) && \
246-
git clone git@git.qubership.org:prod.platform.cloud.infra/internal/capmdgen.git ./$(CAPMDGEN_DIR) && \
246+
git clone git@git.netcracker.com:prod.platform.cloud.infra/internal/capmdgen.git ./$(CAPMDGEN_DIR) && \
247247
cd $(CAPMDGEN_DIR) && go build -o ./capmdgen

PROJECT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
domain: qubership.org
1+
domain: netcracker.com
22
layout:
33
- go.kubebuilder.io/v3
44
plugins:
@@ -11,7 +11,7 @@ resources:
1111
crdVersion: v1
1212
namespaced: true
1313
controller: true
14-
domain: qubership.org
14+
domain: netcracker.com
1515
kind: ZooKeeperService
1616
path: github.com/Netcracker/qubership-zookeeper/operator/api/v1
1717
version: v1

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Security Reporting Process
22

3-
Please, report any security issue to `opensourcegroup@qubership.org` where the issue will be triaged appropriately.
3+
Please, report any security issue to `opensourcegroup@netcracker.com` where the issue will be triaged appropriately.
44

5-
If you know of a publicly disclosed security vulnerability please IMMEDIATELY email `opensourcegroup@qubership.org`
5+
If you know of a publicly disclosed security vulnerability please IMMEDIATELY email `opensourcegroup@netcracker.com`
66
to inform the team about the vulnerability, so we may start the patch, release, and communication process.
77

88
# Security Release Process

docs/internal/operator-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ If API model has incompatible changes, new application version should be release
100100
make manifests
101101
```
102102

103-
Make sure generated CRD `operator/config/crd/bases/qubership.org_zookeeperservices.yaml` contains new version.
103+
Make sure generated CRD `operator/config/crd/bases/netcracker.com_zookeeperservices.yaml` contains new version.
104104

105105
7. Copy content of new generated CRD to `operator/charts/helm/zookeeper-service/crds/crd.yaml` file.
106106

@@ -110,10 +110,10 @@ If API model has incompatible changes, new application version should be release
110110

111111
_operator-sdk_:
112112

113-
* `operator-sdk create api --group qubership.org --version <new_version> --kind=ZooKeeperService --resource`
113+
* `operator-sdk create api --group netcracker.com --version <new_version> --kind=ZooKeeperService --resource`
114114
is the command to add a new custom resource definition API called ZooKeeperService, with APIVersion
115-
`qubership.org/<new_version>` and Kind `ZooKeeperService`.
116-
* `operator-sdk create api --group qubership.org --version <new_version> --kind=ZooKeeperService --controller`
115+
`netcracker.com/<new_version>` and Kind `ZooKeeperService`.
116+
* `operator-sdk create api --group netcracker.com --version <new_version> --kind=ZooKeeperService --controller`
117117
is the command to add a new controller to the project that will watch and reconcile the ZooKeeperService resource.
118118
* `make generate` is the command to update the generated code for the ZooKeeperService resource.
119119
You should run this command every time when you change `zookeeperservice_types.go`.

docs/public/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To avoid using `cluster-wide` rights during the deployment, the following condit
3434
```yaml
3535
rules:
3636
- apiGroups:
37-
- qubership.org
37+
- netcracker.com
3838
resources:
3939
- "*"
4040
verbs:

operator/charts/helm/zookeeper-service/crds/crd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apiVersion: apiextensions.k8s.io/v1
44
kind: CustomResourceDefinition
55
metadata:
66
annotations:
7-
crd.qubership.org/version: 0.9.0
7+
crd.netcracker.com/version: 0.9.0
88
controller-gen.kubebuilder.io/version: v0.6.2
99
creationTimestamp: null
10-
name: zookeeperservices.qubership.org
10+
name: zookeeperservices.netcracker.com
1111
spec:
12-
group: qubership.org
12+
group: netcracker.com
1313
names:
1414
kind: ZooKeeperService
1515
listKind: ZooKeeperServiceList

operator/charts/helm/zookeeper-service/templates/cr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: qubership.org/v1
1+
apiVersion: netcracker.com/v1
22
kind: ZooKeeperService
33
metadata:
44
name: {{ template "zookeeper.name" . }}

operator/charts/helm/zookeeper-service/templates/role.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: {{ template "zookeeper.name" . }}-service-operator
77
rules:
88
- apiGroups:
9-
- qubership.org
9+
- netcracker.com
1010
resources:
1111
- "*"
1212
verbs:

operator/charts/helm/zookeeper-service/templates/zookeeper-backup-daemon-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: {{ template "zookeeper.name" . }}-backup-daemon-secret
88
{{- if eq (include "vault.enabled" .) "true" }}
99
annotations:
10-
vault.qubership.org/refresh-credentials: {{ default "false" .Values.vaultSecretManagement.refreshCredentials | quote }}
10+
vault.netcracker.com/refresh-credentials: {{ default "false" .Values.vaultSecretManagement.refreshCredentials | quote }}
1111
{{- end }}
1212
type: Opaque
1313
stringData:

operator/charts/helm/zookeeper-service/templates/zookeeper-monitoring-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: {{ template "zookeeper.name" . }}-monitoring-secret
88
{{- if eq (include "vault.enabled" .) "true" }}
99
annotations:
10-
vault.qubership.org/refresh-credentials: {{ default "false" .Values.vaultSecretManagement.refreshCredentials | quote }}
10+
vault.netcracker.com/refresh-credentials: {{ default "false" .Values.vaultSecretManagement.refreshCredentials | quote }}
1111
{{- end }}
1212
type: Opaque
1313
stringData:

0 commit comments

Comments
 (0)