-
Notifications
You must be signed in to change notification settings - Fork 5
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: Sebastian Hoß <[email protected]>
- Loading branch information
Showing
20 changed files
with
920 additions
and
0 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
56 changes: 56 additions & 0 deletions
56
crd-catalog/CleverCloud/clever-operator/api.clever-cloud.com/v1/configproviders.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,56 @@ | ||
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: | ||
- description: Organisation | ||
jsonPath: .spec.organisation | ||
name: organisation | ||
type: string | ||
- description: Addon | ||
jsonPath: .status.addon | ||
name: addon | ||
type: string | ||
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: {} |
107 changes: 107 additions & 0 deletions
107
crd-catalog/CleverCloud/clever-operator/api.clever-cloud.com/v1/elasticsearches.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,107 @@ | ||
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: | ||
- description: Organisation | ||
jsonPath: .spec.organisation | ||
name: organisation | ||
type: string | ||
- description: Addon | ||
jsonPath: .status.addon | ||
name: addon | ||
type: string | ||
- description: Region | ||
jsonPath: .spec.instance.region | ||
name: region | ||
type: string | ||
- description: Instance | ||
jsonPath: .spec.instance.plan | ||
name: instance | ||
type: string | ||
- description: Version | ||
jsonPath: .spec.options.version | ||
name: version | ||
type: integer | ||
- description: Cold encryption | ||
jsonPath: .spec.options.encryption | ||
name: encrypted | ||
type: boolean | ||
- description: Kibana | ||
jsonPath: .spec.options.kibana | ||
name: kibana | ||
type: boolean | ||
- description: Application Perfomance Monitoring | ||
jsonPath: .spec.options.apm | ||
name: apm | ||
type: boolean | ||
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 | ||
- 8 | ||
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: {} |
91 changes: 91 additions & 0 deletions
91
crd-catalog/CleverCloud/clever-operator/api.clever-cloud.com/v1/mongodbs.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,91 @@ | ||
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: | ||
- description: Organisation | ||
jsonPath: .spec.organisation | ||
name: organisation | ||
type: string | ||
- description: Addon | ||
jsonPath: .status.addon | ||
name: addon | ||
type: string | ||
- description: Region | ||
jsonPath: .spec.instance.region | ||
name: region | ||
type: string | ||
- description: Instance | ||
jsonPath: .spec.instance.plan | ||
name: instance | ||
type: string | ||
- description: Version | ||
jsonPath: .spec.options.version | ||
name: version | ||
type: integer | ||
- description: Cold encryption | ||
jsonPath: .spec.options.encryption | ||
name: encrypted | ||
type: boolean | ||
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: | ||
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: {} |
92 changes: 92 additions & 0 deletions
92
crd-catalog/CleverCloud/clever-operator/api.clever-cloud.com/v1/mysqls.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,92 @@ | ||
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: | ||
- description: Organisation | ||
jsonPath: .spec.organisation | ||
name: organisation | ||
type: string | ||
- description: Addon | ||
jsonPath: .status.addon | ||
name: addon | ||
type: string | ||
- description: Region | ||
jsonPath: .spec.instance.region | ||
name: region | ||
type: string | ||
- description: Instance | ||
jsonPath: .spec.instance.plan | ||
name: instance | ||
type: string | ||
- description: Version | ||
jsonPath: .spec.options.version | ||
name: version | ||
type: integer | ||
- description: Cold encryption | ||
jsonPath: .spec.options.encryption | ||
name: encrypted | ||
type: boolean | ||
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: | ||
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.