Skip to content

Commit

Permalink
operator trustify-operator (0.1.0-alpha.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Aug 3, 2024
1 parent 8d47665 commit 7ba1213
Show file tree
Hide file tree
Showing 3 changed files with 502 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
# 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
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: {}
Loading

0 comments on commit 7ba1213

Please sign in to comment.