-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trustify-operator-0.1.0-alpha.8 (#5052)
Signed-off-by: trust.git.bot <[email protected]> Co-authored-by: trust.git.bot <[email protected]>
- Loading branch information
1 parent
64f8668
commit bcf42c2
Showing
3 changed files
with
491 additions
and
0 deletions.
There are no files selected for viewing
116 changes: 116 additions & 0 deletions
116
operators/trustify-operator/0.1.0-alpha.8/manifests/trustifies.org.trustify-v1.crd.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,116 @@ | ||
# Generated by Fabric8 CRDGenerator, manual edits might get overwritten! | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: trustifies.org.trustify | ||
spec: | ||
group: org.trustify | ||
names: | ||
kind: Trustify | ||
plural: trustifies | ||
singular: trustify | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
db: | ||
description: In this section you can find all properties related to | ||
connect to a database. | ||
properties: | ||
resourceLimits: | ||
description: In this section you can configure resource limits | ||
settings. | ||
properties: | ||
cpuLimit: | ||
description: Limit CPU. | ||
type: string | ||
cpuRequest: | ||
description: Requested CPU. | ||
type: string | ||
memoryLimit: | ||
description: Limit Memory. | ||
type: string | ||
memoryRequest: | ||
description: Requested memory. | ||
type: string | ||
type: object | ||
size: | ||
description: Size of the PVC to create. | ||
type: string | ||
type: object | ||
dbImage: | ||
description: Custom Trustify DB Server image to be used. For internal | ||
use only | ||
type: string | ||
hostname: | ||
description: In this section you can configure hostname and related | ||
properties. | ||
properties: | ||
hostname: | ||
description: Hostname for the server. | ||
type: string | ||
type: object | ||
http: | ||
description: In this section you can configure features related to | ||
HTTP and HTTPS | ||
properties: | ||
tlsSecret: | ||
description: "A secret containing the TLS configuration for HTTPS.\ | ||
\ Reference: https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets." | ||
type: string | ||
type: object | ||
imagePullPolicy: | ||
description: Custom Image Pull Policy for images managed by the Operator | ||
type: string | ||
imagePullSecrets: | ||
description: Secret(s) that might be used when pulling an image from | ||
a private container image registry or repository. | ||
items: | ||
properties: | ||
name: | ||
type: string | ||
type: object | ||
type: array | ||
serverImage: | ||
description: Custom Trustify Server image to be used. For internal | ||
use only | ||
type: string | ||
serverResourceLimits: | ||
description: In this section you can configure resource limits settings | ||
for the Server. | ||
properties: | ||
cpuLimit: | ||
description: Limit CPU. | ||
type: string | ||
cpuRequest: | ||
description: Requested CPU. | ||
type: string | ||
memoryLimit: | ||
description: Limit Memory. | ||
type: string | ||
memoryRequest: | ||
description: Requested memory. | ||
type: string | ||
type: object | ||
type: object | ||
status: | ||
properties: | ||
conditions: | ||
items: | ||
properties: | ||
status: | ||
type: string | ||
type: | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.