Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
224 changes: 223 additions & 1 deletion deploy/rustfs-operator/crds/tenant-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1400,6 +1400,45 @@ spec:
tls:
nullable: true
properties:
caTrust:
nullable: true
properties:
caSecretRef:
nullable: true
properties:
key:
default: ca.crt
type: string
name:
type: string
required:
- name
type: object
clientCaSecretRef:
nullable: true
properties:
key:
default: ca.crt
type: string
name:
type: string
required:
- name
type: object
source:
default: CertificateSecretCa
enum:
- CertificateSecretCa
- SecretRef
- SystemCa
type: string
trustLeafCertificateAsCa:
default: false
type: boolean
trustSystemCa:
default: false
type: boolean
type: object
certManager:
nullable: true
properties:
Expand Down Expand Up @@ -1506,6 +1545,128 @@ spec:
type: string
type: array
type: object
certificates:
items:
properties:
certManager:
properties:
caTrust:
nullable: true
properties:
caSecretRef:
nullable: true
properties:
key:
default: ca.crt
type: string
name:
type: string
required:
- name
type: object
clientCaSecretRef:
nullable: true
properties:
key:
default: ca.crt
type: string
name:
type: string
required:
- name
type: object
source:
default: CertificateSecretCa
enum:
- CertificateSecretCa
- SecretRef
- SystemCa
type: string
trustLeafCertificateAsCa:
default: false
type: boolean
trustSystemCa:
default: false
type: boolean
type: object
certificateName:
nullable: true
type: string
commonName:
nullable: true
type: string
dnsNames:
items:
type: string
type: array
duration:
nullable: true
type: string
includeGeneratedDnsNames:
default: true
type: boolean
issuerRef:
nullable: true
properties:
group:
default: cert-manager.io
type: string
kind:
default: Issuer
type: string
name:
type: string
required:
- name
type: object
manageCertificate:
default: false
type: boolean
privateKey:
nullable: true
properties:
algorithm:
nullable: true
type: string
encoding:
nullable: true
type: string
rotationPolicy:
nullable: true
type: string
size:
format: int32
nullable: true
type: integer
type: object
renewBefore:
nullable: true
type: string
secretName:
nullable: true
type: string
secretType:
nullable: true
type: string
usages:
items:
type: string
type: array
type: object
default:
default: false
type: boolean
hosts:
items:
type: string
type: array
name:
type: string
required:
- certManager
- name
type: object
type: array
enableInternodeHttps:
default: false
type: boolean
Expand Down Expand Up @@ -1616,6 +1777,67 @@ spec:
- kind
- name
type: object
certificates:
items:
properties:
certificateRef:
nullable: true
properties:
apiVersion:
type: string
kind:
type: string
name:
type: string
observedGeneration:
format: int64
nullable: true
type: integer
ready:
nullable: true
type: boolean
reason:
nullable: true
type: string
required:
- apiVersion
- kind
- name
type: object
default:
default: false
type: boolean
dnsNames:
items:
type: string
type: array
hosts:
items:
type: string
type: array
managedCertificate:
nullable: true
type: boolean
name:
type: string
serverSecretRef:
properties:
key:
nullable: true
type: string
name:
type: string
resourceVersion:
nullable: true
type: string
required:
- name
type: object
required:
- name
- serverSecretRef
type: object
type: array
clientCaSecretRef:
nullable: true
properties:
Expand Down Expand Up @@ -1725,7 +1947,7 @@ spec:
description: Status of the condition (True, False, Unknown)
type: string
type:
description: Type of condition (Ready, Progressing, Degraded)
description: Type of condition (Ready, Reconciling, Degraded)
type: string
required:
- message
Expand Down
Loading
Loading