-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Florentin Dubois <florentin.dubois@clever-cloud.com>
- Loading branch information
1 parent
5821576
commit 50de5c0
Showing
13 changed files
with
840 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
deployments/operator-lifecycle-manager/0.4.0/bundle.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# See https://github.com/operator-framework/operator-registry/blob/master/docs/design/operator-bundle.md#Bundle-Dockerfile | ||
|
||
FROM scratch | ||
|
||
# Core bundle labels. | ||
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.bundle.package.v1=clever-operator | ||
LABEL operators.operatorframework.io.bundle.channels.v1=alpha | ||
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha | ||
|
||
# Labels for testing. | ||
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1 | ||
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/ | ||
|
||
# Label for OpenShift. | ||
LABEL com.redhat.openshift.versions=v4.6-v4.9 | ||
|
||
# Copy files to locations specified by labels. | ||
ADD manifests /manifests/ | ||
ADD metadata /metadata/ | ||
ADD tests/scorecard /tests/scorecard/ | ||
|
68 changes: 68 additions & 0 deletions
68
deployments/operator-lifecycle-manager/0.4.0/manifests/clever-operator-mongodb.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: mongodbs.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: MongoDb | ||
plural: mongodbs | ||
shortNames: | ||
- mo | ||
singular: mongodb | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for MongoDbSpec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
instance: | ||
properties: | ||
plan: | ||
type: string | ||
region: | ||
type: string | ||
required: | ||
- plan | ||
- region | ||
type: object | ||
options: | ||
properties: | ||
encryption: | ||
type: boolean | ||
version: | ||
enum: | ||
- 403 | ||
type: integer | ||
required: | ||
- encryption | ||
- version | ||
type: object | ||
organisation: | ||
type: string | ||
required: | ||
- instance | ||
- options | ||
- organisation | ||
type: object | ||
status: | ||
nullable: true | ||
properties: | ||
addon: | ||
nullable: true | ||
type: string | ||
type: object | ||
required: | ||
- spec | ||
title: MongoDb | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
69 changes: 69 additions & 0 deletions
69
deployments/operator-lifecycle-manager/0.4.0/manifests/clever-operator-mysql.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: mysqls.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: MySql | ||
plural: mysqls | ||
shortNames: | ||
- my | ||
singular: mysql | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for MySqlSpec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
instance: | ||
properties: | ||
plan: | ||
type: string | ||
region: | ||
type: string | ||
required: | ||
- plan | ||
- region | ||
type: object | ||
options: | ||
properties: | ||
encryption: | ||
type: boolean | ||
version: | ||
enum: | ||
- 57 | ||
- 80 | ||
type: integer | ||
required: | ||
- encryption | ||
- version | ||
type: object | ||
organisation: | ||
type: string | ||
required: | ||
- instance | ||
- options | ||
- organisation | ||
type: object | ||
status: | ||
nullable: true | ||
properties: | ||
addon: | ||
nullable: true | ||
type: string | ||
type: object | ||
required: | ||
- spec | ||
title: MySql | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
72 changes: 72 additions & 0 deletions
72
deployments/operator-lifecycle-manager/0.4.0/manifests/clever-operator-postgresql.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: postgresqls.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: PostgreSql | ||
plural: postgresqls | ||
shortNames: | ||
- pg | ||
singular: postgresql | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for PostgreSqlSpec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
instance: | ||
properties: | ||
plan: | ||
type: string | ||
region: | ||
type: string | ||
required: | ||
- plan | ||
- region | ||
type: object | ||
options: | ||
properties: | ||
encryption: | ||
type: boolean | ||
version: | ||
enum: | ||
- 13 | ||
- 12 | ||
- 11 | ||
- 10 | ||
- 96 | ||
type: integer | ||
required: | ||
- encryption | ||
- version | ||
type: object | ||
organisation: | ||
type: string | ||
required: | ||
- instance | ||
- options | ||
- organisation | ||
type: object | ||
status: | ||
nullable: true | ||
properties: | ||
addon: | ||
nullable: true | ||
type: string | ||
type: object | ||
required: | ||
- spec | ||
title: PostgreSql | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
53 changes: 53 additions & 0 deletions
53
deployments/operator-lifecycle-manager/0.4.0/manifests/clever-operator-pulsar.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: pulsars.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: Pulsar | ||
plural: pulsars | ||
shortNames: | ||
- pulse | ||
- pul | ||
singular: pulsar | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for PulsarSpec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
instance: | ||
properties: | ||
region: | ||
type: string | ||
required: | ||
- region | ||
type: object | ||
organisation: | ||
type: string | ||
required: | ||
- instance | ||
- organisation | ||
type: object | ||
status: | ||
nullable: true | ||
properties: | ||
addon: | ||
nullable: true | ||
type: string | ||
type: object | ||
required: | ||
- spec | ||
title: Pulsar | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.