-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates crds to support version 0.10.0 of the Operator (#10)
* Updates crds * Sets chart version to 0.10.0
- Loading branch information
1 parent
cddd889
commit a689a4f
Showing
7 changed files
with
299 additions
and
2 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
119 changes: 119 additions & 0 deletions
119
charts/lh-operator/crds/lhcanarymetronomes.littlehorse.io-v1.yml
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,119 @@ | ||
# Generated by Fabric8 CRDGenerator, manual edits might get overwritten! | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: lhcanarymetronomes.littlehorse.io | ||
spec: | ||
group: littlehorse.io | ||
names: | ||
kind: LHCanaryMetronome | ||
plural: lhcanarymetronomes | ||
shortNames: | ||
- lhcm | ||
singular: lhcanarymetronome | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.problems | ||
name: PROBLEMS | ||
priority: 0 | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
additionalConfigs: | ||
additionalProperties: | ||
type: string | ||
description: Configurations to pass to the LHCanaryMetronome. | ||
type: object | ||
aggregatorRef: | ||
description: Specifies the LHCanaryAggregator for this Metronome | ||
properties: | ||
name: | ||
description: Name of the LHCanaryAggregator that should aggregate | ||
beats from this Metronome. | ||
type: string | ||
type: object | ||
defaultLabels: | ||
additionalProperties: | ||
type: string | ||
description: Labels to put on all created resources | ||
type: object | ||
image: | ||
default: ghcr.io/littlehorse-enterprises/littlehorse/lh-canary:master | ||
description: The docker image for the LH Canary | ||
type: string | ||
imagePullPolicy: | ||
description: ImagePullPolicy for the LH Canary | ||
enum: | ||
- Always | ||
- IfNotPresent | ||
- Never | ||
type: string | ||
lhCluster: | ||
description: Specifies the LittleHorse Cluster to monitor | ||
properties: | ||
externalClusterRef: | ||
description: Specifies a LittleHorse Cluster not managed by the | ||
same Operator as this Metronome | ||
properties: | ||
apiHost: | ||
description: The API Host of the LH Cluster to monitor | ||
type: string | ||
apiPort: | ||
description: The API Port of the LH Cluster to monitor | ||
type: integer | ||
listenerName: | ||
description: The Listener Name to connect to | ||
nullable: true | ||
type: string | ||
tenantId: | ||
default: default | ||
description: The Tenant to use | ||
type: string | ||
required: | ||
- apiHost | ||
- apiPort | ||
type: object | ||
type: object | ||
replicas: | ||
description: Number of metronome replicas to deploy | ||
type: integer | ||
storage: | ||
description: Storage Configuration for the Metronome | ||
properties: | ||
storageClassName: | ||
description: The name of the storageclass with which to provision | ||
storage for the server | ||
type: string | ||
volumeSize: | ||
anyOf: | ||
- type: integer | ||
- type: string | ||
description: The size of the persistent volume. | ||
x-kubernetes-int-or-string: true | ||
required: | ||
- storageClassName | ||
- volumeSize | ||
type: object | ||
required: | ||
- aggregatorRef | ||
- lhCluster | ||
- storage | ||
- replicas | ||
type: object | ||
status: | ||
properties: | ||
observedGeneration: | ||
type: integer | ||
problems: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
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