rename ontime.getontime.no to cloud.getontime.no
This commit is contained in:
4
Makefile
4
Makefile
@@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
|
|||||||
# This variable is used to construct full image tags for bundle and catalog images.
|
# This variable is used to construct full image tags for bundle and catalog images.
|
||||||
#
|
#
|
||||||
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
|
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
|
||||||
# getontime.no/ontime-operator-bundle:$VERSION and getontime.no/ontime-operator-catalog:$VERSION.
|
# getontime/ontime-operator-bundle:$VERSION and getontime/ontime-operator-catalog:$VERSION.
|
||||||
IMAGE_TAG_BASE ?= getontime.no/ontime-operator
|
IMAGE_TAG_BASE ?= getontime/ontime-operator
|
||||||
|
|
||||||
# BUNDLE_IMG defines the image:tag used for the bundle.
|
# BUNDLE_IMG defines the image:tag used for the bundle.
|
||||||
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
|
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
apiVersion: apiextensions.k8s.io/v1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: stages.ontime.getontime.no
|
name: stages.cloud.getontime.no
|
||||||
spec:
|
spec:
|
||||||
group: ontime.getontime.no
|
group: cloud.getontime.no
|
||||||
names:
|
names:
|
||||||
kind: Stage
|
kind: Stage
|
||||||
listKind: StageList
|
listKind: StageList
|
||||||
@@ -2,5 +2,5 @@
|
|||||||
# since it depends on service name and namespace that are out of this kustomize package.
|
# since it depends on service name and namespace that are out of this kustomize package.
|
||||||
# It should be run by config/default
|
# It should be run by config/default
|
||||||
resources:
|
resources:
|
||||||
- bases/ontime.getontime.no_stages.yaml
|
- bases/cloud.getontime.no_stages.yaml
|
||||||
# +kubebuilder:scaffold:crdkustomizeresource
|
# +kubebuilder:scaffold:crdkustomizeresource
|
||||||
|
|||||||
@@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
|||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
images:
|
images:
|
||||||
- name: controller
|
- name: controller
|
||||||
newName: git.jwetzell.com/jwetzell/ontime-operator
|
newName: controller
|
||||||
newTag: v0.1.1
|
newTag: latest
|
||||||
|
|||||||
@@ -29,10 +29,10 @@ rules:
|
|||||||
- create
|
- create
|
||||||
|
|
||||||
##
|
##
|
||||||
## Rules for ontime.getontime.no/v1, Kind: Stage
|
## Rules for cloud.getontime.no/v1, Kind: Stage
|
||||||
##
|
##
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages
|
- stages
|
||||||
- stages/status
|
- stages/status
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# This rule is not used by the project ontime-operator itself.
|
# This rule is not used by the project ontime-operator itself.
|
||||||
# It is provided to allow the cluster admin to help manage permissions for users.
|
# It is provided to allow the cluster admin to help manage permissions for users.
|
||||||
#
|
#
|
||||||
# Grants full permissions ('*') over ontime.getontime.no.
|
# Grants full permissions ('*') over cloud.getontime.no.
|
||||||
# This role is intended for users authorized to modify roles and bindings within the cluster,
|
# This role is intended for users authorized to modify roles and bindings within the cluster,
|
||||||
# enabling them to delegate specific permissions to other users or groups as needed.
|
# enabling them to delegate specific permissions to other users or groups as needed.
|
||||||
|
|
||||||
@@ -14,13 +14,13 @@ metadata:
|
|||||||
name: stage-admin-role
|
name: stage-admin-role
|
||||||
rules:
|
rules:
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages
|
- stages
|
||||||
verbs:
|
verbs:
|
||||||
- '*'
|
- '*'
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages/status
|
- stages/status
|
||||||
verbs:
|
verbs:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# This rule is not used by the project ontime-operator itself.
|
# This rule is not used by the project ontime-operator itself.
|
||||||
# It is provided to allow the cluster admin to help manage permissions for users.
|
# It is provided to allow the cluster admin to help manage permissions for users.
|
||||||
#
|
#
|
||||||
# Grants permissions to create, update, and delete resources within the ontime.getontime.no.
|
# Grants permissions to create, update, and delete resources within the cloud.getontime.no.
|
||||||
# This role is intended for users who need to manage these resources
|
# This role is intended for users who need to manage these resources
|
||||||
# but should not control RBAC or manage permissions for others.
|
# but should not control RBAC or manage permissions for others.
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ metadata:
|
|||||||
name: stage-editor-role
|
name: stage-editor-role
|
||||||
rules:
|
rules:
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages
|
- stages
|
||||||
verbs:
|
verbs:
|
||||||
@@ -26,7 +26,7 @@ rules:
|
|||||||
- update
|
- update
|
||||||
- watch
|
- watch
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages/status
|
- stages/status
|
||||||
verbs:
|
verbs:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# This rule is not used by the project ontime-operator itself.
|
# This rule is not used by the project ontime-operator itself.
|
||||||
# It is provided to allow the cluster admin to help manage permissions for users.
|
# It is provided to allow the cluster admin to help manage permissions for users.
|
||||||
#
|
#
|
||||||
# Grants read-only access to ontime.getontime.no resources.
|
# Grants read-only access to cloud.getontime.no resources.
|
||||||
# This role is intended for users who need visibility into these resources
|
# This role is intended for users who need visibility into these resources
|
||||||
# without permissions to modify them. It is ideal for monitoring purposes and limited-access viewing.
|
# without permissions to modify them. It is ideal for monitoring purposes and limited-access viewing.
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ metadata:
|
|||||||
name: stage-viewer-role
|
name: stage-viewer-role
|
||||||
rules:
|
rules:
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages
|
- stages
|
||||||
verbs:
|
verbs:
|
||||||
@@ -22,7 +22,7 @@ rules:
|
|||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ontime.getontime.no
|
- cloud.getontime.no
|
||||||
resources:
|
resources:
|
||||||
- stages/status
|
- stages/status
|
||||||
verbs:
|
verbs:
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
apiVersion: ontime.getontime.no/v1
|
apiVersion: cloud.getontime.no/v1
|
||||||
kind: Stage
|
kind: Stage
|
||||||
metadata:
|
metadata:
|
||||||
name: stage-sample
|
name: stage-sample
|
||||||
spec:
|
spec:
|
||||||
ontime:
|
ontime:
|
||||||
prefix: ""
|
prefix: "test"
|
||||||
version: 4.0.2
|
version: 4.0.2
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Use the 'create api' subcommand to add watches to this file.
|
# Use the 'create api' subcommand to add watches to this file.
|
||||||
- group: ontime.getontime.no
|
- group: cloud.getontime.no
|
||||||
version: v1
|
version: v1
|
||||||
kind: Stage
|
kind: Stage
|
||||||
chart: helm-charts/stage
|
chart: helm-charts/stage
|
||||||
|
|||||||
Reference in New Issue
Block a user