Skip to content

Commit ec49d7f

Browse files
committed
*: rename operator-framework -> operatorframework
1 parent 4cb0a19 commit ec49d7f

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: "2"
2-
domain: sdk.operator-framework.io
2+
domain: sdk.operatorframework.io
33
repo: github.com/joelanford/helm-operator
44
resources:
55
- group: apache

config/crd/bases/apache.sdk.operator-framework.io_tomcats.yaml renamed to config/crd/bases/apache.sdk.operatorframework.io_tomcats.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ metadata:
66
annotations:
77
controller-gen.kubebuilder.io/version: v0.2.4
88
creationTimestamp: null
9-
name: tomcats.apache.sdk.operator-framework.io
9+
name: tomcats.apache.sdk.operatorframework.io
1010
spec:
11-
group: apache.sdk.operator-framework.io
11+
group: apache.sdk.operatorframework.io
1212
names:
1313
kind: Tomcat
1414
listKind: TomcatList

config/crd/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# since it depends on service name and namespace that are out of this kustomize package.
33
# It should be run by config/default
44
resources:
5-
- bases/apache.sdk.operator-framework.io_tomcats.yaml
5+
- bases/apache.sdk.operatorframework.io_tomcats.yaml
66
# +kubebuilder:scaffold:crdkustomizeresource
77

88
patchesStrategicMerge:

config/crd/patches/cainjection_in_tomcats.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: CustomResourceDefinition
55
metadata:
66
annotations:
77
certmanager.k8s.io/inject-ca-from: $(CERTIFICATE_NAMESPACE)/$(CERTIFICATE_NAME)
8-
name: tomcats.apache.sdk.operator-framework.io
8+
name: tomcats.apache.sdk.operatorframework.io

config/crd/patches/webhook_in_tomcats.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
apiVersion: apiextensions.k8s.io/v1beta1
44
kind: CustomResourceDefinition
55
metadata:
6-
name: tomcats.apache.sdk.operator-framework.io
6+
name: tomcats.apache.sdk.operatorframework.io
77
spec:
88
conversion:
99
strategy: Webhook

config/rbac/role.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: manager-role
55
rules:
66
- apiGroups:
7-
- apache.sdk.operator-framework.io
7+
- apache.sdk.operatorframework.io
88
resources:
99
- tomcats
1010
verbs:
@@ -16,7 +16,7 @@ rules:
1616
- update
1717
- watch
1818
- apiGroups:
19-
- apache.sdk.operator-framework.io
19+
- apache.sdk.operatorframework.io
2020
resources:
2121
- tomcats/status
2222
verbs:

config/samples/apache_v1_tomcat.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
apiVersion: apache.sdk.operator-framework.io/v1
1+
apiVersion: apache.sdk.operatorframework.io/v1
22
kind: Tomcat
33
metadata:
44
name: tomcat-sample
55
annotations:
6-
helm.sdk.operator-framework.io/upgrade-force: "true"
7-
helm.sdk.operator-framework.io/install-disable-hooks: "true"
8-
helm.sdk.operator-framework.io/upgrade-disable-hooks: "true"
9-
helm.sdk.operator-framework.io/uninstall-disable-hooks: "true"
6+
helm.sdk.operatorframework.io/upgrade-force: "true"
7+
helm.sdk.operatorframework.io/install-disable-hooks: "true"
8+
helm.sdk.operatorframework.io/upgrade-disable-hooks: "true"
9+
helm.sdk.operatorframework.io/uninstall-disable-hooks: "true"
1010
spec:
1111
replicaCount: 1
1212
image:

pkg/annotation/annotation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type InstallDisableHooks struct {
3030
var _ Install = &InstallDisableHooks{}
3131

3232
const (
33-
DefaultDomain = "helm.sdk.operator-framework.io"
33+
DefaultDomain = "helm.sdk.operatorframework.io"
3434
DefaultInstallDisableHooksName = DefaultDomain + "/install-disable-hooks"
3535
DefaultUpgradeDisableHooksName = DefaultDomain + "/upgrade-disable-hooks"
3636
DefaultUninstallDisableHooksName = DefaultDomain + "/uninstall-disable-hooks"

watches.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- group: apache.sdk.operator-framework.io
1+
- group: apache.sdk.operatorframework.io
22
version: v1
33
kind: Tomcat
44
chart: ./helm-charts/tomcat

0 commit comments

Comments
 (0)