Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2311c10

Browse files
authoredMar 23, 2023
Merge pull request #673 from adam-cattermole/MGDAPI-5082
MGDAPI-5082 - prepare release v1.0.0
2 parents 21edd76 + 50fcced commit 2311c10

16 files changed

+925
-10
lines changed
 

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ OPERATOR_IMG = $(IMAGE_REG)/$(IMAGE_ORG)/$(IMAGE_NAME):v$(VERSION)
55
CONTAINER_PLATFORM ?= linux/amd64
66
MANIFEST_NAME ?= cloud-resources
77
NAMESPACE=cloud-resource-operator
8-
PREV_VERSION=0.43.0
9-
VERSION=0.44.0
8+
PREV_VERSION=0.44.0
9+
VERSION=1.0.0
1010
COMPILE_TARGET=./tmp/_output/bin/$(IMAGE_NAME)
1111
UPGRADE ?= true
1212
CHANNEL ?= rhmi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: monitoring.coreos.com/v1
2+
kind: ServiceMonitor
3+
metadata:
4+
labels:
5+
name: cloud-resource-operator
6+
name: cloud-resource-operator-metrics
7+
spec:
8+
endpoints:
9+
- path: /metrics
10+
port: http-metrics
11+
selector:
12+
matchLabels:
13+
name: cloud-resource-operator

‎bundles/1.0.0/manifests/cloud-resource-operator.clusterserviceversion.yaml

+380
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.9.2
6+
creationTimestamp: null
7+
name: blobstorages.integreatly.org
8+
spec:
9+
group: integreatly.org
10+
names:
11+
kind: BlobStorage
12+
listKind: BlobStorageList
13+
plural: blobstorages
14+
singular: blobstorage
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: BlobStorage is the Schema for the blobstorages API
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
properties:
36+
applyImmediately:
37+
description: ApplyImmediately is only available to Postgres cr, for
38+
blobstorage and redis cr's currently does nothing
39+
type: boolean
40+
maintenanceWindow:
41+
type: boolean
42+
secretRef:
43+
properties:
44+
name:
45+
type: string
46+
namespace:
47+
type: string
48+
required:
49+
- name
50+
type: object
51+
size:
52+
description: Size allows defining the node size. It is only available
53+
to Redis CR. Blobstorage and Postgres CR's currently does nothing
54+
type: string
55+
skipCreate:
56+
type: boolean
57+
tier:
58+
type: string
59+
type:
60+
type: string
61+
required:
62+
- secretRef
63+
- tier
64+
- type
65+
type: object
66+
status:
67+
properties:
68+
message:
69+
type: string
70+
phase:
71+
type: string
72+
provider:
73+
type: string
74+
secretRef:
75+
properties:
76+
name:
77+
type: string
78+
namespace:
79+
type: string
80+
required:
81+
- name
82+
type: object
83+
strategy:
84+
type: string
85+
version:
86+
type: string
87+
type: object
88+
type: object
89+
served: true
90+
storage: true
91+
subresources:
92+
status: {}
93+
status:
94+
acceptedNames:
95+
kind: ""
96+
plural: ""
97+
conditions: null
98+
storedVersions: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.9.2
6+
creationTimestamp: null
7+
name: postgres.integreatly.org
8+
spec:
9+
group: integreatly.org
10+
names:
11+
kind: Postgres
12+
listKind: PostgresList
13+
plural: postgres
14+
singular: postgres
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: Postgres is the Schema for the postgres API
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
properties:
36+
applyImmediately:
37+
description: ApplyImmediately is only available to Postgres cr, for
38+
blobstorage and redis cr's currently does nothing
39+
type: boolean
40+
maintenanceWindow:
41+
type: boolean
42+
secretRef:
43+
properties:
44+
name:
45+
type: string
46+
namespace:
47+
type: string
48+
required:
49+
- name
50+
type: object
51+
size:
52+
description: Size allows defining the node size. It is only available
53+
to Redis CR. Blobstorage and Postgres CR's currently does nothing
54+
type: string
55+
skipCreate:
56+
type: boolean
57+
tier:
58+
type: string
59+
type:
60+
type: string
61+
required:
62+
- secretRef
63+
- tier
64+
- type
65+
type: object
66+
status:
67+
properties:
68+
message:
69+
type: string
70+
phase:
71+
type: string
72+
provider:
73+
type: string
74+
secretRef:
75+
properties:
76+
name:
77+
type: string
78+
namespace:
79+
type: string
80+
required:
81+
- name
82+
type: object
83+
strategy:
84+
type: string
85+
version:
86+
type: string
87+
type: object
88+
type: object
89+
served: true
90+
storage: true
91+
subresources:
92+
status: {}
93+
status:
94+
acceptedNames:
95+
kind: ""
96+
plural: ""
97+
conditions: null
98+
storedVersions: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.9.2
6+
creationTimestamp: null
7+
name: postgressnapshots.integreatly.org
8+
spec:
9+
group: integreatly.org
10+
names:
11+
kind: PostgresSnapshot
12+
listKind: PostgresSnapshotList
13+
plural: postgressnapshots
14+
singular: postgressnapshot
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: PostgresSnapshot is the Schema for the postgressnapshots API
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
description: PostgresSnapshotSpec defines the desired state of PostgresSnapshot
36+
properties:
37+
resourceName:
38+
description: 'INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
39+
Important: Run "operator-sdk generate k8s" to regenerate code after
40+
modifying this file Add custom validation using kubebuilder tags:
41+
https://book-v1.book.kubebuilder.io/beyond_basics/generating_crd.html'
42+
type: string
43+
required:
44+
- resourceName
45+
type: object
46+
status:
47+
properties:
48+
message:
49+
type: string
50+
phase:
51+
type: string
52+
snapshotID:
53+
type: string
54+
type: object
55+
type: object
56+
served: true
57+
storage: true
58+
subresources:
59+
status: {}
60+
status:
61+
acceptedNames:
62+
kind: ""
63+
plural: ""
64+
conditions: null
65+
storedVersions: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.9.2
6+
creationTimestamp: null
7+
name: redis.integreatly.org
8+
spec:
9+
group: integreatly.org
10+
names:
11+
kind: Redis
12+
listKind: RedisList
13+
plural: redis
14+
singular: redis
15+
scope: Namespaced
16+
versions:
17+
- name: v1alpha1
18+
schema:
19+
openAPIV3Schema:
20+
description: Redis is the Schema for the redis API
21+
properties:
22+
apiVersion:
23+
description: 'APIVersion defines the versioned schema of this representation
24+
of an object. Servers should convert recognized schemas to the latest
25+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
26+
type: string
27+
kind:
28+
description: 'Kind is a string value representing the REST resource this
29+
object represents. Servers may infer this from the endpoint the client
30+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
type: string
32+
metadata:
33+
type: object
34+
spec:
35+
properties:
36+
applyImmediately:
37+
description: ApplyImmediately is only available to Postgres cr, for
38+
blobstorage and redis cr's currently does nothing
39+
type: boolean
40+
maintenanceWindow:
41+
type: boolean
42+
secretRef:
43+
properties:
44+
name:
45+
type: string
46+
namespace:
47+
type: string
48+
required:
49+
- name
50+
type: object
51+
size:
52+
description: Size allows defining the node size. It is only available
53+
to Redis CR. Blobstorage and Postgres CR's currently does nothing
54+
type: string
55+
skipCreate:
56+
type: boolean
57+
tier:
58+
type: string
59+
type:
60+
type: string
61+
required:
62+
- secretRef
63+
- tier
64+
- type
65+
type: object
66+
status:
67+
properties:
68+
message:
69+
type: string
70+
phase:
71+
type: string
72+
provider:
73+
type: string
74+
secretRef:
75+
properties:
76+
name:
77+
type: string
78+
namespace:
79+
type: string
80+
required:
81+
- name
82+
type: object
83+
strategy:
84+
type: string
85+
version:
86+
type: string
87+
type: object
88+
type: object
89+
served: true
90+
storage: true
91+
subresources:
92+
status: {}
93+
status:
94+
acceptedNames:
95+
kind: ""
96+
plural: ""
97+
conditions: null
98+
storedVersions: null
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.