-
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.
Merge pull request #9 from littlehorse-enterprises/minor/add-lh-tenant
feat(lhtenant): adds lhtenant crd
- Loading branch information
Showing
4 changed files
with
82 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Generated by Fabric8 CRDGenerator, manual edits might get overwritten! | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: lhtenants.littlehorse.io | ||
spec: | ||
group: littlehorse.io | ||
names: | ||
kind: LHTenant | ||
plural: lhtenants | ||
shortNames: | ||
- lht | ||
singular: lhtenant | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.isCreated | ||
name: CREATED | ||
priority: 0 | ||
type: boolean | ||
- jsonPath: .status.lhCluster | ||
name: LH_CLUSTER | ||
priority: 0 | ||
type: string | ||
- jsonPath: .status.problems | ||
name: PROBLEMS | ||
priority: 0 | ||
type: string | ||
- jsonPath: .status.tenantId | ||
name: TENANT_ID | ||
priority: 0 | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
tenantName: | ||
description: "Name of the `Tenant` in LittleHorse. If not provided,\ | ||
\ inferred from LHTenant name." | ||
nullable: true | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
isCreated: | ||
description: Whether the `Tenant` has been successfully created in | ||
the LH Cluster | ||
type: boolean | ||
lhCluster: | ||
description: The LHCluster that the Tenant belongs to | ||
type: string | ||
observedGeneration: | ||
type: integer | ||
problems: | ||
type: string | ||
tenantId: | ||
description: The ID of the created `Tenant` in the LHCluster. | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,9 @@ tolerations: [] | |
|
||
affinity: {} | ||
|
||
reconciler: | ||
threadPoolSize: 8 | ||
|
||
helm: | ||
addHelmLabels: true | ||
|
||
|