Skip to content

Commit fc9ff30

Browse files
committed
Add PGO v4.7.5
Signed-off-by: ValClarkson <[email protected]>
1 parent 4583330 commit fc9ff30

File tree

7 files changed

+1080
-0
lines changed

7 files changed

+1080
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM scratch
2+
3+
# Core bundle labels.
4+
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
5+
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
6+
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
7+
LABEL operators.operatorframework.io.bundle.package.v1=postgresql
8+
LABEL operators.operatorframework.io.bundle.channels.v1=stable
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
10+
11+
# Copy files to locations specified by labels.
12+
COPY manifests/ /manifests/
13+
COPY metadata/ /metadata/
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: pgclusters.crunchydata.com
5+
labels:
6+
vendor: crunchydata
7+
spec:
8+
group: crunchydata.com
9+
names:
10+
kind: Pgcluster
11+
listKind: PgclusterList
12+
plural: pgclusters
13+
singular: pgcluster
14+
scope: Namespaced
15+
version: v1
16+
validation:
17+
openAPIV3Schema:
18+
properties:
19+
spec:
20+
properties:
21+
clustername: {type: string}
22+
ccpimage: {type: string}
23+
ccpimagetag: {type: string}
24+
database: {type: string}
25+
exporterport: {type: string}
26+
name: {type: string}
27+
pgbadgerport: {type: string}
28+
PrimaryStorage: {type: object}
29+
port: {type: string}
30+
status: {type: string}
31+
userlabels: {type: object}
32+
status:
33+
properties:
34+
state: {type: string}
35+
message: {type: string}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: pgpolicies.crunchydata.com
5+
labels:
6+
vendor: crunchydata
7+
spec:
8+
group: crunchydata.com
9+
names:
10+
kind: Pgpolicy
11+
listKind: PgpolicyList
12+
plural: pgpolicies
13+
singular: pgpolicy
14+
scope: Namespaced
15+
version: v1
16+
validation:
17+
openAPIV3Schema:
18+
properties:
19+
status:
20+
properties:
21+
message: {type: string}
22+
state: {type: string}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: pgreplicas.crunchydata.com
5+
labels:
6+
vendor: crunchydata
7+
spec:
8+
group: crunchydata.com
9+
names:
10+
kind: Pgreplica
11+
listKind: PgreplicaList
12+
plural: pgreplicas
13+
singular: pgreplica
14+
scope: Namespaced
15+
version: v1
16+
validation:
17+
openAPIV3Schema:
18+
properties:
19+
status:
20+
properties:
21+
message: {type: string}
22+
state: {type: string}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: pgtasks.crunchydata.com
5+
labels:
6+
vendor: crunchydata
7+
spec:
8+
group: crunchydata.com
9+
names:
10+
kind: Pgtask
11+
listKind: PgtaskList
12+
plural: pgtasks
13+
singular: pgtask
14+
scope: Namespaced
15+
version: v1
16+
validation:
17+
openAPIV3Schema:
18+
properties:
19+
status:
20+
properties:
21+
message: {type: string}
22+
state: {type: string}

0 commit comments

Comments
 (0)