-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator couchbase-enterprise-certified-rhmp (2.7.0-2) (#902)
- Loading branch information
1 parent
505e67b
commit 81a8c22
Showing
18 changed files
with
10,332 additions
and
0 deletions.
There are no files selected for viewing
1,410 changes: 1,410 additions & 0 deletions
1,410
...e-enterprise-certified-rhmp/2.7.0-2/manifests/couchbase-v2.7.0.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
96 changes: 96 additions & 0 deletions
96
...hbase-enterprise-certified-rhmp/2.7.0-2/manifests/couchbaseautoscalers.couchbase.com.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,96 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
config.couchbase.com/version: 2.7.0 | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
name: couchbaseautoscalers.couchbase.com | ||
spec: | ||
group: couchbase.com | ||
names: | ||
kind: CouchbaseAutoscaler | ||
listKind: CouchbaseAutoscalerList | ||
plural: couchbaseautoscalers | ||
shortNames: | ||
- cba | ||
singular: couchbaseautoscaler | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.size | ||
name: size | ||
type: string | ||
- jsonPath: .spec.servers | ||
name: servers | ||
type: string | ||
name: v2 | ||
schema: | ||
openAPIV3Schema: | ||
description: |- | ||
CouchbaseAutoscaler provides an interface for the Kubernetes Horizontal Pod Autoscaler | ||
to interact with the Couchbase cluster and provide autoscaling. This resource is | ||
not defined by the end user, and is managed by the Operator. | ||
properties: | ||
apiVersion: | ||
description: |- | ||
APIVersion defines the versioned schema of this representation of an object. | ||
Servers should convert recognized schemas to the latest internal value, and | ||
may reject unrecognized values. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
type: string | ||
kind: | ||
description: |- | ||
Kind is a string value representing the REST resource this object represents. | ||
Servers may infer this from the endpoint the client submits requests to. | ||
Cannot be updated. | ||
In CamelCase. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: CouchbaseAutoscalerSpec allows control over an autoscaling | ||
group. | ||
properties: | ||
servers: | ||
description: Servers specifies the server group that this autoscaler | ||
belongs to. | ||
minLength: 1 | ||
type: string | ||
size: | ||
description: Size allows the server group to be dynamically scaled. | ||
minimum: 0 | ||
type: integer | ||
required: | ||
- servers | ||
- size | ||
type: object | ||
status: | ||
description: |- | ||
CouchbaseAutoscalerStatus provides information to the HPA to assist with scaling | ||
server groups. | ||
properties: | ||
labelSelector: | ||
description: |- | ||
LabelSelector allows the HPA to select resources to monitor for resource | ||
utilization in order to trigger scaling. | ||
type: string | ||
size: | ||
description: Size is the current size of the server group. | ||
minimum: 1 | ||
type: integer | ||
required: | ||
- labelSelector | ||
- size | ||
type: object | ||
required: | ||
- spec | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
scale: | ||
labelSelectorPath: .status.labelSelector | ||
specReplicasPath: .spec.size | ||
statusReplicasPath: .status.size | ||
status: {} |
482 changes: 482 additions & 0 deletions
482
...se-enterprise-certified-rhmp/2.7.0-2/manifests/couchbasebackuprestores.couchbase.com.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.