-
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
78464b5
commit 877afd5
Showing
19 changed files
with
1,079 additions
and
12 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
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.5.4/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/ | ||
|
75 changes: 75 additions & 0 deletions
75
.../operator-lifecycle-manager/0.5.4/manifests/clever-operator-config-elasticsearch.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,75 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: elasticsearches.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: ElasticSearch | ||
plural: elasticsearches | ||
shortNames: | ||
- es | ||
singular: elasticsearch | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for Spec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
instance: | ||
properties: | ||
plan: | ||
type: string | ||
region: | ||
type: string | ||
required: | ||
- plan | ||
- region | ||
type: object | ||
options: | ||
properties: | ||
apm: | ||
type: boolean | ||
encryption: | ||
type: boolean | ||
kibana: | ||
type: boolean | ||
version: | ||
enum: | ||
- 6 | ||
- 7 | ||
type: integer | ||
required: | ||
- apm | ||
- encryption | ||
- kibana | ||
- 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: ElasticSearch | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
49 changes: 49 additions & 0 deletions
49
...ments/operator-lifecycle-manager/0.5.4/manifests/clever-operator-config-provider.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,49 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: configproviders.api.clever-cloud.com | ||
spec: | ||
group: api.clever-cloud.com | ||
names: | ||
categories: [] | ||
kind: ConfigProvider | ||
plural: configproviders | ||
shortNames: | ||
- cp | ||
singular: configprovider | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: [] | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "Auto-generated derived type for Spec via `CustomResource`" | ||
properties: | ||
spec: | ||
properties: | ||
organisation: | ||
type: string | ||
variables: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
required: | ||
- organisation | ||
- variables | ||
type: object | ||
status: | ||
nullable: true | ||
properties: | ||
addon: | ||
nullable: true | ||
type: string | ||
type: object | ||
required: | ||
- spec | ||
title: ConfigProvider | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
68 changes: 68 additions & 0 deletions
68
deployments/operator-lifecycle-manager/0.5.4/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.5.4/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: {} |
Oops, something went wrong.