-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator trustify-operator (0.1.0-alpha.3)
- Loading branch information
1 parent
b3cb9b6
commit 7a5a01f
Showing
3 changed files
with
497 additions
and
0 deletions.
There are no files selected for viewing
107 changes: 107 additions & 0 deletions
107
operators/trustify-operator/0.1.0-alpha.3/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,107 @@ | ||
# 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: | ||
apiResourceLimits: | ||
description: In this section you can configure resource limits settings | ||
for the API. | ||
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 | ||
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 | ||
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 | ||
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 | ||
type: object | ||
status: | ||
properties: | ||
conditions: | ||
items: | ||
properties: | ||
message: | ||
type: string | ||
status: | ||
type: boolean | ||
type: | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.