Skip to content

Commit 04efd76

Browse files
committed
create release v0.2.0-rc.0
1 parent 335c504 commit 04efd76

33 files changed

Lines changed: 4520 additions & 285 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.1.10
6+
VERSION ?= 0.2.0-rc.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: kuberoaddonmongodbs.application.kubero.dev
6+
spec:
7+
group: application.kubero.dev
8+
names:
9+
kind: KuberoAddonMongodb
10+
listKind: KuberoAddonMongodbList
11+
plural: kuberoaddonmongodbs
12+
singular: kuberoaddonmongodb
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: KuberoAddonMongodb is the Schema for the kuberoaddonmongodbs
19+
API
20+
properties:
21+
apiVersion:
22+
description: 'APIVersion defines the versioned schema of this representation
23+
of an object. Servers should convert recognized schemas to the latest
24+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25+
type: string
26+
kind:
27+
description: 'Kind is a string value representing the REST resource this
28+
object represents. Servers may infer this from the endpoint the client
29+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
type: string
31+
metadata:
32+
type: object
33+
spec:
34+
description: Spec defines the desired state of KuberoAddonMongodb
35+
type: object
36+
x-kubernetes-preserve-unknown-fields: true
37+
status:
38+
description: Status defines the observed state of KuberoAddonMongodb
39+
type: object
40+
x-kubernetes-preserve-unknown-fields: true
41+
type: object
42+
served: true
43+
storage: true
44+
subresources:
45+
status: {}
46+
status:
47+
acceptedNames:
48+
kind: ""
49+
plural: ""
50+
conditions: null
51+
storedVersions: null
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: kuberoaddonmysqls.application.kubero.dev
6+
spec:
7+
group: application.kubero.dev
8+
names:
9+
kind: KuberoAddonMysql
10+
listKind: KuberoAddonMysqlList
11+
plural: kuberoaddonmysqls
12+
singular: kuberoaddonmysql
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: KuberoAddonMysql is the Schema for the kuberoaddonmysqls API
19+
properties:
20+
apiVersion:
21+
description: 'APIVersion defines the versioned schema of this representation
22+
of an object. Servers should convert recognized schemas to the latest
23+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24+
type: string
25+
kind:
26+
description: 'Kind is a string value representing the REST resource this
27+
object represents. Servers may infer this from the endpoint the client
28+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
29+
type: string
30+
metadata:
31+
type: object
32+
spec:
33+
description: Spec defines the desired state of KuberoAddonMysql
34+
type: object
35+
x-kubernetes-preserve-unknown-fields: true
36+
status:
37+
description: Status defines the observed state of KuberoAddonMysql
38+
type: object
39+
x-kubernetes-preserve-unknown-fields: true
40+
type: object
41+
served: true
42+
storage: true
43+
subresources:
44+
status: {}
45+
status:
46+
acceptedNames:
47+
kind: ""
48+
plural: ""
49+
conditions: null
50+
storedVersions: null
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: kuberoaddonpostgres.application.kubero.dev
6+
spec:
7+
group: application.kubero.dev
8+
names:
9+
kind: KuberoAddonPostgres
10+
listKind: KuberoAddonPostgresList
11+
plural: kuberoaddonpostgres
12+
singular: kuberoaddonpostgres
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: KuberoAddonPostgres is the Schema for the kuberoaddonpostgres
19+
API
20+
properties:
21+
apiVersion:
22+
description: 'APIVersion defines the versioned schema of this representation
23+
of an object. Servers should convert recognized schemas to the latest
24+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25+
type: string
26+
kind:
27+
description: 'Kind is a string value representing the REST resource this
28+
object represents. Servers may infer this from the endpoint the client
29+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
type: string
31+
metadata:
32+
type: object
33+
spec:
34+
description: Spec defines the desired state of KuberoAddonPostgres
35+
type: object
36+
x-kubernetes-preserve-unknown-fields: true
37+
status:
38+
description: Status defines the observed state of KuberoAddonPostgres
39+
type: object
40+
x-kubernetes-preserve-unknown-fields: true
41+
type: object
42+
served: true
43+
storage: true
44+
subresources:
45+
status: {}
46+
status:
47+
acceptedNames:
48+
kind: ""
49+
plural: ""
50+
conditions: null
51+
storedVersions: null
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: kuberoaddonrabbitmqs.application.kubero.dev
6+
spec:
7+
group: application.kubero.dev
8+
names:
9+
kind: KuberoAddonRabbitmq
10+
listKind: KuberoAddonRabbitmqList
11+
plural: kuberoaddonrabbitmqs
12+
singular: kuberoaddonrabbitmq
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: KuberoAddonRabbitmq is the Schema for the kuberoaddonrabbitmqs
19+
API
20+
properties:
21+
apiVersion:
22+
description: 'APIVersion defines the versioned schema of this representation
23+
of an object. Servers should convert recognized schemas to the latest
24+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25+
type: string
26+
kind:
27+
description: 'Kind is a string value representing the REST resource this
28+
object represents. Servers may infer this from the endpoint the client
29+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
type: string
31+
metadata:
32+
type: object
33+
spec:
34+
description: Spec defines the desired state of KuberoAddonRabbitmq
35+
type: object
36+
x-kubernetes-preserve-unknown-fields: true
37+
status:
38+
description: Status defines the observed state of KuberoAddonRabbitmq
39+
type: object
40+
x-kubernetes-preserve-unknown-fields: true
41+
type: object
42+
served: true
43+
storage: true
44+
subresources:
45+
status: {}
46+
status:
47+
acceptedNames:
48+
kind: ""
49+
plural: ""
50+
conditions: null
51+
storedVersions: null
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
creationTimestamp: null
5+
name: kuberoaddonredis.application.kubero.dev
6+
spec:
7+
group: application.kubero.dev
8+
names:
9+
kind: KuberoAddonRedis
10+
listKind: KuberoAddonRedisList
11+
plural: kuberoaddonredis
12+
singular: kuberoaddonredis
13+
scope: Namespaced
14+
versions:
15+
- name: v1alpha1
16+
schema:
17+
openAPIV3Schema:
18+
description: KuberoAddonRedis is the Schema for the kuberoaddonredis API
19+
properties:
20+
apiVersion:
21+
description: 'APIVersion defines the versioned schema of this representation
22+
of an object. Servers should convert recognized schemas to the latest
23+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24+
type: string
25+
kind:
26+
description: 'Kind is a string value representing the REST resource this
27+
object represents. Servers may infer this from the endpoint the client
28+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
29+
type: string
30+
metadata:
31+
type: object
32+
spec:
33+
description: Spec defines the desired state of KuberoAddonRedis
34+
type: object
35+
x-kubernetes-preserve-unknown-fields: true
36+
status:
37+
description: Status defines the observed state of KuberoAddonRedis
38+
type: object
39+
x-kubernetes-preserve-unknown-fields: true
40+
type: object
41+
served: true
42+
storage: true
43+
subresources:
44+
status: {}
45+
status:
46+
acceptedNames:
47+
kind: ""
48+
plural: ""
49+
conditions: null
50+
storedVersions: null
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: kubero-operator
8+
name: kubero-operator-kuberoaddonmongodb-admin-role
9+
rules:
10+
- apiGroups:
11+
- application.kubero.dev
12+
resources:
13+
- kuberoaddonmongodbs
14+
verbs:
15+
- '*'
16+
- apiGroups:
17+
- application.kubero.dev
18+
resources:
19+
- kuberoaddonmongodbs/status
20+
verbs:
21+
- get
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: kubero-operator
8+
name: kubero-operator-kuberoaddonmongodb-editor-role
9+
rules:
10+
- apiGroups:
11+
- application.kubero.dev
12+
resources:
13+
- kuberoaddonmongodbs
14+
verbs:
15+
- create
16+
- delete
17+
- get
18+
- list
19+
- patch
20+
- update
21+
- watch
22+
- apiGroups:
23+
- application.kubero.dev
24+
resources:
25+
- kuberoaddonmongodbs/status
26+
verbs:
27+
- get
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: kubero-operator
8+
name: kubero-operator-kuberoaddonmongodb-viewer-role
9+
rules:
10+
- apiGroups:
11+
- application.kubero.dev
12+
resources:
13+
- kuberoaddonmongodbs
14+
verbs:
15+
- get
16+
- list
17+
- watch
18+
- apiGroups:
19+
- application.kubero.dev
20+
resources:
21+
- kuberoaddonmongodbs/status
22+
verbs:
23+
- get
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
labels:
6+
app.kubernetes.io/managed-by: kustomize
7+
app.kubernetes.io/name: kubero-operator
8+
name: kubero-operator-kuberoaddonmysql-admin-role
9+
rules:
10+
- apiGroups:
11+
- application.kubero.dev
12+
resources:
13+
- kuberoaddonmysqls
14+
verbs:
15+
- '*'
16+
- apiGroups:
17+
- application.kubero.dev
18+
resources:
19+
- kuberoaddonmysqls/status
20+
verbs:
21+
- get

0 commit comments

Comments
 (0)