File tree Expand file tree Collapse file tree 7 files changed +1080
-0
lines changed
operators/postgresql/4.7.5 Expand file tree Collapse file tree 7 files changed +1080
-0
lines changed Original file line number Diff line number Diff line change 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/
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments